diff --git a/src/js/physicalDevelopment.js b/src/js/physicalDevelopment.js
new file mode 100644
index 0000000000000000000000000000000000000000..335065545626afabe73cbe4983d0ea3b505f7177
--- /dev/null
+++ b/src/js/physicalDevelopment.js
@@ -0,0 +1,3018 @@
+window.physicalDevelopment = (function physicalDevelopment() {
+	"use strict";
+	
+	let gigantomastiaMod;
+	let rearQuirk;
+	let rearQuirkDivider;
+	let dickMod;
+	
+	return physicalDevelopment;
+	
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function physicalDevelopment(slave) {
+		
+		if (slave.geneMods.NCS != 1) {
+			/* NCS completely blocks all natural physical growth: no height increases. It also blocks all hormonal secondary sexual * characteristics. So, on the female side: no boobs, no butt, no hips, and no labia. And on the male side: no dick, no clit, no balls, no scrotum, no shoulders. */
+			/* so this is a big old NO-OP to skip the physical development. */
+			if (slave.genes === "XX") { /* loli becoming a woman */
+				increaseHeightXX(slave);
+				if (slave.physicalAge === 13) {
+					increaseFaceXX(slave);
+					increaseVoiceXX(slave);
+				}
+				increaseBoobsXX(slave);
+				if (slave.clit > 0) {
+					increaseClit(slave);
+				}
+				increaseWaistXX(slave);
+				increaseHipsXX(slave);
+				increaseButtXX(slave);
+				increasePregAdpatationXX(slave);
+			} else { /* shota becoming a man */
+				increaseHeightXY(slave);
+				if (slave.physicalAge === 13) {
+					increaseFaceXY(slave);
+					increaseVoiceXY(slave);
+				}
+				increaseBoobsXY(slave);
+				if (slave.dick > 0) {
+					increaseDick(slave);
+				}
+				if (slave.balls > 0) {
+					increaseBalls(slave);
+				}
+				increaseWaistXY(slave);
+				increaseHipsXY(slave);
+				increaseButtXY(slave);
+				increasePregAdpatationXY(slave);
+			}
+		}
+	}
+	
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseHeightXX(slave) {
+		if (slave.hormoneBalance >= 200) {
+			if (slave.physicalAge === 3) {
+				if (slave.height <= 91) {
+					slave.height += jsEither([8, 8, 9, 9]);
+				} else if (slave.height <= 101) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 4) {
+				if (slave.height <= 101) {
+					slave.height += jsEither([6, 6, 7, 7]);
+				} else if (slave.height <= 109) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 5) {
+				if (slave.height <= 109) {
+					slave.height += jsEither([6, 6, 7, 7]);
+				} else if (slave.height <= 116) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 6) {
+				if (slave.height <= 116) {
+					slave.height += jsEither([5, 5, 6, 6]);
+				} else if (slave.height <= 124) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 7) {
+				if (slave.height <= 124) {
+					slave.height += jsEither([7, 7, 8, 8]);
+				} else if (slave.height <= 131) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 8) {
+				if (slave.height <= 131) {
+					slave.height += jsEither([5, 5, 6, 6]);
+				} else if (slave.height <= 137) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.height <= 137) {
+					slave.height += jsEither([4, 4, 5, 5]);
+				} else if (slave.height <= 144) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.height <= 144) {
+					slave.height += jsEither([6, 6, 7, 7]);
+				} else if (slave.height <= 156) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.height <= 156) {
+					slave.height += jsEither([5, 5, 6, 6]);
+				} else if (slave.height <= 163) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.height <= 163) {
+					slave.height += jsEither([6, 6, 7, 7]);
+				} else if (slave.height <= 168) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.height <= 168) {
+					slave.height += jsEither([5, 5, 6, 6]);
+				} else if (slave.height <= 171) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.height <= 171) {
+					slave.height += jsEither([4, 4, 5, 5]);
+				} else if (slave.height <= 173) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 0, 1, 1]);
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 0, 1, 1]);
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 0, 1, 1]);
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 0, 1, 1]);
+				}
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.physicalAge === 3) {
+				if (slave.height <= 91) {
+					slave.height += jsEither([8, 8, 9, 9, 9]);
+				} else if (slave.height <= 101) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 4) {
+				if (slave.height <= 101) {
+					slave.height += jsEither([6, 6, 7, 7, 7]);
+				} else if (slave.height <= 109) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 5) {
+				if (slave.height <= 109) {
+					slave.height += jsEither([6, 6, 7, 7, 7]);
+				} else if (slave.height <= 116) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 6) {
+				if (slave.height <= 116) {
+					slave.height += jsEither([5, 5, 6, 6, 6]);
+				} else if (slave.height <= 124) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 7) {
+				if (slave.height <= 124) {
+					slave.height += jsEither([7, 7, 8, 8, 8]);
+				} else if (slave.height <= 131) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 8) {
+				if (slave.height <= 131) {
+					slave.height += jsEither([5, 5, 6, 6, 6]);
+				} else if (slave.height <= 137) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.height <= 137) {
+					slave.height += jsEither([4, 4, 5, 5, 5]);
+				} else if (slave.height <= 144) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.height <= 144) {
+					slave.height += jsEither([6, 6, 7, 7, 7]);
+				} else if (slave.height <= 156) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.height <= 156) {
+					slave.height += jsEither([5, 5, 6, 6, 6]);
+				} else if (slave.height <= 163) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.height <= 163) {
+					slave.height += jsEither([6, 6, 7, 7, 7]);
+				} else if (slave.height <= 168) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.height <= 168) {
+					slave.height += jsEither([5, 5, 6, 6, 6]);
+				} else if (slave.height <= 171) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.height <= 171) {
+					slave.height += jsEither([4, 4, 5, 5, 5]);
+				} else if (slave.height <= 173) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 0, 1, 1, 1]);
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 0, 1, 1, 1]);
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 0, 1, 1, 1]);
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 0, 1, 1, 1]);
+				}
+			}
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.physicalAge === 3) {
+				if (slave.height <= 91) {
+					slave.height += jsEither([9, 9, 9, 10, 10]);
+				} else if (slave.height <= 101) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 4) {
+				if (slave.height <= 101) {
+					slave.height += jsEither([7, 7, 7, 8, 8]);
+				} else if (slave.height <= 109) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 5) {
+				if (slave.height <= 109) {
+					slave.height += jsEither([7, 7, 7, 8, 8]);
+				} else if (slave.height <= 116) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 6) {
+				if (slave.height <= 116) {
+					slave.height += jsEither([6, 6, 6, 7, 7]);
+				} else if (slave.height <= 124) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 7) {
+				if (slave.height <= 124) {
+					slave.height += jsEither([8, 8, 8, 9, 9]);
+				} else if (slave.height <= 131) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 8) {
+				if (slave.height <= 131) {
+					slave.height += jsEither([6, 6, 6, 7, 7]);
+				} else if (slave.height <= 137) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.height <= 137) {
+					slave.height += jsEither([5, 5, 5, 6, 6]);
+				} else if (slave.height <= 144) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.height <= 144) {
+					slave.height += jsEither([7, 7, 7, 8, 8]);
+				} else if (slave.height <= 156) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.height <= 156) {
+					slave.height += jsEither([6, 6, 6, 7, 7]);
+				} else if (slave.height <= 163) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.height <= 163) {
+					slave.height += jsEither([7, 7, 7, 8, 8]);
+				} else if (slave.height <= 168) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.height <= 168) {
+					slave.height += jsEither([6, 6, 6, 7, 7]);
+				} else if (slave.height <= 171) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.height <= 171) {
+					slave.height += jsEither([5, 5, 5, 6, 6]);
+				} else if (slave.height <= 173) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([1, 1, 1, 2, 2]);
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([1, 1, 1, 2, 2]);
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([1, 1, 1, 2, 2]);
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([1, 1, 1, 2, 2]);
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.physicalAge === 3) {
+				if (slave.height <= 91) {
+					slave.height += jsEither([8, 9, 9, 10, 10]);
+				} else if (slave.height <= 101) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 4) {
+				if (slave.height <= 101) {
+					slave.height += jsEither([6, 7, 7, 8, 8]);
+				} else if (slave.height <= 109) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 5) {
+				if (slave.height <= 109) {
+					slave.height += jsEither([6, 7, 7, 8, 8]);
+				} else if (slave.height <= 116) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 6) {
+				if (slave.height <= 116) {
+					slave.height += jsEither([5, 6, 6, 7, 7]);
+				} else if (slave.height <= 124) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 7) {
+				if (slave.height <= 124) {
+					slave.height += jsEither([7, 8, 8, 9, 9]);
+				} else if (slave.height <= 131) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 8) {
+				if (slave.height <= 131) {
+					slave.height += jsEither([5, 6, 6, 7, 7]);
+				} else if (slave.height <= 137) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.height <= 137) {
+					slave.height += jsEither([4, 5, 5, 6, 6]);
+				} else if (slave.height <= 144) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.height <= 144) {
+					slave.height += jsEither([6, 7, 7, 8, 8]);
+				} else if (slave.height <= 156) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.height <= 156) {
+					slave.height += jsEither([5, 6, 6, 7, 7]);
+				} else if (slave.height <= 163) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.height <= 163) {
+					slave.height += jsEither([6, 7, 7, 8, 8]);
+				} else if (slave.height <= 168) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.height <= 168) {
+					slave.height += jsEither([5, 6, 6, 7, 7]);
+				} else if (slave.height <= 171) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.height <= 171) {
+					slave.height += jsEither([4, 5, 5, 6, 6]);
+				} else if (slave.height <= 173) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 1, 1, 2, 2]);
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 1, 1, 2, 2]);
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 1, 1, 2, 2]);
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 1, 1, 2, 2]);
+				}
+			}
+		} else {
+			if (slave.physicalAge === 3) {
+				if (slave.height <= 91) {
+					slave.height += jsEither([8, 8, 9, 9, 9, 10]);
+				} else if (slave.height <= 101) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 4) {
+				if (slave.height <= 101) {
+					slave.height += jsEither([6, 6, 7, 7, 8, 8]);
+				} else if (slave.height <= 109) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 5) {
+				if (slave.height <= 109) {
+					slave.height += jsEither([6, 6, 7, 7, 7, 8]);
+				} else if (slave.height <= 116) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 6) {
+				if (slave.height <= 116) {
+					slave.height += jsEither([5, 5, 6, 6, 6, 7]);
+				} else if (slave.height <= 124) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 7) {
+				if (slave.height <= 124) {
+					slave.height += jsEither([7, 7, 8, 8, 8, 9]);
+				} else if (slave.height <= 131) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 8) {
+				if (slave.height <= 131) {
+					slave.height += jsEither([5, 5, 6, 6, 6, 7]);
+				} else if (slave.height <= 137) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.height <= 137) {
+					slave.height += jsEither([4, 4, 5, 5, 5, 6]);
+				} else if (slave.height <= 144) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.height <= 144) {
+					slave.height += jsEither([6, 6, 7, 7, 7, 8]);
+				} else if (slave.height <= 156) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.height <= 156) {
+					slave.height += jsEither([5, 5, 6, 6, 6, 7]);
+				} else if (slave.height <= 163) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.height <= 163) {
+					slave.height += jsEither([6, 6, 7, 7, 7, 8]);
+				} else if (slave.height <= 168) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.height <= 168) {
+					slave.height += jsEither([5, 5, 6, 6, 6, 7]);
+				} else if (slave.height <= 171) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.height <= 171) {
+					slave.height += jsEither([4, 4, 5, 5, 5, 6]);
+				} else if (slave.height <= 173) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 0, 1, 1, 1, 2]);
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 0, 1, 1, 1, 2]);
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 0, 1, 1, 1, 2]);
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.height <= 174) {
+					slave.height += jsEither([0, 0, 1, 1, 1, 2]);
+				}
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseHeightXY(slave) {
+		if (slave.hormoneBalance >= 200) {
+			if (slave.physicalAge === 3) {
+				if (slave.height <= 93) {
+					slave.height += jsEither([10, 10, 11, 11]);
+				} else if (slave.height <= 103) {
+					slave.height += 6;
+				}
+			} else if (slave.physicalAge === 4) {
+				if (slave.height <= 103) {
+					slave.height += jsEither([8, 8, 9, 9]);
+				} else if (slave.height <= 110) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 5) {
+				if (slave.height <= 110) {
+					slave.height += jsEither([7, 7, 8, 8]);
+				} else if (slave.height <= 117) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 6) {
+				if (slave.height <= 117) {
+					slave.height += jsEither([7, 7, 8, 8]);
+				} else if (slave.height <= 124) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 7) {
+				if (slave.height <= 124) {
+					slave.height += jsEither([7, 7, 8, 8]);
+				} else if (slave.height <= 131) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 8) {
+				if (slave.height <= 131) {
+					slave.height += jsEither([6, 6, 7, 7]);
+				} else if (slave.height <= 137) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.height <= 137) {
+					slave.height += jsEither([5, 5, 5, 6]);
+				} else if (slave.height <= 144) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.height <= 144) {
+					slave.height += jsEither([6, 6, 7, 7]);
+				} else if (slave.height <= 150) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.height <= 150) {
+					slave.height += jsEither([6, 6, 6, 7]);
+				} else if (slave.height <= 156) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.height <= 156) {
+					slave.height += jsEither([6, 6, 7, 7]);
+				} else if (slave.height <= 162) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.height <= 162) {
+					slave.height += jsEither([8, 8, 9, 9]);
+				} else if (slave.height <= 170) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.height <= 170) {
+					slave.height += jsEither([7, 7, 8, 8]);
+				} else if (slave.height <= 177) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.height <= 177) {
+					slave.height += jsEither([7, 7, 8, 8]);
+				} else if (slave.height <= 184) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.height <= 184) {
+					slave.height += jsEither([3, 3, 4, 4]);
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.height <= 185) {
+					slave.height += jsEither([2, 2, 3, 3]);
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.height <= 186) {
+					slave.height += jsEither([1, 1, 2, 2]);
+				}
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.physicalAge === 3) {
+				if (slave.height <= 93) {
+					slave.height += jsEither([10, 10, 10, 11, 11]);
+				} else if (slave.height <= 103) {
+					slave.height += 6;
+				}
+			} else if (slave.physicalAge === 4) {
+				if (slave.height <= 103) {
+					slave.height += jsEither([8, 8, 8, 9, 9]);
+				} else if (slave.height <= 110) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 5) {
+				if (slave.height <= 110) {
+					slave.height += jsEither([7, 7, 7, 8, 8]);
+				} else if (slave.height <= 117) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 6) {
+				if (slave.height <= 117) {
+					slave.height += jsEither([7, 7, 7, 8, 8]);
+				} else if (slave.height <= 124) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 7) {
+				if (slave.height <= 124) {
+					slave.height += jsEither([7, 7, 7, 8, 8]);
+				} else if (slave.height <= 131) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 8) {
+				if (slave.height <= 131) {
+					slave.height += jsEither([6, 6, 6, 7, 7]);
+				} else if (slave.height <= 137) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.height <= 137) {
+					slave.height += jsEither([5, 5, 5, 6, 6]);
+				} else if (slave.height <= 144) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.height <= 144) {
+					slave.height += jsEither([6, 6, 6, 7, 7]);
+				} else if (slave.height <= 150) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.height <= 150) {
+					slave.height += jsEither([6, 6, 6, 7, 7]);
+				} else if (slave.height <= 156) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.height <= 156) {
+					slave.height += jsEither([6, 6, 6, 7, 7]);
+				} else if (slave.height <= 162) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.height <= 162) {
+					slave.height += jsEither([8, 8, 8, 9, 9]);
+				} else if (slave.height <= 170) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.height <= 170) {
+					slave.height += jsEither([7, 7, 7, 8, 8]);
+				} else if (slave.height <= 177) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.height <= 177) {
+					slave.height += jsEither([7, 7, 7, 8, 8]);
+				} else if (slave.height <= 184) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.height <= 184) {
+					slave.height += jsEither([3, 3, 3, 4, 4]);
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.height <= 185) {
+					slave.height += jsEither([2, 2, 2, 3, 3]);
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.height <= 186) {
+					slave.height += jsEither([1, 1, 1, 2, 2]);
+				}
+			}
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.physicalAge === 3) {
+				if (slave.height <= 93) {
+					slave.height += jsEither([9, 9, 10, 10]);
+				} else if (slave.height <= 103) {
+					slave.height += 6;
+				}
+			} else if (slave.physicalAge === 4) {
+				if (slave.height <= 103) {
+					slave.height += jsEither([7, 7, 8, 8]);
+				} else if (slave.height <= 110) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 5) {
+				if (slave.height <= 110) {
+					slave.height += jsEither([6, 6, 7, 7]);
+				} else if (slave.height <= 117) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 6) {
+				if (slave.height <= 117) {
+					slave.height += jsEither([6, 6, 7, 7]);
+				} else if (slave.height <= 124) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 7) {
+				if (slave.height <= 124) {
+					slave.height += jsEither([6, 6, 7, 7]);
+				} else if (slave.height <= 131) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 8) {
+				if (slave.height <= 131) {
+					slave.height += jsEither([5, 5, 6, 6]);
+				} else if (slave.height <= 137) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.height <= 137) {
+					slave.height += jsEither([4, 4, 5, 5]);
+				} else if (slave.height <= 144) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.height <= 144) {
+					slave.height += jsEither([5, 5, 6, 6]);
+				} else if (slave.height <= 150) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.height <= 150) {
+					slave.height += jsEither([5, 5, 6, 6]);
+				} else if (slave.height <= 156) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.height <= 156) {
+					slave.height += jsEither([5, 5, 6, 6]);
+				} else if (slave.height <= 162) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.height <= 162) {
+					slave.height += jsEither([7, 7, 8, 8]);
+				} else if (slave.height <= 170) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.height <= 170) {
+					slave.height += jsEither([6, 6, 7, 7]);
+				} else if (slave.height <= 177) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.height <= 177) {
+					slave.height += jsEither([6, 6, 7, 7]);
+				} else if (slave.height <= 184) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.height <= 184) {
+					slave.height += jsEither([2, 2, 3, 3]);
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.height <= 185) {
+					slave.height += jsEither([1, 1, 2, 2]);
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.height <= 186) {
+					slave.height += jsEither([0, 0, 1, 1]);
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.physicalAge === 3) {
+				if (slave.height <= 93) {
+					slave.height += jsEither([9, 9, 10, 10, 10]);
+				} else if (slave.height <= 103) {
+					slave.height += 6;
+				}
+			} else if (slave.physicalAge === 4) {
+				if (slave.height <= 103) {
+					slave.height += jsEither([7, 7, 7, 8, 8]);
+				} else if (slave.height <= 110) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 5) {
+				if (slave.height <= 110) {
+					slave.height += jsEither([6, 6, 6, 7, 7]);
+				} else if (slave.height <= 117) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 6) {
+				if (slave.height <= 117) {
+					slave.height += jsEither([6, 6, 5, 7, 7]);
+				} else if (slave.height <= 124) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 7) {
+				if (slave.height <= 124) {
+					slave.height += jsEither([6, 6, 6, 7, 7]);
+				} else if (slave.height <= 131) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 8) {
+				if (slave.height <= 131) {
+					slave.height += jsEither([5, 5, 5, 6, 6]);
+				} else if (slave.height <= 137) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.height <= 137) {
+					slave.height += jsEither([4, 4, 4, 5, 5]);
+				} else if (slave.height <= 144) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.height <= 144) {
+					slave.height += jsEither([5, 5, 5, 6, 6]);
+				} else if (slave.height <= 150) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.height <= 150) {
+					slave.height += jsEither([5, 5, 5, 6, 6]);
+				} else if (slave.height <= 156) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.height <= 156) {
+					slave.height += jsEither([5, 5, 5, 6, 6]);
+				} else if (slave.height <= 162) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.height <= 162) {
+					slave.height += jsEither([7, 7, 7, 8, 8]);
+				} else if (slave.height <= 170) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.height <= 170) {
+					slave.height += jsEither([6, 6, 6, 7, 7]);
+				} else if (slave.height <= 177) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.height <= 177) {
+					slave.height += jsEither([6, 6, 6, 7, 7]);
+				} else if (slave.height <= 184) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.height <= 184) {
+					slave.height += jsEither([2, 2, 2, 3, 3]);
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.height <= 185) {
+					slave.height += jsEither([1, 1, 1, 2, 2]);
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.height <= 186) {
+					slave.height += jsEither([0, 0, 0, 1, 1]);
+				}
+			}
+		} else {
+			if (slave.physicalAge === 3) {
+				if (slave.height <= 93) {
+					slave.height += jsEither([9, 9, 10, 10, 10, 11]);
+				} else if (slave.height <= 103) {
+					slave.height += 6;
+				}
+			} else if (slave.physicalAge === 4) {
+				if (slave.height <= 103) {
+					slave.height += jsEither([7, 7, 8, 8, 9, 9]);
+				} else if (slave.height <= 110) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 5) {
+				if (slave.height <= 110) {
+					slave.height += jsEither([6, 6, 7, 7, 8, 8]);
+				} else if (slave.height <= 117) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 6) {
+				if (slave.height <= 117) {
+					slave.height += jsEither([6, 6, 7, 7, 8, 8]);
+				} else if (slave.height <= 124) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 7) {
+				if (slave.height <= 124) {
+					slave.height += jsEither([6, 6, 7, 7, 8, 8]);
+				} else if (slave.height <= 131) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 8) {
+				if (slave.height <= 131) {
+					slave.height += jsEither([5, 5, 6, 6, 7, 7]);
+				} else if (slave.height <= 137) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.height <= 137) {
+					slave.height += jsEither([4, 4, 5, 5, 5, 6]);
+				} else if (slave.height <= 144) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.height <= 144) {
+					slave.height += jsEither([5, 5, 6, 6, 7, 7]);
+				} else if (slave.height <= 150) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.height <= 150) {
+					slave.height += jsEither([5, 5, 6, 6, 6, 7]);
+				} else if (slave.height <= 156) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.height <= 156) {
+					slave.height += jsEither([5, 5, 6, 6, 7, 7]);
+				} else if (slave.height <= 162) {
+					slave.height += 3;
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.height <= 162) {
+					slave.height += jsEither([7, 7, 8, 8, 9, 9]);
+				} else if (slave.height <= 170) {
+					slave.height += 5;
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.height <= 170) {
+					slave.height += jsEither([6, 6, 7, 7, 8, 8]);
+				} else if (slave.height <= 177) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.height <= 177) {
+					slave.height += jsEither([6, 6, 7, 7, 8, 8]);
+				} else if (slave.height <= 184) {
+					slave.height += 4;
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.height <= 184) {
+					slave.height += jsEither([2, 2, 3, 3, 4, 4]);
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.height <= 185) {
+					slave.height += jsEither([1, 1, 2, 2, 3, 3]);
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.height <= 186) {
+					slave.height += jsEither([0, 0, 1, 1, 2, 2]);
+				}
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseBoobsXX(slave) {
+		if (slave.geneticQuirks.gigantomastia === 2 && slave.geneticQuirks.macromastia === 2) {
+			gigantomastiaMod = 3;
+		} else if (slave.geneticQuirks.gigantomastia === 2) {
+			gigantomastiaMod = 2;
+		} else if (slave.geneticQuirks.macromastia === 2) {
+			gigantomastiaMod = 1.5;
+		} else if (slave.geneticQuirks.gigantomastia === 3) {
+			gigantomastiaMod = 1.2;
+		} else if (slave.geneticQuirks.macromastia === 3) {
+			gigantomastiaMod = 1.1;
+		} else {
+			gigantomastiaMod = 1;
+		}
+		if (slave.hormoneBalance >= 200) {
+			if (slave.physicalAge === 8) {
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 9) {
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 10) {
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 11) {
+				if (slave.boobs < (600 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 100;
+			} else if (slave.physicalAge === 12) {
+				if (slave.boobs < (700 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 100;
+			} else if (slave.physicalAge === 13) {
+				if (slave.boobs < (1000 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 100;
+			} else if (slave.physicalAge === 14) {
+				if (slave.boobs < (800 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 100;
+			} else if (slave.physicalAge === 15) {
+				if (slave.boobs < (900 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 100;
+			} else if (slave.physicalAge === 16) {
+				if (slave.boobs < (1200 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 100;
+			} else if (slave.physicalAge === 17) {
+				if (slave.boobs < (1600 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 100;
+			} else if (slave.physicalAge === 18) {
+				if (slave.boobs < (2000 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 100;
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.physicalAge === 8) {
+				slave.boobs += 25;
+			} else if (slave.physicalAge === 9) {
+				slave.boobs += 25;
+			} else if (slave.physicalAge === 10) {
+				slave.boobs += 25;
+			} else if (slave.physicalAge === 11) {
+				if (slave.boobs < (500 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 12) {
+				if (slave.boobs < (600 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 13) {
+				if (slave.boobs < (900 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 14) {
+				if (slave.boobs < (700 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 15) {
+				if (slave.boobs < (800 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 16) {
+				if (slave.boobs < (1000 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 17) {
+				if (slave.boobs < (1200 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 18) {
+				if (slave.boobs < (1600 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			}
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.physicalAge >= 11) {
+				if (slave.boobs > 200 && gigantomastiaMod !== 3) {
+					slave.boobs -= 100;
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.physicalAge >= 11) {
+				if (slave.boobs > 200 && gigantomastiaMod !== 3) {
+					slave.boobs -= 50;
+				}
+			}
+		} else {
+			if (slave.physicalAge === 11) {
+				if (slave.boobs < (300 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.boobs < (300 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.boobs < (400 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.boobs < (500 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.boobs < (500 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.boobs < (800 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (50 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.boobs < (800 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (60 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.boobs < (800 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (70 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+			}
+		}
+	}
+
+	 /**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseBoobsXY(slave) {
+		if (slave.geneticQuirks.gigantomastia === 2 && slave.geneticQuirks.macromastia === 2) {
+			gigantomastiaMod = 3;
+		} else if (slave.geneticQuirks.gigantomastia === 2) {
+			gigantomastiaMod = 2;
+		} else if (slave.geneticQuirks.macromastia === 2) {
+			gigantomastiaMod = 1.5;
+		} else if (slave.geneticQuirks.gigantomastia === 3) {
+			gigantomastiaMod = 1.2;
+		} else if (slave.geneticQuirks.macromastia === 3) {
+			gigantomastiaMod = 1.1;
+		} else {
+			gigantomastiaMod = 1;
+		}
+		if (slave.hormoneBalance >= 200) {
+			if (slave.physicalAge === 8) {
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 9) {
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 10) {
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 11) {
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 12) {
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 13) {
+				if (slave.boobs < (1000 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 14) {
+				if (slave.boobs < (800 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 100;
+			} else if (slave.physicalAge === 15) {
+				if (slave.boobs < (900 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 100;
+			} else if (slave.physicalAge === 16) {
+				if (slave.boobs < (1200 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 100;
+			} else if (slave.physicalAge === 17) {
+				if (slave.boobs < (1600 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 100;
+			} else if (slave.physicalAge === 18) {
+				if (slave.boobs < (2000 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 100;
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.physicalAge === 8) {
+				slave.boobs += 25;
+			} else if (slave.physicalAge === 9) {
+				slave.boobs += 25;
+			} else if (slave.physicalAge === 10) {
+				slave.boobs += 25;
+			} else if (slave.physicalAge === 11) {
+				slave.boobs += 25;
+			} else if (slave.physicalAge === 12) {
+				slave.boobs += 25;
+			} else if (slave.physicalAge === 13) {
+				if (slave.boobs < (900 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 25;
+			} else if (slave.physicalAge === 14) {
+				if (slave.boobs < (700 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 15) {
+				if (slave.boobs < (800 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 16) {
+				if (slave.boobs < (1000 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 17) {
+				if (slave.boobs < (1200 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			} else if (slave.physicalAge === 18) {
+				if (slave.boobs < (1600 * gigantomastiaMod)) {
+					if (jsRandom(1, 100) > (40 / gigantomastiaMod)) {
+						slave.boobs += 100;
+					}
+				}
+				slave.boobs += 50;
+			}
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.physicalAge >= 11) {
+				if (slave.boobs > 200 && gigantomastiaMod !== 3) {
+					slave.boobs -= 100;
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.physicalAge >= 11) {
+				if (slave.boobs > 200 && gigantomastiaMod !== 3) {
+					slave.boobs -= 50;
+				}
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseHipsXX(slave) {
+		if (slave.hormoneBalance >= 200) {
+			if (slave.physicalAge === 8) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 90) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 90) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 90) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.physicalAge === 8) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 95) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 95) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 95) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.physicalAge === 8) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 99) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 95) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 95) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 95) {
+						slave.hips++;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.physicalAge === 8) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 95) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 90) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 90) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 90) {
+						slave.hips++;
+					}
+				}
+			}
+		} else {
+			if (slave.physicalAge === 8) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 90) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 60) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 60) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 60) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 60) {
+						slave.hips++;
+					}
+				}
+			}
+		}
+	}
+	
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseHipsXY(slave) {
+		if (slave.hormoneBalance >= 200) {
+			if (slave.physicalAge === 8) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 90) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 90) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 90) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 20) {
+						slave.hips++;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.physicalAge === 8) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 95) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 95) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 95) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 40) {
+						slave.hips++;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.physicalAge === 14) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 99) {
+						slave.hips++;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.physicalAge === 14) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 95) {
+						slave.hips++;
+					}
+				}
+			}
+		} else {
+			if (slave.physicalAge === 14) {
+				if (slave.hips < 2) {
+					if (jsRandom(1, 100) > 60) {
+						slave.hips++;
+					}
+				}
+			}
+		}
+	}
+	
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseButtXX(slave) {
+		rearQuirk = slave.geneticQuirks.rearLipedema === 2 ? 2 : 0;
+		rearQuirkDivider = rearQuirk === 0 ? 1 : _rearQuirk;
+
+		if (slave.hormoneBalance >= 200) {
+			if (slave.physicalAge === 8) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (80 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (80 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (80 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (20 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.butt < (4 + rearQuirk)) {
+					if (jsRandom(1, 100) > (20 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.butt < (4 + rearQuirk)) {
+					if (jsRandom(1, 100) > (20 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.physicalAge === 8) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (90 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (90 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (90 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (40 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.butt < (4 + rearQuirk)) {
+					if (jsRandom(1, 100) > (40 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.butt < (4 + rearQuirk)) {
+					if (jsRandom(1, 100) > (40 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.physicalAge === 8) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (90 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (95 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (95 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (95 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.physicalAge === 8) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (80 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (90 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (90 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (90 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			}
+		} else {
+			if (slave.physicalAge === 8) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (60 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (60 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (60 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (60 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseButtXY(slave) {
+		rearQuirk = slave.geneticQuirks.rearLipedema === 2 ? 2 : 0;
+		rearQuirkDivider = rearQuirk === 0 ? 1 : _rearQuirk;
+		if (slave.hormoneBalance >= 200) {
+			if (slave.physicalAge === 8) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (80 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (80 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (80 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (20 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.butt < (4 + rearQuirk)) {
+					if (jsRandom(1, 100) > (20 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.butt < (4 + rearQuirk)) {
+					if (jsRandom(1, 100) > (20 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.physicalAge === 8) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (90 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (90 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (90 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (40 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.butt < (4 + rearQuirk)) {
+					if (jsRandom(1, 100) > (40 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.physicalAge === 8) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (90 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.physicalAge === 8) {
+				if (slave.butt < (3 + rearQuirk)) {
+					if (jsRandom(1, 100) > (80 / rearQuirkDivider)) {
+						slave.butt++;
+					}
+				}
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseDick(slave) {
+		dickMod = (slave.geneticQuirks.wellHung === 2 ? 2 : 1);
+
+		if (slave.hormoneBalance >= 200) {
+		} else if (slave.hormoneBalance >= 100) {
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.physicalAge === 8) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (70 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.dick < 6 && dickMod === 2) {
+					if (jsRandom(1, 100) > 70) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (70 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (70 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (70 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (50 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (20 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (20 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (70 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (70 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (70 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.physicalAge === 8) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (90 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.dick < 6 && dickMod === 2) {
+					if (jsRandom(1, 100) > 70) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (90 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (90 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (90 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (70 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (40 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (40 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (90 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (90 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (90 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			}
+		} else {
+			if (slave.physicalAge === 9) {
+				if (slave.dick < 6 && dickMod === 2) {
+					if (jsRandom(1, 100) > 70) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.dick < 6 && dickMod === 2) {
+					if (jsRandom(1, 100) > 70) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.dick < 6 && dickMod === 2) {
+					if (jsRandom(1, 100) > 70) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.dick < 6 && dickMod === 2) {
+					if (jsRandom(1, 100) > 70) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (50 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (50 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.dick < 6) {
+					if (jsRandom(1, 100) > (50 / dickMod)) {
+						slave.dick++;
+						if (slave.foreskin > 0) {
+							slave.foreskin++;
+						}
+					}
+				}
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseBalls(slave) {
+		if (slave.hormoneBalance >= 200) {
+		} else if (slave.hormoneBalance >= 100) {
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.physicalAge === 8) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 10) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 70) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 70) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 70) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 50) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 20) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 20) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 70) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 70) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 70) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.physicalAge === 8) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 30) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 90) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 90) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 90) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 70) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 40) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 40) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 90) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 90) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 90) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			}
+		} else {
+			if (slave.physicalAge === 8) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 50) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 50) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 50) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.balls < 6) {
+					if (jsRandom(1, 100) > 50) {
+						slave.balls++;
+						if (slave.scrotum > 0) {
+							slave.scrotum++;
+						}
+					}
+				}
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseClit(slave) {
+		if (slave.hormoneBalance <= -200) {
+			if (slave.physicalAge === 8) {
+				if (slave.clit < 4) {
+					if (jsRandom(1, 100) > 70) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.clit < 4) {
+					if (jsRandom(1, 100) > 70) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.clit < 4) {
+					if (jsRandom(1, 100) > 70) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.clit < 4) {
+					if (jsRandom(1, 100) > 50) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.clit < 4) {
+					if (jsRandom(1, 100) > 50) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.clit < 4) {
+					if (jsRandom(1, 100) > 50) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.clit < 4) {
+					if (jsRandom(1, 100) > 50) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.clit < 4) {
+					if (jsRandom(1, 100) > 50) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.clit < 4) {
+					if (jsRandom(1, 100) > 50) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.clit < 4) {
+					if (jsRandom(1, 100) > 50) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.clit < 4) {
+					if (jsRandom(1, 100) > 50) {
+						slave.clit++;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.physicalAge === 8) {
+				if (slave.clit > 0 && slave.clit < 4) {
+					if (jsRandom(1, 100) > 90) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 9) {
+				if (slave.clit > 0 && slave.clit < 4) {
+					if (jsRandom(1, 100) > 90) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 10) {
+				if (slave.clit > 0 && slave.clit < 4) {
+					if (jsRandom(1, 100) > 90) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 11) {
+				if (slave.clit > 0 && slave.clit < 4) {
+					if (jsRandom(1, 100) > 70) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 12) {
+				if (slave.clit > 0 && slave.clit < 4) {
+					if (jsRandom(1, 100) > 70) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 13) {
+				if (slave.clit > 0 && slave.clit < 4) {
+					if (jsRandom(1, 100) > 70) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 14) {
+				if (slave.clit > 0 && slave.clit < 4) {
+					if (jsRandom(1, 100) > 70) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 15) {
+				if (slave.clit > 0 && slave.clit < 4) {
+					if (jsRandom(1, 100) > 70) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 16) {
+				if (slave.clit > 0 && slave.clit < 4) {
+					if (jsRandom(1, 100) > 70) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 17) {
+				if (slave.clit > 0 && slave.clit < 4) {
+					if (jsRandom(1, 100) > 70) {
+						slave.clit++;
+					}
+				}
+			} else if (slave.physicalAge === 18) {
+				if (slave.clit > 0 && slave.clit < 4) {
+					if (jsRandom(1, 100) > 70) {
+						slave.clit++;
+					}
+				}
+			}
+		}
+		if (slave.physicalAge >= 11 && slave.geneticQuirks.wellHung === 2 && slave.clit < 5 && jsRandom(1, 100) > 60) {
+			slave.clit++;
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseWaistXX(slave) {
+		if (slave.hormoneBalance >= 200) {
+			if (slave.physicalAge >= 12) {
+				if (slave.waist > -60) {
+					if (jsRandom(1, 100) > 20) {
+						slave.waist -= 5;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.physicalAge >= 12) {
+				if (slave.waist > -30) {
+					if (jsRandom(1, 100) > 20) {
+						slave.waist -= 5;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.physicalAge >= 12) {
+				if (slave.waist < 60) {
+					if (jsRandom(1, 100) > 20) {
+						slave.waist += 5;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.physicalAge >= 12) {
+				if (slave.waist < 30) {
+					if (jsRandom(1, 100) > 20) {
+						slave.waist += 5;
+					}
+				}
+			}
+		} else {
+			if (slave.physicalAge >= 12) {
+				if (slave.waist > -20) {
+					if (jsRandom(1, 100) > 60) {
+						slave.waist -= 5;
+					}
+				}
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseWaistXY(slave) {
+		if (slave.hormoneBalance >= 200) {
+			if (slave.physicalAge >= 12) {
+				if (slave.waist > -30) {
+					if (jsRandom(1, 100) > 20) {
+						slave.waist -= 5;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.physicalAge >= 12) {
+				if (slave.waist > -15) {
+					if (jsRandom(1, 100) > 20) {
+						slave.waist -= 5;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.physicalAge >= 12) {
+				if (slave.waist < 90) {
+					if (jsRandom(1, 100) > 20) {
+						slave.waist += 5;
+					}
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.physicalAge >= 12) {
+				if (slave.waist < 60) {
+					if (jsRandom(1, 100) > 20) {
+						slave.waist += 5;
+					}
+				}
+			}
+		} else {
+			if (slave.physicalAge >= 12) {
+				if (slave.waist < 20) {
+					if (jsRandom(1, 100) > 60) {
+						slave.waist += 5;
+					}
+				}
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseFaceXX(slave) {
+		if (slave.hormoneBalance >= 200) {
+			if (slave.face > 60) {
+				if (jsRandom(1, 100) > 80) {
+					slave.face += 5;
+				}
+			} else if (slave.face <= 60) {
+				if (jsRandom(1, 100) > 30) {
+					slave.face += 10;
+				}
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.face > 60) {
+				if (jsRandom(1, 100) > 80) {
+					slave.face += 5;
+				}
+			} else if (slave.face <= 60) {
+				if (jsRandom(1, 100) > 30) {
+					slave.face += 10;
+				}
+			}
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.face < 100) {
+				if (jsRandom(1, 100) > 50) {
+					slave.face -= 20;
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.face < 100) {
+				if (jsRandom(1, 100) > 70) {
+					slave.face -= 20;
+				}
+			}
+		} else {
+			if (slave.face > 60) {
+				if (jsRandom(1, 100) > 90) {
+					slave.face += 5;
+				}
+			} else if (slave.face <= 60) {
+				if (jsRandom(1, 100) > 40) {
+					slave.face += 10;
+				}
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseFaceXY(slave) {
+		if (slave.hormoneBalance >= 200) {
+			if (slave.face > 60) {
+				if (jsRandom(1, 100) > 80) {
+					slave.face += 5;
+				}
+			} else if (slave.face <= 60) {
+				if (jsRandom(1, 100) > 50) {
+					slave.face += 10;
+				}
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.face > 60) {
+				if (jsRandom(1, 100) > 80) {
+					slave.face += 10;
+				}
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseVoiceXX(slave) {
+		if (slave.hormoneBalance >= 200) {
+			if (slave.voice === 3) {
+				if (jsRandom(1, 100) > 90) {
+					slave.voice--;
+				}
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.voice === 3) {
+				if (jsRandom(1, 100) > 80) {
+					slave.voice--;
+				}
+			}
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.voice <= 3) {
+				if (jsRandom(1, 100) > 30) {
+					slave.voice--;
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.voice <= 3) {
+				if (jsRandom(1, 100) > 60) {
+					slave.voice--;
+				}
+			}
+		} else {
+			if (slave.voice === 3) {
+				if (jsRandom(1, 100) > 60) {
+					slave.voice--;
+				}
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increaseVoiceXY(slave) {
+		if (slave.hormoneBalance >= 200) {
+			if (slave.voice < 2) {
+				if (jsRandom(1, 100) > 50) {
+					slave.voice--;
+				}
+			}
+		} else if (slave.hormoneBalance >= 100) {
+			if (slave.voice < 3) {
+				if (jsRandom(1, 100) > 50) {
+					slave.voice--;
+				}
+			}
+		} else if (slave.hormoneBalance <= -200) {
+			if (slave.voice > 1) {
+				if (jsRandom(1, 100) > 10) {
+					slave.voice--;
+				}
+			}
+		} else if (slave.hormoneBalance <= -100) {
+			if (slave.voice > 1) {
+				if (jsRandom(1, 100) > 30) {
+					slave.voice--;
+				}
+			}
+		} else {
+			if (slave.voice > 1) {
+				if (jsRandom(1, 100) > 60) {
+					slave.voice--;
+				}
+			}
+		}
+	}
+
+	/**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increasePregAdpatationXX(slave) {
+		if (slave.physicalAge === 3) {
+			if (slave.pregAdaptation < 5) {
+				slave.pregAdaptation = 5;
+			}
+		} else if (slave.physicalAge === 4) {
+			if (slave.pregAdaptation < 5) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 5) {
+			if (slave.pregAdaptation < 5) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 6) {
+			if (slave.pregAdaptation < 5) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 7) {
+			if (slave.pregAdaptation < 6) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 8) {
+			if (slave.pregAdaptation < 7) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 9) {
+			if (slave.pregAdaptation < 8) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 10) {
+			if (slave.pregAdaptation < 9) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 11) {
+			if (slave.pregAdaptation < 10) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 12) {
+			if (slave.pregAdaptation < 14) {
+				slave.pregAdaptation += 4;
+			}
+		} else if (slave.physicalAge === 13) {
+			if (slave.pregAdaptation < 18) {
+				slave.pregAdaptation += 4;
+			}
+		} else if (slave.physicalAge === 14) {
+			if (slave.pregAdaptation < 22) {
+				slave.pregAdaptation += 4;
+			}
+		} else if (slave.physicalAge === 15) {
+			if (slave.pregAdaptation < 28) {
+				slave.pregAdaptation += 6;
+			}
+		} else if (slave.physicalAge === 16) {
+			if (slave.pregAdaptation < 34) {
+				slave.pregAdaptation += 6;
+			}
+		} else if (slave.physicalAge === 17) {
+			if (slave.pregAdaptation < 42) {
+				slave.pregAdaptation += 8;
+			}
+		} else if (slave.physicalAge === 18) {
+			if (slave.pregAdaptation < 50) {
+				slave.pregAdaptation += 8;
+			}
+		}
+	 }
+
+	 /**
+	 * @param {App.Entity.SlaveState} slave
+	 */
+	function increasePregAdpatationXY(slave) {
+		if (slave.physicalAge === 3) {
+			if (slave.pregAdaptation < 5) {
+				slave.pregAdaptation = 5;
+			}
+		} else if (slave.physicalAge === 4) {
+			if (slave.pregAdaptation < 5) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 5) {
+			if (slave.pregAdaptation < 5) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 6) {
+			if (slave.pregAdaptation < 5) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 7) {
+			if (slave.pregAdaptation < 6) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 8) {
+			if (slave.pregAdaptation < 7) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 9) {
+			if (slave.pregAdaptation < 8) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 10) {
+			if (slave.pregAdaptation < 9) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 11) {
+			if (slave.pregAdaptation < 10) {
+				slave.pregAdaptation++;
+			}
+		} else if (slave.physicalAge === 12) {
+			if (slave.pregAdaptation < 12) {
+				slave.pregAdaptation += 2;
+			}
+		} else if (slave.physicalAge === 13) {
+			if (slave.pregAdaptation < 14) {
+				slave.pregAdaptation += 2;
+			}
+		} else if (slave.physicalAge === 14) {
+			if (slave.pregAdaptation < 16) {
+				slave.pregAdaptation += 2;
+			}
+		} else if (slave.physicalAge === 15) {
+			if (slave.pregAdaptation < 18) {
+				slave.pregAdaptation += 2;
+			}
+		} else if (slave.physicalAge === 16) {
+			if (slave.pregAdaptation < 20) {
+				slave.pregAdaptation += 2;
+			}
+		} else if (slave.physicalAge === 17) {
+			if (slave.pregAdaptation < 20) {
+				slave.pregAdaptation += 2;
+			}
+		} else if (slave.physicalAge === 18) {
+			if (slave.pregAdaptation < 20) {
+				slave.pregAdaptation += 2;
+			}
+		}
+	}
+
+})();
diff --git a/src/pregmod/physicalDevelopment.tw b/src/pregmod/physicalDevelopment.tw
deleted file mode 100644
index 207cd8993f7f0ec122b448d877883cd074375ea3..0000000000000000000000000000000000000000
--- a/src/pregmod/physicalDevelopment.tw
+++ /dev/null
@@ -1,2933 +0,0 @@
-:: Physical Development [nobr widget]
-
-<<widget "PhysicalDevelopment">>
-
-<<set _rearQuirk = $args[0].geneticQuirks.rearLipedema == 2 ? 2 : 0>>
-<<set _rearQuirkDivider = _rearQuirk == 0 ? 1 : _rearQuirk>>
-<<if $args[0].geneticQuirks.gigantomastia == 2 && $args[0].geneticQuirks.macromastia == 2>>
-	<<set _gigantomastiaMod = 3>>
-<<elseif $args[0].geneticQuirks.gigantomastia == 2>>
-	<<set _gigantomastiaMod = 2>>
-<<elseif $args[0].geneticQuirks.macromastia == 2>>
-	<<set _gigantomastiaMod = 1.5>>
-<<elseif $args[0].geneticQuirks.gigantomastia == 3>>
-	<<set _gigantomastiaMod = 1.2>>
-<<elseif $args[0].geneticQuirks.macromastia == 3>>
-	<<set _gigantomastiaMod = 1.1>>
-<<else>>
-	<<set _gigantomastiaMod = 1>>
-<</if>>
-
-<<if ($args[0].geneMods.NCS == 1)>>
-/* NCS completely blocks all natural physical growth: no height increases. It also blocks all hormonal secondary sexual * characteristics. So, on the female side: no boobs, no butt, no hips, and no labia. And on the male side: no dick, no clit, no balls, no scrotum, no shoulders. */
-
-/* so this is a big old NO-OP to skip the physical development. */
-
-<<elseif $args[0].genes == "XX">>
-/* loli becoming a woman */
-
-<<switch $args[0].physicalAge>>
-
-<<case 3>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 91>>
-			<<set $args[0].height += either(8,8,9,9)>>
-		<<elseif $args[0].height <= 101>>
-			<<set $args[0].height += 5>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 91>>
-			<<set $args[0].height += either(8,8,9,9,9)>>
-		<<elseif $args[0].height <= 101>>
-			<<set $args[0].height += 5>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 91>>
-			<<set $args[0].height += either(9,9,9,10,10)>>
-		<<elseif $args[0].height <= 101>>
-			<<set $args[0].height += 5>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 91>>
-			<<set $args[0].height += either(8,9,9,9,10)>>
-		<<elseif $args[0].height <= 101>>
-			<<set $args[0].height += 5>>
-		<</if>>
-	<<else>>
-		<<if $args[0].geneticQuirks.dwarfism == 2 && $args[0].geneticQuirks.gigantism != 2>>
-			<<if $args[0].height <= 77>>
-				<<set $args[0].height += either(2,2,3,3,4,4)>>
-			<<elseif $args[0].height <= 82>>
-				<<set $args[0].height += 1>>
-			<</if>>
-		<<elseif $args[0].geneticQuirks.gigantism == 2>>
-			<<if $args[0].height <= 101>>
-				<<set $args[0].height += either(8,8,9,9,9,10)>>
-			<<elseif $args[0].height <= 116>>
-				<<set $args[0].height += 7>>
-			<</if>>
-		<<else>>
-			<<if $args[0].height <= 91>>
-				<<set $args[0].height += either(8,8,9,9,9,10)>>
-			<<elseif $args[0].height <= 101>>
-				<<set $args[0].height += 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<set $args[0].pregAdaptation = 5>>
-<<case 4>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 101>>
-			<<set $args[0].height += either(6,6,7,7)>>
-		<<elseif $args[0].height <= 109>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 101>>
-			<<set $args[0].height += either(6,6,7,7,7)>>
-		<<elseif $args[0].height <= 109>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 101>>
-			<<set $args[0].height += either(7,7,7,8,8)>>
-		<<elseif $args[0].height <= 109>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 101>>
-			<<set $args[0].height += either(6,7,7,7,8)>>
-		<<elseif $args[0].height <= 109>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 101>>
-			<<set $args[0].height += either(6,6,7,7,7,8)>>
-		<<elseif $args[0].height <= 109>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 5>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 5>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 109>>
-			<<set $args[0].height += either(6,6,7,7)>>
-		<<elseif $args[0].height <= 116>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 109>>
-			<<set $args[0].height += either(6,6,7,7,7)>>
-		<<elseif $args[0].height <= 116>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 109>>
-			<<set $args[0].height += either(7,7,7,8,8)>>
-		<<elseif $args[0].height <= 116>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 109>>
-			<<set $args[0].height += either(6,7,7,7,8)>>
-		<<elseif $args[0].height <= 116>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 109>>
-			<<set $args[0].height += either(6,6,7,7,7,8)>>
-		<<elseif $args[0].height <= 116>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 5>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 6>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 116>>
-			<<set $args[0].height += either(5,5,6,6)>>
-		<<elseif $args[0].height <= 124>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 116>>
-			<<set $args[0].height += either(5,5,6,6,6)>>
-		<<elseif $args[0].height <= 124>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 116>>
-			<<set $args[0].height += either(6,6,6,7,7)>>
-		<<elseif $args[0].height <= 124>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 116>>
-			<<set $args[0].height += either(5,6,6,6,7)>>
-		<<elseif $args[0].height <= 124>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 116>>
-			<<set $args[0].height += either(5,5,6,6,6,7)>>
-		<<elseif $args[0].height <= 124>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 5>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 7>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 124>>
-			<<set $args[0].height += either(7,7,8,8)>>
-		<<elseif $args[0].height <= 131>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 124>>
-			<<set $args[0].height += either(7,7,8,8,8)>>
-		<<elseif $args[0].height <= 131>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 124>>
-			<<set $args[0].height += either(8,8,8,9,9)>>
-		<<elseif $args[0].height <= 131>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 124>>
-			<<set $args[0].height += either(7,8,8,8,9)>>
-		<<elseif $args[0].height <= 131>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 124>>
-			<<set $args[0].height += either(7,7,8,8,8,9)>>
-		<<elseif $args[0].height <= 131>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 6>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 8>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 131>>
-			<<set $args[0].height += either(5,5,6,6)>>
-		<<elseif $args[0].height <= 137>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 80/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 131>>
-			<<set $args[0].height += either(5,5,6,6,6)>>
-		<<elseif $args[0].height <= 137>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 95>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 90/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 25>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 131>>
-			<<set $args[0].height += either(6,6,6,7,7)>>
-		<<elseif $args[0].height <= 137>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 99>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 90/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 131>>
-			<<set $args[0].height += either(5,6,6,6,7)>>
-		<<elseif $args[0].height <= 137>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 95>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 80/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 131>>
-			<<set $args[0].height += either(5,5,6,6,6,7)>>
-		<<elseif $args[0].height <= 137>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 60/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 7>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 9>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 137>>
-			<<set $args[0].height += either(4,4,5,5,)>>
-		<<elseif $args[0].height <= 144>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 80/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 137>>
-			<<set $args[0].height += either(4,4,5,5,5)>>
-		<<elseif $args[0].height <= 144>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 95>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 90/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 25>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 137>>
-			<<set $args[0].height += either(5,5,5,6,6)>>
-		<<elseif $args[0].height <= 144>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 137>>
-			<<set $args[0].height += either(4,5,5,5,6)>>
-		<<elseif $args[0].height <= 144>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 137>>
-			<<set $args[0].height += either(4,4,5,5,5,6)>>
-		<<elseif $args[0].height <= 144>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 8>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 10>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 144>>
-			<<set $args[0].height += either(6,6,7,7)>>
-		<<elseif $args[0].height <= 156>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 80/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 144>>
-			<<set $args[0].height += either(6,6,7,7,7)>>
-		<<elseif $args[0].height <= 156>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 95>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 90/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 25>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 144>>
-			<<set $args[0].height += either(7,7,7,8,8)>>
-		<<elseif $args[0].height <= 156>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 144>>
-			<<set $args[0].height += either(6,7,7,7,8)>>
-		<<elseif $args[0].height <= 156>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 144>>
-			<<set $args[0].height += either(6,6,7,7,7,8)>>
-		<<elseif $args[0].height <= 156>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 9>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 11>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 156>>
-			<<set $args[0].height += either(5,5,6,6)>>
-		<<elseif $args[0].height <= 163>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 20/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 600*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 100>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 156>>
-			<<set $args[0].height += either(5,5,6,6,6)>>
-		<<elseif $args[0].height <= 163>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 40/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 500*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 156>>
-			<<set $args[0].height += either(6,6,6,7,7)>>
-		<<elseif $args[0].height <= 163>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 95>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 95/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 156>>
-			<<set $args[0].height += either(5,6,6,6,7)>>
-		<<elseif $args[0].height <= 163>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 90/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 156>>
-			<<set $args[0].height += either(5,5,6,6,6,7)>>
-		<<elseif $args[0].height <= 163>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 60/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 300*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 10>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-	<<if $args[0].geneticQuirks.wellHung == 2 && $args[0].clit > 0 && $args[0].clit < 5 && random(1,100) > 60>>
-		<<set $args[0].clit++>>
-	<</if>>
-<<case 12>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 163>>
-			<<set $args[0].height += either(6,6,7,7)>>
-		<<elseif $args[0].height <= 168>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 4+_rearQuirk>>
-			<<if random(1,100) > 20/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 700*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 100>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 163>>
-			<<set $args[0].height += either(6,6,7,7,7)>>
-		<<elseif $args[0].height <= 168>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 4+_rearQuirk>>
-			<<if random(1,100) > 40/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 600*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 168>>
-			<<set $args[0].height += either(7,7,7,8,8)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 95>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 95/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 163>>
-			<<set $args[0].height += either(6,7,7,7,8)>>
-		<<elseif $args[0].height <= 168>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 90/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 168>>
-			<<set $args[0].height += either(6,6,7,7,7,8)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 60/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 300*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 14>>
-		<<set $args[0].pregAdaptation += 4>>
-	<</if>>
-	<<if $args[0].geneticQuirks.wellHung == 2 && $args[0].clit > 0 && $args[0].clit < 5 && random(1,100) > 60>>
-		<<set $args[0].clit++>>
-	<</if>>
-<<case 13>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 168>>
-			<<set $args[0].height += either(5,5,6,6)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].face > 60>>
-			<<if random(1,100) > 80>>
-				<<set $args[0].face += 5>>
-			<</if>>
-		<<elseif $args[0].face <= 60>>
-			<<if random(1,100) > 30>>
-				<<set $args[0].face += 10>>
-			<</if>>
-		<</if>>
-		<<if $args[0].voice == 3>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].voice -= 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 4+_rearQuirk>>
-			<<if random(1,100) > 20/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 1000*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 100>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 186>>
-			<<set $args[0].height += either(5,5,6,6,6)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].face > 60>>
-			<<if random(1,100) > 80>>
-				<<set $args[0].face += 5>>
-			<</if>>
-		<<elseif $args[0].face <= 60>>
-			<<if random(1,100) > 30>>
-				<<set $args[0].face += 10>>
-			<</if>>
-		<</if>>
-		<<if $args[0].voice == 3>>
-			<<if random(1,100) > 80>>
-				<<set $args[0].voice -= 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 4+_rearQuirk>>
-			<<if random(1,100) > 40/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 900*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 168>>
-			<<set $args[0].height += either(6,6,6,7,7)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].face < 100>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].face -= 20>>
-			<</if>>
-		<</if>>
-		<<if $args[0].voice <= 3>>
-			<<if random(1,100) > 30>>
-				<<set $args[0].voice -= 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 95>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 95/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 168>>
-			<<set $args[0].height += either(5,6,6,6,7)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].face < 100>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].face -= 20>>
-			<</if>>
-		<</if>>
-		<<if $args[0].voice <= 3>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].voice -= 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 90/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 168>>
-			<<set $args[0].height += either(5,5,6,6,6,7)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].face > 60>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].face += 5>>
-			<</if>>
-		<<elseif $args[0].face <= 60>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].face += 10>>
-			<</if>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 60/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].voice == 3>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].voice -= 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 400*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 18>>
-		<<set $args[0].pregAdaptation += 4>>
-	<</if>>
-	<<if $args[0].geneticQuirks.wellHung == 2 && $args[0].clit > 0 && $args[0].clit < 5 && random(1,100) > 60>>
-		<<set $args[0].clit++>>
-	<</if>>
-<<case 14>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 171>>
-			<<set $args[0].height += either(4,4,5,5)>>
-		<<elseif $args[0].height <= 173>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 800*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 100>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 171>>
-			<<set $args[0].height += either(4,4,5,5,5)>>
-		<<elseif $args[0].height <= 173>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 700*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 171>>
-			<<set $args[0].height += either(5,5,5,6,6)>>
-		<<elseif $args[0].height <= 173>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 171>>
-			<<set $args[0].height += either(4,5,5,5,6)>>
-		<<elseif $args[0].height <= 173>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 171>>
-			<<set $args[0].height += either(4,4,5,5,5,6)>>
-		<<elseif $args[0].height <= 173>>
-			<<set $args[0].height += 2>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 500*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 22>>
-		<<set $args[0].pregAdaptation += 4>>
-	<</if>>
-	<<if $args[0].geneticQuirks.wellHung == 2 && $args[0].clit > 0 && $args[0].clit < 5 && random(1,100) > 60>>
-		<<set $args[0].clit++>>
-	<</if>>
-<<case 15>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 900*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 100>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 800*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(1,1,1,2,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].boobs < 500*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 28>>
-		<<set $args[0].pregAdaptation += 6>>
-	<</if>>
-	<<if $args[0].geneticQuirks.wellHung == 2 && $args[0].clit > 0 && $args[0].clit < 5 && random(1,100) > 60>>
-		<<set $args[0].clit++>>
-	<</if>>
-<<case 16>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 1200*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 100>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 1000*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(1,1,1,2,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].boobs < 800*_gigantomastiaMod>>
-			<<if random(1,100) > 50/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 34>>
-		<<set $args[0].pregAdaptation += 6>>
-	<</if>>
-	<<if $args[0].geneticQuirks.wellHung == 2 && $args[0].clit > 0 && $args[0].clit < 5 && random(1,100) > 60>>
-		<<set $args[0].clit++>>
-	<</if>>
-<<case 17>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 1600*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 100>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 1200*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(1,1,1,2,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].boobs < 800*_gigantomastiaMod>>
-			<<if random(1,100) > 60/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 42>>
-		<<set $args[0].pregAdaptation += 8>>
-	<</if>>
-	<<if $args[0].geneticQuirks.wellHung == 2 && $args[0].clit > 0 && $args[0].clit < 5 && random(1,100) > 60>>
-		<<set $args[0].clit++>>
-	<</if>>
-<<case 18>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 2000*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 100>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 1600*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(1,1,1,2,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].clit > 0 && $args[0].clit < 4>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].clit += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].boobs < 800*_gigantomastiaMod>>
-			<<if random(1,100) > 70/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 50>>
-		<<set $args[0].pregAdaptation += 8>>
-	<</if>>
-	<<if $args[0].geneticQuirks.wellHung == 2 && $args[0].clit > 0 && $args[0].clit < 5 && random(1,100) > 60>>
-		<<set $args[0].clit++>>
-	<</if>>
-<</switch>>
-
-<<elseif $args[0].genes == "XY">>
-
-<<if $args[0].geneticQuirks.wellHung == 2>>
-	<<set _dickMod = 2>>
-<<else>>
-	<<set _dickMod = 1>>
-<</if>>
-
-<<switch $args[0].physicalAge>>
-<<case 3>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 91>>
-			<<set $args[0].height += either(8,8,9,9)>>
-		<<elseif $args[0].height <= 101>>
-			<<set $args[0].height += 5>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 91>>
-			<<set $args[0].height += either(8,8,9,9,9)>>
-		<<elseif $args[0].height <= 101>>
-			<<set $args[0].height += 5>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 91>>
-			<<set $args[0].height += either(9,9,9,10,10)>>
-		<<elseif $args[0].height <= 101>>
-			<<set $args[0].height += 5>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 91>>
-			<<set $args[0].height += either(8,9,9,9,10)>>
-		<<elseif $args[0].height <= 101>>
-			<<set $args[0].height += 5>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 91>>
-			<<set $args[0].height += either(8,8,9,9,9,10)>>
-		<<elseif $args[0].height <= 101>>
-			<<set $args[0].height += 5>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 5>>
-		<<set $args[0].pregAdaptation = 5>>
-	<</if>>
-<<case 4>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 101>>
-			<<set $args[0].height += either(6,6,7,7)>>
-		<<elseif $args[0].height <= 109>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 101>>
-			<<set $args[0].height += either(6,6,7,7,7)>>
-		<<elseif $args[0].height <= 109>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 101>>
-			<<set $args[0].height += either(7,7,7,8,8)>>
-		<<elseif $args[0].height <= 109>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 101>>
-			<<set $args[0].height += either(6,7,7,7,8)>>
-		<<elseif $args[0].height <= 109>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 101>>
-			<<set $args[0].height += either(6,6,7,7,7,8)>>
-		<<elseif $args[0].height <= 109>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 5>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 5>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 109>>
-			<<set $args[0].height += either(6,6,7,7)>>
-		<<elseif $args[0].height <= 116>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 109>>
-			<<set $args[0].height += either(6,6,7,7,7)>>
-		<<elseif $args[0].height <= 116>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 109>>
-			<<set $args[0].height += either(7,7,7,8,8)>>
-		<<elseif $args[0].height <= 116>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 109>>
-			<<set $args[0].height += either(6,7,7,7,8)>>
-		<<elseif $args[0].height <= 116>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 109>>
-			<<set $args[0].height += either(6,6,7,7,7,8)>>
-		<<elseif $args[0].height <= 116>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 5>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 6>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 116>>
-			<<set $args[0].height += either(5,5,6,6)>>
-		<<elseif $args[0].height <= 124>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 116>>
-			<<set $args[0].height += either(5,5,6,6,6)>>
-		<<elseif $args[0].height <= 124>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 116>>
-			<<set $args[0].height += either(6,6,6,7,7)>>
-		<<elseif $args[0].height <= 124>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 116>>
-			<<set $args[0].height += either(5,6,6,6,7)>>
-		<<elseif $args[0].height <= 124>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 116>>
-			<<set $args[0].height += either(5,5,6,6,6,7)>>
-		<<elseif $args[0].height <= 124>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 5>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 7>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 124>>
-			<<set $args[0].height += either(7,7,8,8)>>
-		<<elseif $args[0].height <= 131>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 124>>
-			<<set $args[0].height += either(7,7,8,8,8)>>
-		<<elseif $args[0].height <= 131>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 124>>
-			<<set $args[0].height += either(8,8,8,9,9)>>
-		<<elseif $args[0].height <= 131>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 124>>
-			<<set $args[0].height += either(7,8,8,8,9)>>
-		<<elseif $args[0].height <= 131>>
-			<<set $args[0].height += 3>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 124>>
-			<<set $args[0].height += either(7,7,8,8,8,9)>>
-		<<elseif $args[0].height <= 131>>
-			<<set $args[0].height += 4>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 6>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 8>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 131>>
-			<<set $args[0].height += either(5,5,6,6)>>
-		<<elseif $args[0].height <= 137>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 80/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 131>>
-			<<set $args[0].height += either(5,5,6,6,6)>>
-		<<elseif $args[0].height <= 137>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 95>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 90/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 25>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 131>>
-			<<set $args[0].height += either(6,6,6,7,7)>>
-		<<elseif $args[0].height <= 137>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 99>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 90/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 70/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 10>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 131>>
-			<<set $args[0].height += either(5,6,6,6,7)>>
-		<<elseif $args[0].height <= 137>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 95>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 80/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 90/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 30>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 131>>
-			<<set $args[0].height += either(5,5,6,6,6,7)>>
-		<<elseif $args[0].height <= 137>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 7>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 9>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 137>>
-			<<set $args[0].height += either(4,4,5,5,)>>
-		<<elseif $args[0].height <= 144>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 80/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 137>>
-			<<set $args[0].height += either(4,4,5,5,5)>>
-		<<elseif $args[0].height <= 144>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 95>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 90/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 25>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 137>>
-			<<set $args[0].height += either(5,5,5,6,6)>>
-		<<elseif $args[0].height <= 144>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6 && _dickMod == 2>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 137>>
-			<<set $args[0].height += either(4,5,5,5,6)>>
-		<<elseif $args[0].height <= 144>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6 && _dickMod == 2>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 137>>
-			<<set $args[0].height += either(4,4,5,5,5,6)>>
-		<<elseif $args[0].height <= 144>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6 && _dickMod == 2>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 8>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 10>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 144>>
-			<<set $args[0].height += either(6,6,7,7)>>
-		<<elseif $args[0].height <= 156>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 80/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 144>>
-			<<set $args[0].height += either(6,6,7,7,7)>>
-		<<elseif $args[0].height <= 156>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 95>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 90/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 25>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 144>>
-			<<set $args[0].height += either(7,7,7,8,8)>>
-		<<elseif $args[0].height <= 156>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 70/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 144>>
-			<<set $args[0].height += either(6,7,7,7,8)>>
-		<<elseif $args[0].height <= 156>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 90/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 144>>
-			<<set $args[0].height += either(6,6,7,7,7,8)>>
-		<<elseif $args[0].height <= 156>>
-			<<set $args[0].height += 4>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6 && _dickMod == 2>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 9>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 11>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 156>>
-			<<set $args[0].height += either(5,5,6,6)>>
-		<<elseif $args[0].height <= 163>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 20/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 156>>
-			<<set $args[0].height += either(5,5,6,6,6)>>
-		<<elseif $args[0].height <= 163>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 3+_rearQuirk>>
-			<<if random(1,100) > 40/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 25>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 156>>
-			<<set $args[0].height += either(6,6,6,7,7)>>
-		<<elseif $args[0].height <= 163>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 70/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 156>>
-			<<set $args[0].height += either(5,6,6,6,7)>>
-		<<elseif $args[0].height <= 163>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 90/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 156>>
-			<<set $args[0].height += either(5,5,6,6,6,7)>>
-		<<elseif $args[0].height <= 163>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6 && _dickMod == 2>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 10>>
-		<<set $args[0].pregAdaptation++>>
-	<</if>>
-<<case 12>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 163>>
-			<<set $args[0].height += either(6,6,7,7)>>
-		<<elseif $args[0].height <= 168>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 4+_rearQuirk>>
-			<<if random(1,100) > 20/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 163>>
-			<<set $args[0].height += either(6,6,7,7,7)>>
-		<<elseif $args[0].height <= 168>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 4+_rearQuirk>>
-			<<if random(1,100) > 40/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -15>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 25>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 168>>
-			<<set $args[0].height += either(7,7,7,8,8)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 70/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 90>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 163>>
-			<<set $args[0].height += either(6,7,7,7,8)>>
-		<<elseif $args[0].height <= 168>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 90/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 168>>
-			<<set $args[0].height += either(6,6,7,7,7,8)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].waist < 20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6 && _dickMod == 2>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 12>>
-		<<set $args[0].pregAdaptation += 2>>
-	<</if>>
-<<case 13>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 168>>
-			<<set $args[0].height += either(5,5,6,6)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].face > 60>>
-			<<if random(1,100) > 80>>
-				<<set $args[0].face += 5>>
-			<</if>>
-		<<elseif $args[0].face <= 60>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].face += 10>>
-			<</if>>
-		<</if>>
-		<<if $args[0].voice < 2>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].voice -= 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 4+_rearQuirk>>
-			<<if random(1,100) > 20/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 1000*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 186>>
-			<<set $args[0].height += either(5,5,6,6,6)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].face < 60>>
-			<<if random(1,100) > 80>>
-				<<set $args[0].face += 10>>
-			<</if>>
-		<</if>>
-		<<if $args[0].voice < 3>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].voice -= 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].butt < 4+_rearQuirk>>
-			<<if random(1,100) > 40/_rearQuirkDivider>>
-				<<set $args[0].butt += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 900*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -15>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 25>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 168>>
-			<<set $args[0].height += either(6,6,6,7,7)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].voice > 1>>
-			<<if random(1,100) > 10>>
-				<<set $args[0].voice -= 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 50/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 90>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 168>>
-			<<set $args[0].height += either(5,6,6,6,7)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].voice > 1>>
-			<<if random(1,100) > 30>>
-				<<set $args[0].voice -= 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 70/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 168>>
-			<<set $args[0].height += either(5,5,6,6,6,7)>>
-		<<elseif $args[0].height <= 171>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].voice > 1>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].voice -= 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 50/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 14>>
-		<<set $args[0].pregAdaptation += 2>>
-	<</if>>
-<<case 14>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 171>>
-			<<set $args[0].height += either(4,4,5,5)>>
-		<<elseif $args[0].height <= 173>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 800*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 100>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 171>>
-			<<set $args[0].height += either(4,4,5,5,5)>>
-		<<elseif $args[0].height <= 173>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 700*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -15>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 171>>
-			<<set $args[0].height += either(5,5,5,6,6)>>
-		<<elseif $args[0].height <= 173>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 20/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 90>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 171>>
-			<<set $args[0].height += either(4,5,5,5,6)>>
-		<<elseif $args[0].height <= 173>>
-			<<set $args[0].height += 3>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 40/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 171>>
-			<<set $args[0].height += either(4,4,5,5,5,6)>>
-		<<elseif $args[0].height <= 173>>
-			<<set $args[0].height += 2>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 50/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 16>>
-		<<set $args[0].pregAdaptation += 2>>
-	<</if>>
-<<case 15>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 900*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 100>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 800*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -15>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(1,1,1,2,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 20/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 90>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 40/_dickMod>>
-				<<set $args[0].dick += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 50/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 50>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 18>>
-		<<set $args[0].pregAdaptation += 2>>
-	<</if>>
-<<case 16>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 1200*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 100>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 1000*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -15>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(1,1,1,2,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 70/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 90>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 90/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].waist < 20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 20>>
-		<<set $args[0].pregAdaptation += 2>>
-	<</if>>
-<<case 17>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 1600*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 100>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 1200*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -15>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(1,1,1,2,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 70/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 90>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 90/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].waist < 20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 20>>
-		<<set $args[0].pregAdaptation += 2>>
-	<</if>>
-<<case 18>>
-	<<if $args[0].hormoneBalance >= 200>>
-		<<if $args[0].geneticQuirks.dwarfism == 2 && $args[0].geneticQuirks.gigantism != 2>>
-			<<if $args[0].height <= 146>>
-				<<set $args[0].height += either(0,0,0,1)>>
-			<</if>>
-		<<elseif $args[0].geneticQuirks.gigantism == 2>>
-			<<if $args[0].height <= 274>>
-				<<set $args[0].height += either(0,1,2,3)>>
-			<</if>>
-		<<else>>
-			<<if $args[0].height <= 174>>
-				<<set $args[0].height += either(0,0,1,1)>>
-			<</if>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 2000*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -30>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 100>>
-	<<elseif $args[0].hormoneBalance >= 100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,0,1,1,1)>>
-		<</if>>
-		<<if $args[0].hips < 2>>
-			<<if random(1,100) > 40>>
-				<<set $args[0].hips += 1>>
-			<</if>>
-		<</if>>
-		<<if $args[0].boobs < 1600*_gigantomastiaMod>>
-			<<if random(1,100) > 40/_gigantomastiaMod>>
-				<<set $args[0].boobs += 100>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist > -15>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist -= 5>>
-			<</if>>
-		<</if>>
-		<<set $args[0].boobs += 50>>
-	<<elseif $args[0].hormoneBalance <= -200>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(1,1,1,2,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 100>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 70/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 70>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 90>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<elseif $args[0].hormoneBalance <= -100>>
-		<<if $args[0].height <= 174>>
-			<<set $args[0].height += either(0,1,1,1,2)>>
-		<</if>>
-		<<if $args[0].boobs > 200 && _gigantomastiaMod != 3>>
-			<<set $args[0].boobs -= 50>>
-		<</if>>
-		<<if $args[0].dick > 0 && $args[0].dick < 6>>
-			<<if random(1,100) > 90/_dickMod>>
-				<<set $args[0].dick += 1>>
-				<<if $args[0].foreskin > 0>>
-					<<set $args[0].foreskin += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].balls > 0 && $args[0].balls < 6>>
-			<<if random(1,100) > 90>>
-				<<set $args[0].balls += 1>>
-				<<if $args[0].scrotum > 0>>
-					<<set $args[0].scrotum += 1>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 60>>
-			<<if random(1,100) > 20>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $args[0].geneticQuirks.dwarfism == 2 && $args[0].geneticQuirks.gigantism != 2>>
-			<<if $args[0].height <= 146>>
-				<<set $args[0].height += either(0,0,0,1)>>
-			<</if>>
-		<<elseif $args[0].geneticQuirks.gigantism == 2>>
-			<<if $args[0].height <= 274>>
-				<<set $args[0].height += either(3,4,4,5,5,6)>>
-			<</if>>
-		<<else>>
-			<<if $args[0].height <= 174>>
-				<<set $args[0].height += either(0,0,1,1,1,2)>>
-			<</if>>
-		<</if>>
-		<<if $args[0].waist < 20>>
-			<<if random(1,100) > 60>>
-				<<set $args[0].waist += 5>>
-			<</if>>
-		<</if>>
-	<</if>>
-	<<if $args[0].pregAdaptation < 20>>
-		<<set $args[0].pregAdaptation += 2>>
-	<</if>>
-<</switch>>
-<</if>>
-
-<</widget>>
diff --git a/src/uncategorized/nextWeek.tw b/src/uncategorized/nextWeek.tw
index 9966e79a7e8fb8e08560232ab9d891789597f964..35526fe9a62f99a47b6243162ea7c84d8def5f9f 100644
--- a/src/uncategorized/nextWeek.tw
+++ b/src/uncategorized/nextWeek.tw
@@ -126,7 +126,7 @@
 					<<set $slaves[_i].ovaryAge += .2>>
 				<</if>>
 				<<if $slaves[_i].physicalAge <= 18 && $loliGrow == 0>>
-					<<PhysicalDevelopment $slaves[_i]>>
+					<<run physicalDevelopment($slaves[_i])>>
 				<</if>>
 			<</if>>
 		<</if>>