diff --git a/src/endWeek/saAgent.js b/src/endWeek/saAgent.js
index dab4bd684598d21423e5ed4f928a62360e7cd063..699f452906467fdbf0c2b2b608a7b831be219eaf 100644
--- a/src/endWeek/saAgent.js
+++ b/src/endWeek/saAgent.js
@@ -48,7 +48,7 @@ App.SlaveAssignment.agent = function(slave) {
 	if (slave.buttImplantType === "string") {
 		slave.buttImplant += 0.25;
 		slave.butt += 0.25;
-		if ((slave.butt > 10)) {
+		if (slave.butt > 10) {
 			slave.butt -= 1;
 			slave.buttImplant -= 1;
 			if (slave.geneMods.NCS === 1) {
diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js
index 7bf9ceb1f35fe543a63c5fa24e2fb9fc0bc64ad2..39e21d396acf790e065deaebe4f49dd805989812 100644
--- a/src/endWeek/saClothes.js
+++ b/src/endWeek/saClothes.js
@@ -832,7 +832,7 @@ App.SlaveAssignment.clothes = (function() {
 						slave.trust -= 2;
 					} else if (slave.fetish === "masochist") {
 						r.push(`It is difficult to walk in ${his} extreme heels, but ${he}`);
-						if ((slave.fetishKnown === 0)) {
+						if (slave.fetishKnown === 0) {
 							r.push(`seems to enjoy every painful step; ${he}'s a <span class="lightcoral">natural masochist.</span>`);
 							slave.fetishKnown = 1;
 						} else {
diff --git a/src/endWeek/saDrugs.js b/src/endWeek/saDrugs.js
index 11161ce43a68eba26a6d1235ff2b2ab1ac47b710..02256807e9ba9818830084d6028d6abf75a82422 100644
--- a/src/endWeek/saDrugs.js
+++ b/src/endWeek/saDrugs.js
@@ -89,7 +89,7 @@ App.SlaveAssignment.drugs = (function() {
 					r += `The psychosuppressants <span class="hotpink">reduce ${his} ability to question ${his} role</span> or <span class="mediumaquamarine">think independently.</span>`;
 					slave.devotion += 4;
 					slave.trust += 4;
-					if ((slave.intelligence >= -95)) {
+					if (slave.intelligence >= -95) {
 						r += ` They <span class="orange">negatively impact ${his} intelligence,</span> as well.`;
 						slave.intelligence -= 5;
 					}
@@ -163,7 +163,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth -= 1;
-				} else if ((slave.weight > 130)) {
+				} else if (slave.weight > 130) {
 					r += ` the enormous diet ${he} eats to maintain ${his} hugely fat body helps support growth, `;
 					if (slave.health.condition > -20) {
 						r += `and`;
@@ -171,7 +171,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth += 4;
-				} else if ((slave.weight > 30)) {
+				} else if (slave.weight > 30) {
 					r += ` the generous diet ${he} eats to maintain ${his} fat body helps support growth, `;
 					if (slave.health.condition > -20) {
 						r += `and`;
@@ -179,7 +179,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth += 2;
-				} else if ((slave.weight <= -30)) {
+				} else if (slave.weight <= -30) {
 					r += ` the diet ${he} is required to maintain to keep slim impedes growth, `;
 					if (slave.health.condition > -20) {
 						r += `and`;
@@ -196,7 +196,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth += 6;
-				} else if ((slave.health.condition > -20)) {
+				} else if (slave.health.condition > -20) {
 					r += ` ${his} health supports growth, `;
 					if (slave.boobs < 2000 || slave.boobs >= 10000) {
 						r += `and`;
@@ -208,7 +208,7 @@ App.SlaveAssignment.drugs = (function() {
 					growth--;
 				}
 				r += ` ${his}`;
-				if ((slave.boobs < 800)) {
+				if (slave.boobs < 800) {
 					r += ` small chest tends to grow rapidly.`;
 					growth += 10;
 					if ((slave.boobShape !== "saggy") && (slave.breastMesh !== 1)) {
@@ -217,7 +217,7 @@ App.SlaveAssignment.drugs = (function() {
 							slave.boobShape = "saggy";
 						}
 					}
-				} else if ((slave.boobs < 2000)) {
+				} else if (slave.boobs < 2000) {
 					r += ` modest tits tend to grow fast.`;
 					growth += 8;
 					if ((slave.boobShape !== "saggy") && (slave.breastMesh !== 1)) {
@@ -226,7 +226,7 @@ App.SlaveAssignment.drugs = (function() {
 							slave.boobShape = "saggy";
 						}
 					}
-				} else if ((slave.boobs < 5000)) {
+				} else if (slave.boobs < 5000) {
 					r += ` heavy boobs tend to grow modestly.`;
 					growth += 6;
 					if ((slave.boobShape !== "saggy") && (slave.breastMesh !== 1)) {
@@ -235,7 +235,7 @@ App.SlaveAssignment.drugs = (function() {
 							slave.boobShape = "saggy";
 						}
 					}
-				} else if ((slave.boobs < 10000)) {
+				} else if (slave.boobs < 10000) {
 					r += ` huge boobs tend to grow slowly.`;
 					growth += 4;
 					if ((slave.boobShape !== "saggy") && (slave.breastMesh !== 1)) {
@@ -287,7 +287,7 @@ App.SlaveAssignment.drugs = (function() {
 					growth *= 2;
 				}
 				r += ` injections of`;
-				if ((V.injectionUpgrade !== 0)) {
+				if (V.injectionUpgrade !== 0) {
 					r += ` advanced`;
 				}
 				r += ` growth hormones, right into ${his} breasts;</span>`;
@@ -315,7 +315,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `and`;
 					}
 					growth -= 2;
-				} else if ((slave.weight > 130)) {
+				} else if (slave.weight > 130) {
 					r += ` the enormous diet ${he} eats to maintain ${his} hugely fat body helps support growth, `;
 					if (slave.health.condition > -20) {
 						r += `and`;
@@ -323,7 +323,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth++;
-				} else if ((slave.weight > 30)) {
+				} else if (slave.weight > 30) {
 					r += ` the generous diet ${he} eats to maintain ${his} fat body helps support growth, `;
 					if (slave.health.condition > -20) {
 						r += `and`;
@@ -331,7 +331,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth++;
-				} else if ((slave.weight <= -30)) {
+				} else if (slave.weight <= -30) {
 					r += ` the diet ${he} is required to maintain to keep slim impedes growth, `;
 					if (slave.health.condition > -20) {
 						r += `and`;
@@ -348,7 +348,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth++;
-				} else if ((slave.health.condition > -20)) {
+				} else if (slave.health.condition > -20) {
 					r += ` ${his} health supports growth, `;
 					if (slave.boobs < 2000) {
 						r += `and`;
@@ -365,7 +365,7 @@ App.SlaveAssignment.drugs = (function() {
 					growth--;
 				}
 				r += ` ${his}`;
-				if ((slave.boobs < 800)) {
+				if (slave.boobs < 800) {
 					r += ` modest chest tends to grow quickly.`;
 					growth += 3;
 					if ((slave.boobShape !== "torpedo-shaped") && (slave.boobShape !== "wide-set") && (slave.breastMesh !== 1)) {
@@ -379,7 +379,7 @@ App.SlaveAssignment.drugs = (function() {
 							}
 						}
 					}
-				} else if ((slave.boobs < 2000)) {
+				} else if (slave.boobs < 2000) {
 					r += ` big tits tend to grow readily.`;
 					growth += 2;
 					if ((slave.boobShape === "saggy") || (slave.boobShape === "downward-facing") && (slave.breastMesh !== 1)) {
@@ -388,7 +388,7 @@ App.SlaveAssignment.drugs = (function() {
 							slave.boobShape = "normal";
 						}
 					}
-				} else if ((slave.boobs < 5000)) {
+				} else if (slave.boobs < 5000) {
 					r += ` heavy boobs tend to grow slowly.`;
 					growth++;
 					if ((slave.boobShape !== "saggy") && (slave.breastMesh !== 1)) {
@@ -511,7 +511,7 @@ App.SlaveAssignment.drugs = (function() {
 					growth *= 2;
 				}
 				r += ` injections of`;
-				if ((V.injectionUpgrade !== 0)) {
+				if (V.injectionUpgrade !== 0) {
 					r += ` advanced`;
 				}
 				r += ` growth hormones, right into ${his} buttocks;</span>`;
@@ -531,7 +531,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth -= 2;
-				} else if ((slave.weight > 130)) {
+				} else if (slave.weight > 130) {
 					r += ` the generous diet ${he} eats to maintain ${his} fat body helps support growth, `;
 					if (slave.health.condition > -20) {
 						r += `and`;
@@ -539,7 +539,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth += 3;
-				} else if ((slave.weight > 30)) {
+				} else if (slave.weight > 30) {
 					r += ` the generous diet ${he} eats to maintain ${his} fat body helps support growth, `;
 					if (slave.health.condition > -20) {
 						r += `and`;
@@ -547,7 +547,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth++;
-				} else if ((slave.weight <= -30)) {
+				} else if (slave.weight <= -30) {
 					r += ` the diet ${he} is required to maintain to keep slim impedes growth, `;
 					if (slave.health.condition > -20) {
 						r += `and`;
@@ -564,7 +564,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth++;
-				} else if ((slave.health.condition > -20)) {
+				} else if (slave.health.condition > -20) {
 					r += ` ${his} health supports growth, `;
 					if (slave.butt < 6) {
 						r += `and`;
@@ -644,7 +644,7 @@ App.SlaveAssignment.drugs = (function() {
 				slave.chem += 2;
 				growth = 0.5;
 				r += ` ${He} receives <span class="lime">direct injections of`;
-				if ((V.injectionUpgrade !== 0)) {
+				if (V.injectionUpgrade !== 0) {
 					r += ` advanced`;
 				}
 				r += ` hyper growth hormones, right into ${his} buttocks;</span>`;
@@ -664,7 +664,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth -= 0.2;
-				} else if ((slave.weight > 130)) {
+				} else if (slave.weight > 130) {
 					r += ` the enormous diet ${he} eats to maintain ${his} hugely fat body helps support growth, `;
 					if (slave.health.condition > -20) {
 						r += `and`;
@@ -672,7 +672,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth += 0.2;
-				} else if ((slave.weight > 30)) {
+				} else if (slave.weight > 30) {
 					r += ` the generous diet ${he} eats to maintain ${his} fat body helps support growth, `;
 					if (slave.health.condition > -20) {
 						r += `and`;
@@ -680,7 +680,7 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth += 0.1;
-				} else if ((slave.weight <= -30)) {
+				} else if (slave.weight <= -30) {
 					r += ` the diet ${he} is required to maintain to keep slim impedes growth, `;
 					if (slave.health.condition > -20) {
 						r += `and`;
@@ -697,16 +697,16 @@ App.SlaveAssignment.drugs = (function() {
 						r += `but`;
 					}
 					growth += 0.5;
-				} else if ((slave.health.condition > -20)) {
+				} else if (slave.health.condition > -20) {
 					r += ` ${his} health supports growth reasonably well, `;
-					if ((slave.butt < 10)) {
+					if (slave.butt < 10) {
 						r += `and`;
 					} else {
 						r += `but`;
 					}
 				} else {
 					r += ` ${his} poor health does not support steady growth, `;
-					if ((slave.butt < 10)) {
+					if (slave.butt < 10) {
 						r += `and`;
 					} else {
 						r += `but`;
@@ -714,13 +714,13 @@ App.SlaveAssignment.drugs = (function() {
 					growth -= 0.1;
 				}
 				r += ` ${his} `;
-				if ((slave.butt < 6)) {
+				if (slave.butt < 6) {
 					r += `modest rear tends to grow quickly.`;
 					growth += 1;
-				} else if ((slave.butt < 8)) {
+				} else if (slave.butt < 8) {
 					r += `gigantic behind tends to grow readily.`;
 					growth += 0.8;
-				} else if ((slave.butt < 10)) {
+				} else if (slave.butt < 10) {
 					r += `titanic jiggly butt tends to grow steadily.`;
 					growth += 0.6;
 				} else {
@@ -755,13 +755,13 @@ App.SlaveAssignment.drugs = (function() {
 				}
 				break;
 			case "lip injections":
-				if ((slave.lips <= 95)) {
+				if (slave.lips <= 95) {
 					r += ` <span class="lime">${His} lips swell rapidly from the injections of`;
-					if ((V.injectionUpgrade !== 0)) {
+					if (V.injectionUpgrade !== 0) {
 						r += ` advanced `;
 					}
 					r += ` growth agents`;
-					if ((slave.lips > 90)) {
+					if (slave.lips > 90) {
 						r += `, becoming a facepussy useless for anything other than oral sex.</span>`;
 					} else if ((slave.lips > 70) && (slave.lips <= 75)) {
 						r += `, and are now so large that ${he} can no longer enunciate properly.</span>`;
@@ -1029,7 +1029,7 @@ App.SlaveAssignment.drugs = (function() {
 				if (slave.geneMods.NCS === 1) {
 					growth += 30;
 				}
-				if ((slave.dick > 0)) {
+				if (slave.dick > 0) {
 					if (jsRandom(1, 100) > growth + (slave.dick * 5)) {
 						r += ` <span class="lime">${His} cock grows painfully,</span> becoming both longer and girthier.`;
 						slave.dick++;
@@ -1057,10 +1057,10 @@ App.SlaveAssignment.drugs = (function() {
 				}
 				break;
 			case "hyper penis enhancement":
-				if ((slave.dick > 0)) {
+				if (slave.dick > 0) {
 					r += `${He} receives <span class="lime">direct injections of hyper growth hormones, right into ${his} dick.</span> `;
 					slave.chem += 2;
-					if ((slave.dick >= 30)) {
+					if (slave.dick >= 30) {
 						r += `${His} cock is now so huge that further drug enhancement will not increase its size. <span class="yellow">${His} drug regimen has been ended.</span> `;
 						slave.drugs = "no drugs";
 					} else {
@@ -1077,7 +1077,7 @@ App.SlaveAssignment.drugs = (function() {
 				} else {
 					r += ` ${He} receives <span class="lime">direct injections of hyper growth hormones, right into ${his} clit.</span>`;
 					slave.chem += 2;
-					if ((slave.clit === 5)) {
+					if (slave.clit === 5) {
 						r += ` ${His} clit is now so huge that further drug enhancement will not increase its size. <span class="yellow">${His} drug regimen has been ended.</span>`;
 						slave.drugs = "no drugs";
 					} else {
@@ -1161,7 +1161,7 @@ App.SlaveAssignment.drugs = (function() {
 				}
 				break;
 			case "anti-aging cream":
-				if ((slave.visualAge <= 18)) {
+				if (slave.visualAge <= 18) {
 					r += ` ${His} outward age has regressed to the point that the creams will have little effect. Since there is no gain for further treatment, <span class="yellow">${his} drug regimen has been ended.</span>`;
 					slave.drugs = "no drugs";
 				} else {
@@ -1652,7 +1652,7 @@ App.SlaveAssignment.drugs = (function() {
 	 *
 	 */
 	function curativeEffects(slave) {
-		if ((slave.health.condition > 90)) {
+		if (slave.health.condition > 90) {
 			r += ` ${His} health is already outstanding and cannot be improved with further drug treatment. <span class="yellow">${His} drug regimen has defaulted to preventatives.</span>`;
 			slave.curatives = 1;
 		} else if ((slave.assignment === Job.REST || slave.assignment === Job.SPA) && (slave.fetish !== "mindbroken")) {
@@ -1762,7 +1762,7 @@ App.SlaveAssignment.drugs = (function() {
 					if (slave.health.condition < -50) {
 						r += ` It's difficult being so in such poor condition, and ${he} <span class="mediumorchid">resents you</span> for ignoring ${his} plight.`;
 						slave.devotion -= 2;
-					} else if ((slave.health.condition > 50)) {
+					} else if (slave.health.condition > 50) {
 						r += ` ${He} understands that ${he} owes ${his} near-perfect health to you and <span class="hotpink">believes</span> that life with you is better than freedom in some ways.`;
 						slave.trust += 1;
 					}
@@ -1801,7 +1801,7 @@ App.SlaveAssignment.drugs = (function() {
 		if (slave.addict > 0) {
 			if (slave.aphrodisiacs > 0) {
 				slave.addict += slave.aphrodisiacs;
-			} else if ((slave.addict < 2)) {
+			} else if (slave.addict < 2) {
 				r += ` ${He} has finally been <span class="cyan">weaned off aphrodisiacs.</span>`;
 				slave.addict = 0;
 			} else if (V.aphrodisiacUpgrade === 1) {
diff --git a/src/endWeek/saHormonesEffects.js b/src/endWeek/saHormonesEffects.js
index ad81b02db44b31b1b196503123d8754b5c5c8c85..ff172220dc46a88627fae5a9623ae6b88fd5e094 100644
--- a/src/endWeek/saHormonesEffects.js
+++ b/src/endWeek/saHormonesEffects.js
@@ -146,7 +146,7 @@ App.SlaveAssignment.hormonesEffects = (function() {
 			}
 
 			if (slave.hormoneBalance >= 350) {
-				if ((slave.geneMods.NCS === 1)) {
+				if (slave.geneMods.NCS === 1) {
 					if ((slave.shoulders + Math.abs(slave.shouldersImplant)) > -1 && slave.shoulders > -2 && jsRandom(1, 100) < (40 + (20 * V.hormoneUpgradePower))) {
 						r.push(`Feminine hormones team up with ${his} <span class="orange">NCS</span> to cause <span class="lime">${his} shoulders to shrink into a more childlike narrowness</span> than before.`);
 						slave.shoulders--;
diff --git a/src/endWeek/saServeYourOtherSlaves.js b/src/endWeek/saServeYourOtherSlaves.js
index 00589d7984c3c52ffc9d8c253f112047a8444b5f..8af5b173289fba69f893a6638348d64d17113f2d 100644
--- a/src/endWeek/saServeYourOtherSlaves.js
+++ b/src/endWeek/saServeYourOtherSlaves.js
@@ -1320,7 +1320,7 @@ App.SlaveAssignment.serveYourOtherSlaves = (function() {
 			} else {
 				if (slave.devotion < -20) {
 					r.push(`Since ${domName} loves cocks, even soft ones, ${subName} finds ${himself} being sucked, groped, and cruelly taunted for ${his} impotence. ${He} spends the week trying to avoid ${domName}'s abuse of ${his} poor useless penis. <span class="hotpink">${domName} enjoys having a nice dick right at hand,</span> even if it's only good for taunting and torture.`);
-				} else if ((slave.devotion <= 50)) {
+				} else if (slave.devotion <= 50) {
 					r.push(`Since ${domName} loves cocks, even soft ones, ${subName} finds ${himself} being sucked, groped, and toyed with. ${He} spends the week complying with ${domName}'s amusements. <span class="hotpink">${domName} enjoys having a nice dick right at hand,</span> even if it's only good as a soft toy.`);
 				} else {
 					r.push(`Since ${domName} loves cocks, even soft ones, ${subName} finds ${himself} being sucked, groped, and played with until ${he} comes. ${He} spends the week enjoying with ${domName}'s little games. <span class="hotpink">${domName} enjoys having a nice dick right at hand,</span> even if it's only good as a soft, dripping toy.`);
diff --git a/src/endWeek/saTakeClasses.js b/src/endWeek/saTakeClasses.js
index 78a6c8fdbc6b24e6e7bd688bed8c3f1cb5ec65a7..8bb6fd4d6f84ee6d1eb2ccb3adb5241971029a32 100644
--- a/src/endWeek/saTakeClasses.js
+++ b/src/endWeek/saTakeClasses.js
@@ -431,7 +431,7 @@ App.SlaveAssignment.takeClasses = (function() {
 	 */
 	function graduation(slave) {
 		if (slave.intelligenceImplant >= 15 && slave.assignment === Job.CLASSES) {
-			if ((slave.voice === 0) || (slave.accent <= 1) || ((V.schoolroomUpgradeLanguage === 0 && slave.accent <= 2))) {
+			if ((slave.voice === 0) || (slave.accent <= 1) || (V.schoolroomUpgradeLanguage === 0 && slave.accent <= 2)) {
 				if ((slave.skill.oral > 30) || (V.schoolroomUpgradeSkills === 0 && slave.skill.oral > 10)) {
 					if ((slave.skill.whoring > 30) || (V.schoolroomUpgradeSkills === 0 && slave.skill.whoring > 10)) {
 						if ((slave.skill.entertainment > 30) || (V.schoolroomUpgradeSkills === 0 && slave.skill.entertainment > 10)) {
diff --git a/src/endWeek/servantsQuartersReport.js b/src/endWeek/servantsQuartersReport.js
index 8d4355f1dbfde62ac8773b3b073299a7cb5cc68b..f17e25d68f296bac8cf2608ec4466ba58712d52e 100644
--- a/src/endWeek/servantsQuartersReport.js
+++ b/src/endWeek/servantsQuartersReport.js
@@ -14,11 +14,11 @@ App.EndWeek.servantsQuartersReport = function() {
 			S.Stewardess.devotion += devBonus;
 			if (S.Stewardess.health.condition < -80) {
 				improveCondition(S.Stewardess, 20);
-			} else if ((S.Stewardess.health.condition < -40)) {
+			} else if (S.Stewardess.health.condition < -40) {
 				improveCondition(S.Stewardess, 15);
-			} else if ((S.Stewardess.health.condition < 0)) {
+			} else if (S.Stewardess.health.condition < 0) {
 				improveCondition(S.Stewardess, 10);
-			} else if ((S.Stewardess.health.condition < 90)) {
+			} else if (S.Stewardess.health.condition < 90) {
 				improveCondition(S.Stewardess, 7);
 			}
 			if (S.Stewardess.devotion <= 60) {
diff --git a/src/endWeek/slaveAssignmentReport.js b/src/endWeek/slaveAssignmentReport.js
index 42febaf2799b162414e24d2868c8cd3d6c09aac6..6152cb903cb9366b997ba47ca5f4a423a738dcab 100644
--- a/src/endWeek/slaveAssignmentReport.js
+++ b/src/endWeek/slaveAssignmentReport.js
@@ -54,7 +54,7 @@ App.EndWeek.slaveAssignmentReport = function() {
 			V.averageDick += slave.dick, V.slavesWithWorkingDicks++;
 		}
 
-		if ((slave.lactation === 1)) {
+		if (slave.lactation === 1) {
 			slave.lactationDuration--;
 		}
 
@@ -233,14 +233,14 @@ App.EndWeek.slaveAssignmentReport = function() {
 				continue;
 			}
 
-			if ((V.headGirlTrainsHealth && slave.health.condition < -20)) {
+			if (V.headGirlTrainsHealth && slave.health.condition < -20) {
 				HGPossibleSlaves[0].push({ID: slave.ID, training: "health"});
 				continue;
 			}
 
 			if (slave.health.tired < 50) {
 				const hasParaphilia = (["abusive", "anal addict", "attention whore", "breast growth", "breeder", "cum addict", "malicious", "neglectful", "self hating"].includes(slave.sexualFlaw));
-				if ((V.headGirlTrainsParaphilias && hasParaphilia)) {
+				if (V.headGirlTrainsParaphilias && hasParaphilia) {
 					HGPossibleSlaves[1].push({ID: slave.ID, training: "paraphilia"});
 					continue;
 				}
@@ -263,19 +263,19 @@ App.EndWeek.slaveAssignmentReport = function() {
 					}
 				}
 
-				if ((V.headGirlTrainsObedience && slave.devotion <= 20 && slave.trust >= -20)) {
+				if (V.headGirlTrainsObedience && slave.devotion <= 20 && slave.trust >= -20) {
 					HGPossibleSlaves[4].push({ID: slave.ID, training: "obedience"});
 					continue;
 				}
 
-				if ((V.headGirlTrainsSkills)) {
-					if ((slave.skill.oral < S.HeadGirl.skill.oral)) {
+				if (V.headGirlTrainsSkills) {
+					if (slave.skill.oral < S.HeadGirl.skill.oral) {
 						HGPossibleSlaves[5].push({ID: slave.ID, training: "oral skill"});
 					} else if ((slave.skill.vaginal < S.HeadGirl.skill.vaginal) && (slave.vagina > 0) && (canDoVaginal(slave))) {
 						HGPossibleSlaves[5].push({ID: slave.ID, training: "fuck skill"});
 					} else if ((slave.skill.anal < S.HeadGirl.skill.anal) && (slave.anus > 0) && (canDoAnal(slave))) {
 						HGPossibleSlaves[5].push({ID: slave.ID, training: "anal skill"});
-					} else if ((slave.skill.whoring < S.HeadGirl.skill.whoring)) {
+					} else if (slave.skill.whoring < S.HeadGirl.skill.whoring) {
 						HGPossibleSlaves[5].push({ID: slave.ID, training: "whore skill"});
 					} else if ((slave.skill.entertainment < S.HeadGirl.skill.entertainment) && !isAmputee(slave)) {
 						HGPossibleSlaves[5].push({ID: slave.ID, training: "entertain skill"});
diff --git a/src/events/RESS/hotPC.js b/src/events/RESS/hotPC.js
index 08c8450995620b0e0b4672f7c9467fc7755d95d1..b47820c7b7e17f70623a48527698b6f1bb2b12c8 100644
--- a/src/events/RESS/hotPC.js
+++ b/src/events/RESS/hotPC.js
@@ -195,9 +195,9 @@ App.Events.RESSHotPC = class RESSHotPC extends App.Events.BaseEvent {
 						t.push("pussy,");
 					} else if (eventSlave.scrotum > 0 && eventSlave.balls > 1) {
 						t.push("testicles,");
-					} else if ((eventSlave.chastityPenis === 1)) {
+					} else if (eventSlave.chastityPenis === 1) {
 						t.push("caged dick,");
-					} else if ((eventSlave.chastityVagina)) {
+					} else if (eventSlave.chastityVagina) {
 						t.push("chastity belt,");
 					} else if (eventSlave.vagina === -1) {
 						t.push("perineum,");
diff --git a/src/events/RESS/moistPussy.js b/src/events/RESS/moistPussy.js
index 64ba06ba39609f48d1df82b3b0aaf41a8861f690..bdc38648f481e53e57e3c83fdac6950bfc8b8b89 100644
--- a/src/events/RESS/moistPussy.js
+++ b/src/events/RESS/moistPussy.js
@@ -105,11 +105,11 @@ App.Events.RESSMoistPussy = class RESSMoistPussy extends App.Events.BaseEvent {
 				t.push(`rippling`);
 			} else if (eventSlave.weight > 95) {
 				t.push(`soft`);
-			} else if ((eventSlave.muscles > 95)) {
+			} else if (eventSlave.muscles > 95) {
 				t.push(`ripped`);
-			} else if ((eventSlave.muscles > 30)) {
+			} else if (eventSlave.muscles > 30) {
 				t.push(`muscular`);
-			} else if ((eventSlave.muscles > 5)) {
+			} else if (eventSlave.muscles > 5) {
 				t.push(`toned`);
 			} else {
 				t.push(`soft`);
diff --git a/src/facilities/nursery/widgets/children/childSummary.js b/src/facilities/nursery/widgets/children/childSummary.js
index ec584e74c276ce20f4ac78fe80c3a171cf74c5c1..9a7d456deac2291a654b6329ddcfb960a24326f6 100644
--- a/src/facilities/nursery/widgets/children/childSummary.js
+++ b/src/facilities/nursery/widgets/children/childSummary.js
@@ -616,7 +616,7 @@ App.Facilities.Nursery.ChildSummary = function(child) {
 			r += `<strong>Cum+ Milk+</strong> `;
 		} else if (((child.dietCum === 0) && (child.dietMilk === 1))) {
 			r += `<strong>Milk+</strong> `;
-		} else if ((child.dietMilk === 2)) {
+		} else if (child.dietMilk === 2) {
 			r += `<strong>Milk++</strong> `;
 		}
 		r += `</span> `;
@@ -668,7 +668,7 @@ App.Facilities.Nursery.ChildSummary = function(child) {
 			r += `Diet base: <span class="cyan">Milk & Cum Added.</span> `;
 		} else if (((child.dietCum === 0) && (child.dietMilk === 1))) {
 			r += `Diet base: <span class="cyan">Milk Added.</span> `;
-		} else if ((child.dietMilk === 2)) {
+		} else if (child.dietMilk === 2) {
 			r += `Diet base: <span class="cyan">Milk Based.</span> `;
 		}
 	}
@@ -850,7 +850,7 @@ App.Facilities.Nursery.ChildSummary = function(child) {
 		}
 		r += `</span> `;
 		r += `<span class="mediumseagreen">`;
-		if ((child.bellyImplant > -1)) {
+		if (child.bellyImplant > -1) {
 			r += `<strong>Belly Imp</strong> `;
 		} else if (((child.preg <= -2) || (child.ovaries === 0)) && (child.vagina !== -1)) {
 			r += `<strong>Barr</strong> `;
@@ -930,7 +930,7 @@ App.Facilities.Nursery.ChildSummary = function(child) {
 		}
 		r += `</span> `;
 		r += `<span class="mediumseagreen">`;
-		if ((child.bellyImplant > -1)) {
+		if (child.bellyImplant > -1) {
 			r += `Belly Implant. `;
 		} else if (((child.preg <= -2) || (child.ovaries === 0)) && (child.vagina !== -1)) {
 			r += `Barren. `;
diff --git a/src/interaction/main/walkPast.js b/src/interaction/main/walkPast.js
index 928b2ebfc5f9720c2055057648c53724c516daab..df42292c98fe234d8017793c20cc0aa07501f8e7 100644
--- a/src/interaction/main/walkPast.js
+++ b/src/interaction/main/walkPast.js
@@ -7852,7 +7852,7 @@ globalThis.walkPast = (function() {
 					t += `${His} hermaphroditic genitalia tents out the front of ${his} overalls as ${he} moves.`;
 				} else if ((slave.dick !== 0) && (slave.vagina !== -1)) {
 					t += `${His} hermaphroditic genitalia sometimes bulges ${his} overalls as ${he} moves.`;
-				} else if ((slave.dick > 4)) {
+				} else if (slave.dick > 4) {
 					t += `${His} penis tents out the front of ${his} overalls as ${he} moves.`;
 				} else if (slave.dick !== 0) {
 					t += `${His} penis sometimes bulges ${his} overalls as ${he} moves.`;
@@ -8423,7 +8423,7 @@ globalThis.walkPast = (function() {
 					t += `${His} hermaphroditic genitalia tents out the front of ${his} overalls as ${he} moves.`;
 				} else if ((slave.dick !== 0) && (slave.vagina !== -1)) {
 					t += `${His} hermaphroditic genitalia sometimes bulges ${his} overalls as ${he} moves.`;
-				} else if ((slave.dick > 4)) {
+				} else if (slave.dick > 4) {
 					t += `${His} penis tents out the front of ${his} overalls as ${he} moves.`;
 				} else if (slave.dick !== 0) {
 					t += `${His} penis sometimes bulges ${his} overalls as ${he} moves.`;
diff --git a/src/js/DefaultRules.js b/src/js/DefaultRules.js
index e9cbf43142f18673cb0f9c15e200f5c75c3eac36..03933f6408ec545edbc53c56778d00b68c6b4daa 100644
--- a/src/js/DefaultRules.js
+++ b/src/js/DefaultRules.js
@@ -168,7 +168,7 @@ globalThis.DefaultRules = (function() {
 	 */
 	function AssignJobToSlave(slave, rule) {
 		// place slave on assignment defined by the rule
-		if ((rule.setAssignment !== undefined && rule.setAssignment !== null)) {
+		if (rule.setAssignment !== undefined && rule.setAssignment !== null) {
 			if (((rule.setAssignment === Job.CHOICE && !slave.choosesOwnAssignment) || rule.setAssignment !== slave.assignment)) {
 				r += getAssignmentDescription({rule, slave, assignmentResult: "success"});
 				assignJob(slave, rule.setAssignment);
@@ -184,7 +184,7 @@ globalThis.DefaultRules = (function() {
 		// apply clothes to slave
 		if ((rule.clothes !== undefined) && (rule.clothes !== null)) {
 			if ((rule.clothes === "choosing her own clothes")) {
-				if ((slave.choosesOwnClothes === 0)) {
+				if (slave.choosesOwnClothes === 0) {
 					slave.clothes = "choosing her own clothes";
 					slave.choosesOwnClothes = 1;
 					r += `<br>${slave.slaveName} is now allowed to choose ${his} own clothes.`;
@@ -669,7 +669,7 @@ globalThis.DefaultRules = (function() {
 	 */
 	function ProcessDickAccessories(slave, rule) {
 		// apply dick accessories to slave
-		if ((slave.dick > 0)) {
+		if (slave.dick > 0) {
 			if (slave.anus === 0) {
 				if ((rule.aVirginDickAccessory !== undefined) && (rule.aVirginDickAccessory !== null)) {
 					if (slave.dickAccessory !== rule.aVirginDickAccessory) {
@@ -827,7 +827,7 @@ globalThis.DefaultRules = (function() {
 				switch (slave.buttplug) {
 					case "huge plug":
 						r += `<br>${slave.slaveName} is an anal virgin and has been given a `;
-						if ((slave.anus >= 2)) {
+						if (slave.anus >= 2) {
 							r += `massive plug to permanently gape ${his} asshole.`;
 						} else {
 							slave.buttplug = "large plug";
@@ -888,7 +888,7 @@ globalThis.DefaultRules = (function() {
 				switch (slave.buttplug) {
 					case "huge plug":
 						r += `<br>${slave.slaveName} has been given a `;
-						if ((slave.anus >= 2)) {
+						if (slave.anus >= 2) {
 							r += `massive plug to permanently gape ${his} asshole.`;
 						} else {
 							slave.buttplug = "large plug";
@@ -1685,7 +1685,7 @@ globalThis.DefaultRules = (function() {
 						}
 					}
 				} else if ((rule.diet === "cum production")) {
-					if ((slave.balls > 0)) {
+					if (slave.balls > 0) {
 						if ((slave.diet !== "cum production")) {
 							slave.diet = "cum production";
 							r += `<br>${slave.slaveName} has been put on a diet to promote cum production.`;
@@ -1718,7 +1718,7 @@ globalThis.DefaultRules = (function() {
 			if (slave.curatives !== rule.curatives) {
 				if (rule.curatives === 2) {
 					if (slave.health.condition > 100) {
-						if ((slave.curatives !== 1)) {
+						if (slave.curatives !== 1) {
 							r += `<br>${slave.slaveName} has been put on preventatives, since curatives cannot improve ${his} health further.`;
 							slave.curatives = 1;
 						}
@@ -1752,8 +1752,8 @@ globalThis.DefaultRules = (function() {
 	 * @param {App.RA.RuleSetters} rule
 	 */
 	function ProcessPenisHormones(slave, rule) {
-		if ((slave.dick > 0)) {
-			if ((slave.balls === 0)) {
+		if (slave.dick > 0) {
+			if (slave.balls === 0) {
 				if ((rule.gelding !== undefined) && (rule.gelding !== null)) {
 					if (slave.hormones !== rule.gelding) {
 						const _oldHormones = slave.hormones;
@@ -1766,12 +1766,12 @@ globalThis.DefaultRules = (function() {
 						}
 					}
 				}
-			} else if ((slave.balls > 0)) {
+			} else if (slave.balls > 0) {
 				if ((rule.XY !== undefined) && (rule.XY !== null)) {
 					if (slave.hormones !== rule.XY) {
-						if ((slave.assignment !== Job.RECRUITER)) {
-							if ((slave.assignment !== Job.WARDEN)) {
-								if ((slave.assignment !== Job.MADAM)) {
+						if (slave.assignment !== Job.RECRUITER) {
+							if (slave.assignment !== Job.WARDEN) {
+								if (slave.assignment !== Job.MADAM) {
 									const _oldHormones = slave.hormones;
 									slave.hormones = rule.XY;
 									if (slave.indentureRestrictions >= 2) {
@@ -2356,7 +2356,7 @@ globalThis.DefaultRules = (function() {
 	function ProcessPiercings(slave, rule) {
 		if (rule.nipplesPiercing !== undefined && (rule.nipplesPiercing !== null)) {
 			if (slave.nipplesPiercing !== rule.nipplesPiercing) {
-				if ((rule.nipplesPiercing === 0)) {
+				if (rule.nipplesPiercing === 0) {
 					slave.nipplesPiercing = 0;
 					r += `<br>${slave.slaveName}'s nipple piercings have been removed.`;
 				} else if (slave.nipples !== "fuckable") {
@@ -2371,7 +2371,7 @@ globalThis.DefaultRules = (function() {
 
 		if (rule.areolaePiercing !== undefined && (rule.areolaePiercing !== null)) {
 			if (slave.areolaePiercing !== rule.areolaePiercing) {
-				if ((rule.areolaePiercing === 0)) {
+				if (rule.areolaePiercing === 0) {
 					slave.areolaePiercing = 0;
 					r += `<br>${slave.slaveName}'s areolae piercings have been removed.`;
 				} else {
@@ -2384,7 +2384,7 @@ globalThis.DefaultRules = (function() {
 
 		if (rule.clitPiercing !== undefined && (rule.clitPiercing !== null)) {
 			if (slave.clitPiercing !== rule.clitPiercing) {
-				if ((rule.clitPiercing === 0)) {
+				if (rule.clitPiercing === 0) {
 					slave.clitPiercing = 0;
 					if (slave.dick > 0) {
 						r += `<br>${slave.slaveName}'s frenulum piercing has been removed.`;
@@ -2408,10 +2408,10 @@ globalThis.DefaultRules = (function() {
 			}
 		}
 
-		if ((slave.vagina !== -1)) {
+		if (slave.vagina !== -1) {
 			if (rule.vaginaPiercing !== undefined && (rule.vaginaPiercing !== null)) {
 				if (slave.vaginaPiercing !== rule.vaginaPiercing) {
-					if ((rule.vaginaPiercing === 0)) {
+					if (rule.vaginaPiercing === 0) {
 						slave.vaginaPiercing = 0;
 						r += `<br>${slave.slaveName}'s labia piercings have been removed.`;
 					} else {
@@ -2423,10 +2423,10 @@ globalThis.DefaultRules = (function() {
 			}
 		}
 
-		if ((slave.dick > 0)) {
+		if (slave.dick > 0) {
 			if (rule.dickPiercing !== undefined && (rule.dickPiercing !== null)) {
 				if (slave.dickPiercing !== rule.dickPiercing) {
-					if ((rule.dickPiercing === 0)) {
+					if (rule.dickPiercing === 0) {
 						slave.dickPiercing = 0;
 						r += `<br>${slave.slaveName}'s shaft piercings have been removed.`;
 					} else {
@@ -2440,7 +2440,7 @@ globalThis.DefaultRules = (function() {
 
 		if (rule.anusPiercing !== undefined && (rule.anusPiercing !== null)) {
 			if (slave.anusPiercing !== rule.anusPiercing) {
-				if ((rule.anusPiercing === 0)) {
+				if (rule.anusPiercing === 0) {
 					slave.anusPiercing = 0;
 					r += `<br>${slave.slaveName}'s asshole piercings have been removed.`;
 				} else {
@@ -2453,7 +2453,7 @@ globalThis.DefaultRules = (function() {
 
 		if (rule.lipsPiercing !== undefined && (rule.lipsPiercing !== null)) {
 			if (slave.lipsPiercing !== rule.lipsPiercing) {
-				if ((rule.lipsPiercing === 0)) {
+				if (rule.lipsPiercing === 0) {
 					slave.lipsPiercing = 0;
 					r += `<br>${slave.slaveName}'s lip piercings have been removed.`;
 				} else {
@@ -2466,7 +2466,7 @@ globalThis.DefaultRules = (function() {
 
 		if (rule.tonguePiercing !== undefined && (rule.tonguePiercing !== null)) {
 			if (slave.tonguePiercing !== rule.tonguePiercing) {
-				if ((rule.tonguePiercing === 0)) {
+				if (rule.tonguePiercing === 0) {
 					slave.tonguePiercing = 0;
 					r += `<br>${slave.slaveName}'s tongue piercings have been removed.`;
 				} else {
@@ -2479,7 +2479,7 @@ globalThis.DefaultRules = (function() {
 
 		if (rule.earPiercing !== undefined && (rule.earPiercing !== null)) {
 			if (slave.earPiercing !== rule.earPiercing) {
-				if ((rule.earPiercing === 0)) {
+				if (rule.earPiercing === 0) {
 					slave.earPiercing = 0;
 					r += `<br>${slave.slaveName}'s ear piercings have been removed.`;
 				} else {
@@ -2492,7 +2492,7 @@ globalThis.DefaultRules = (function() {
 
 		if (rule.nosePiercing !== undefined && (rule.nosePiercing !== null)) {
 			if (slave.nosePiercing !== rule.nosePiercing) {
-				if ((rule.nosePiercing === 0)) {
+				if (rule.nosePiercing === 0) {
 					slave.nosePiercing = 0;
 					r += `<br>${slave.slaveName}'s nose piercing has been removed.`;
 				} else {
@@ -2505,7 +2505,7 @@ globalThis.DefaultRules = (function() {
 
 		if (rule.eyebrowPiercing !== undefined && (rule.eyebrowPiercing !== null)) {
 			if (slave.eyebrowPiercing !== rule.eyebrowPiercing) {
-				if ((rule.eyebrowPiercing === 0)) {
+				if (rule.eyebrowPiercing === 0) {
 					slave.eyebrowPiercing = 0;
 					r += `<br>${slave.slaveName}'s eyebrow piercings have been removed.`;
 				} else {
@@ -2518,7 +2518,7 @@ globalThis.DefaultRules = (function() {
 
 		if (rule.navelPiercing !== undefined && (rule.navelPiercing !== null)) {
 			if (slave.navelPiercing !== rule.navelPiercing) {
-				if ((rule.navelPiercing === 0)) {
+				if (rule.navelPiercing === 0) {
 					slave.navelPiercing = 0;
 					r += `<br>${slave.slaveName}'s navel piercing have been removed.`;
 				} else {
@@ -2531,7 +2531,7 @@ globalThis.DefaultRules = (function() {
 
 		if (rule.corsetPiercing !== undefined && (rule.corsetPiercing !== null)) {
 			if (slave.corsetPiercing !== rule.corsetPiercing) {
-				if ((rule.corsetPiercing === 0)) {
+				if (rule.corsetPiercing === 0) {
 					slave.corsetPiercing = 0;
 					r += `<br>${slave.slaveName}'s corset piercings have been removed.`;
 				} else {
@@ -2548,7 +2548,7 @@ globalThis.DefaultRules = (function() {
 	 * @param {App.RA.RuleSetters} rule
 	 */
 	function ProcessSmartPiercings(slave, rule) {
-		if ((slave.clitPiercing === 3)) {
+		if (slave.clitPiercing === 3) {
 			let _used = 0;
 			if (rule.clitSetting !== undefined && (rule.clitSetting !== null)) {
 				if (slave.clitSetting !== rule.clitSetting) {
@@ -2642,7 +2642,7 @@ globalThis.DefaultRules = (function() {
 			}
 		}
 
-		if ((slave.dick > 0)) {
+		if (slave.dick > 0) {
 			if (rule.dickTat !== undefined && (rule.dickTat !== null)) {
 				if (slave.dickTat !== rule.dickTat) {
 					slave.dickTat = rule.dickTat;
@@ -2745,8 +2745,8 @@ globalThis.DefaultRules = (function() {
 				}
 			}
 		}
-		if ((rule.autoBrand === 1)) {
-			if ((slave.health.condition > -20)) {
+		if (rule.autoBrand === 1) {
+			if (slave.health.condition > -20) {
 				let brandPlace = "";
 				let left;
 				let right;
@@ -2884,7 +2884,7 @@ globalThis.DefaultRules = (function() {
 					slave.brand[right] = rule.brandDesign;
 					healthDamage(slave, 20);
 					r += `<br>${slave.slaveName} has been branded on both ${rule.brandTarget}, with <span class="trust dec">fear</span>${slave.devotion < 18 ? `, <span class="devotion dec">regard,</span>` : ``} and <span class="red">health</span> consequences.`;
-					if ((slave.devotion < 18)) {
+					if (slave.devotion < 18) {
 						slave.devotion -= 10;
 					}
 					slave.trust -= 10;
@@ -2915,7 +2915,7 @@ globalThis.DefaultRules = (function() {
 	/** @param {App.Entity.SlaveState} slave */
 	function ProcessPorn(slave, rule) {
 		if ((rule.pornFameSpending !== undefined) && (rule.pornFameSpending !== null)) {
-			if ((slave.porn.prestige < 3)) {
+			if (slave.porn.prestige < 3) {
 				if (slave.porn.spending !== rule.pornFameSpending) {
 					slave.porn.spending = rule.pornFameSpending;
 					r += `<br>${slave.slaveName}'s porn publicity has been corrected.`;
diff --git a/src/js/pregJS.js b/src/js/pregJS.js
index 1bcec8237648c669fcf309e101b18aa885ef1829..ff2318cf4f9eac1d2555a0d80ab34c416c1630ae 100644
--- a/src/js/pregJS.js
+++ b/src/js/pregJS.js
@@ -144,7 +144,7 @@ globalThis.setPregType = function(actor) {
 				if (actor.diet === "fertility") {
 					fertilityStack += 0.3;
 				}
-				if (V.masterSuitePregnancyFertilitySupplements === 1 && ((actor.assignment === Job.MASTERSUITE || actor.assignment === Job.CONCUBINE))) {
+				if (V.masterSuitePregnancyFertilitySupplements === 1 && (actor.assignment === Job.MASTERSUITE || actor.assignment === Job.CONCUBINE)) {
 					fertilityStack += 0.5;
 				}
 				if (V.reproductionFormula === 1 && (V.week - actor.weekAcquired > 0)) {
@@ -206,7 +206,7 @@ globalThis.setPregType = function(actor) {
 					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 1]);
 					fertilityStack++;
 				}
-				if (V.masterSuitePregnancyFertilitySupplements === 1 && ((actor.assignment === Job.MASTERSUITE || actor.assignment === Job.CONCUBINE))) {
+				if (V.masterSuitePregnancyFertilitySupplements === 1 && (actor.assignment === Job.MASTERSUITE || actor.assignment === Job.CONCUBINE)) {
 					ovum += jsEither([0, 0, 0, 1, 1, 2, 2, 2, 3, 3]);
 					fertilityStack++;
 					fertilityStack++;
@@ -272,7 +272,7 @@ globalThis.setPregType = function(actor) {
 					ovum += jsRandom(4, 10);
 					fertilityStack += 6;
 				}
-				if (V.masterSuitePregnancyFertilitySupplements === 1 && ((actor.assignment === Job.MASTERSUITE || actor.assignment === Job.CONCUBINE))) {
+				if (V.masterSuitePregnancyFertilitySupplements === 1 && (actor.assignment === Job.MASTERSUITE || actor.assignment === Job.CONCUBINE)) {
 					ovum += jsRandom(8, 16);
 					fertilityStack += 10;
 				}
@@ -339,7 +339,7 @@ globalThis.setPregType = function(actor) {
 					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
 					fertilityStack++;
 				}
-				if (V.masterSuitePregnancyFertilitySupplements === 1 && ((actor.assignment === Job.MASTERSUITE || actor.assignment === Job.CONCUBINE))) {
+				if (V.masterSuitePregnancyFertilitySupplements === 1 && (actor.assignment === Job.MASTERSUITE || actor.assignment === Job.CONCUBINE)) {
 					ovum += jsEither([0, 0, 0, 1, 1, 2, 2, 2, 3, 3]);
 					fertilityStack++;
 					fertilityStack++;
diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js
index 08b28b727a18b361bc27156808b331082caa3ffc..6ca6865a33827e99e57f3680d694e653b1b21724 100644
--- a/src/js/slaveCostJS.js
+++ b/src/js/slaveCostJS.js
@@ -398,7 +398,7 @@ globalThis.BeautyArray = (function() {
 			if (slave.intelligenceImplant >= 30) {
 				adjustBeauty("Highly Educated: Professionalism", (5 + (arcology.FSSlaveProfessionalism / 10))); /* 15 */
 			} else if (slave.intelligenceImplant >= 15) {
-				adjustBeauty("Educated: Professionalism", ((arcology.FSSlaveProfessionalism / 20))); /* 5 */
+				adjustBeauty("Educated: Professionalism", (arcology.FSSlaveProfessionalism / 20)); /* 5 */
 			} else {
 				adjustBeauty("Low Education/Miseducated: Professionalism", -(((arcology.FSSlaveProfessionalism / 10) * 3) - slave.intelligenceImplant)); /* -30 */
 			}
@@ -823,7 +823,7 @@ globalThis.BeautyArray = (function() {
 			} else if (slave.weight <= 10) {
 				/* no effect */
 			} else if (slave.weight <= 30) {
-				adjustBeauty("Weight: Hedonistic Decadence", ((slave.weight / 2))); /* 15 */
+				adjustBeauty("Weight: Hedonistic Decadence", (slave.weight / 2)); /* 15 */
 			} else if (slave.weight <= 95) {
 				adjustBeauty("Weight: Hedonistic Decadence", (15 + (slave.weight / 7))); /* 28.5 */
 			} else if (slave.weight <= 130) {
@@ -1185,7 +1185,7 @@ globalThis.BeautyArray = (function() {
 			}
 		}
 		if (slave.butt >= 5) {
-			adjustBeauty("Butt: Futa Law: Big", ((slave.butt - 5))); /* 15 */
+			adjustBeauty("Butt: Futa Law: Big", (slave.butt - 5)); /* 15 */
 		}
 	}
 
diff --git a/src/js/slaveSummaryWidgets.js b/src/js/slaveSummaryWidgets.js
index 89fd7328444758968d5d719ebcea2ff4aa9f67b2..748d642bc296921f0e4413b398d51bbfb108a9c6 100644
--- a/src/js/slaveSummaryWidgets.js
+++ b/src/js/slaveSummaryWidgets.js
@@ -201,7 +201,7 @@ App.UI.SlaveSummaryRenderers = function() {
 			}
 
 			styles = ["mediumseagreen", "strong"];
-			if ((slave.bellyImplant > -1)) {
+			if (slave.bellyImplant > -1) {
 				makeSpan(c, "Belly Imp", styles);
 			} else if (((slave.preg <= -2) || (slave.ovaries === 0)) && (slave.vagina !== -1)) {
 				makeSpan(c, "Barr", styles);
@@ -520,7 +520,7 @@ App.UI.SlaveSummaryRenderers = function() {
 				makeSpan(c, "Male hormones.", "lightsalmon");
 			}
 			let styles = "mediumseagreen";
-			if ((slave.bellyImplant > -1)) {
+			if (slave.bellyImplant > -1) {
 				makeSpan(c, "Belly Implant.", styles);
 			} else if ((slave.preg <= -2) && (slave.ovaries === 1 || slave.mpreg === 1)) {
 				makeSpan(c, "Barren.", styles);
diff --git a/src/npc/descriptions/belly/belly.js b/src/npc/descriptions/belly/belly.js
index f03fdb87d533db52714309dc48b0fa724fadc86b..7ce669c9e3b6f794bbb196ed7b395639178cbf90 100644
--- a/src/npc/descriptions/belly/belly.js
+++ b/src/npc/descriptions/belly/belly.js
@@ -3209,11 +3209,11 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly but do little to hide its imposing mass as it lewdly distends between them.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly lewdly parts ${his} poorly covered breasts, allowing the bulging mass the room it demands.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, allowing the bulging mass the room it demands.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly, allowing the bulging mass the room it demands.`);
@@ -3222,11 +3222,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} unfathomable, hyper-swollen, implant-filled belly but do little to hide its imposing mass as it lewdly distends between them.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly lewdly parts ${his} poorly covered breasts, allowing the bulging mass the room it demands.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} unfathomable, hyper-swollen, implant-filled belly, allowing the bulging mass the room it demands.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen, implant-filled belly, allowing the bulging mass the room it demands.`);
@@ -3235,11 +3235,11 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} unfathomable, hyper-swollen pregnant belly but do little to hide its imposing mass as it lewdly distends between them.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits. Every motion ${his} brood makes threatens to displace ${his} breasts.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly lewdly parts ${his} poorly covered breasts, allowing the bulging mass the room it desperately needs.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} unfathomable, hyper-swollen pregnant belly, allowing the bulging mass the room it desperately needs.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} unfathomable, hyper-swollen pregnant belly, allowing the bulging mass the room it desperately needs.`);
@@ -3250,11 +3250,11 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} monolithic ${slave.inflationType}-filled belly but do little to hide its imposing mass as it lewdly distends between them.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly lewdly parts ${his} poorly covered breasts allowing the bulging mass it demands.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} monolithic ${slave.inflationType}-filled belly allowing the bulging mass the room it demands.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic ${slave.inflationType}-filled belly allowing the bulging mass the room it demands.`);
@@ -3263,11 +3263,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} monolithic implant-filled belly but do little to hide its imposing mass as it lewdly distends between them.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic implant-filled belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s monolithic implant-filled belly lewdly parts ${his} poorly covered breasts allowing the bulging mass it demands.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} monolithic implant-filled belly allowing the bulging mass the room it demands.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic implant-filled belly allowing the bulging mass the room it demands.`);
@@ -3276,11 +3276,11 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} monolithic pregnant belly but do little to hide its imposing mass as it lewdly distends between them.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic pregnant belly adds even more strain to ${his} struggling oversized sweater as it lewdly distends between ${his} tits. Every motion ${his} brood makes threaten to displaces ${his} breasts.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s monolithic pregnant belly lewdly parts ${his} poorly covered breasts allowing the bulging mass the room it desperately seeks.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} monolithic pregnant belly allowing the bulging mass the room it desperately seeks.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} monolithic pregnant belly allowing the bulging mass the room it desperately seeks.`);
@@ -3291,11 +3291,11 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} titanic ${slave.inflationType}-filled belly but do little to hide its size as it forces its way between them.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly parts ${his} poorly covered breasts.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} titanic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic ${slave.inflationType}-filled belly.`);
@@ -3304,11 +3304,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} titanic implant-filled belly but do little to hide its size as it forces its way between them.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic implant-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} poorly covered breasts.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} titanic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic implant-filled belly.`);
@@ -3317,11 +3317,11 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} titanic pregnant belly but do little to hide its size and shape as it forces its way between them.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic pregnant belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits. Every motion ${his} brood makes threaten to displaces ${his} breasts.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s titanic pregnant belly parts ${his} poorly covered breasts allowing the squirming mass to bulge freely.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} titanic pregnant belly allowing the squirming mass to bulge freely.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic pregnant belly allowing the squirming mass to bulge freely.`);
@@ -3332,11 +3332,11 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} gigantic ${slave.inflationType}-filled belly but do little to hide its size as it forces its way between them.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly parts ${his} poorly covered breasts.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} gigantic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic ${slave.inflationType}-filled belly.`);
@@ -3345,11 +3345,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} gigantic implant-filled belly but do little to hide its size as it forces its way between them.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic implant-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} poorly covered breasts.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} gigantic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic implant-filled belly.`);
@@ -3358,11 +3358,11 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} gigantic pregnant belly but do little to hide its size as it forces its way between them.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic pregnant belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s gigantic pregnant belly parts ${his} poorly covered breasts.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} gigantic pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic pregnant belly.`);
@@ -3373,11 +3373,11 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} massive ${slave.inflationType}-filled belly but do little to hide its size.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly parts ${his} poorly covered breasts.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} massive ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} massive ${slave.inflationType}-filled belly.`);
@@ -3386,11 +3386,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} massive implant-filled belly but do little to hide its size.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive implant-filled belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s massive implant-filled belly parts ${his} poorly covered breasts.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} massive implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} massive implant-filled belly.`);
@@ -3399,11 +3399,11 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} massive pregnant belly but do little to hide its size.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive pregnant belly adds even more strain to ${his} struggling oversized sweater as it forces its way between ${his} tits.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s massive pregnant belly parts ${his} poorly covered breasts.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} massive pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} massive pregnant belly.`);
@@ -3414,11 +3414,11 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant ${slave.inflationType}-filled belly allowing the firm dome to part ${his} tits.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant ${slave.inflationType}-filled belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} giant ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} giant ${slave.inflationType}-filled belly.`);
@@ -3427,11 +3427,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant implant-filled belly allowing the firm dome to part ${his} tits.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant implant-filled belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} giant implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} giant implant-filled belly.`);
@@ -3440,11 +3440,11 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant pregnant belly allowing the firm dome to part ${his} tits.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant pregnant belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} giant pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} giant pregnant belly.`);
@@ -3455,11 +3455,11 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant ${slave.inflationType}-filled belly allowing the rounded dome to part ${his} tits.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant ${slave.inflationType}-filled belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} giant ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} giant ${slave.inflationType}-filled belly.`);
@@ -3467,11 +3467,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant implant-filled belly allowing the rounded dome to part ${his} tits.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant implant-filled belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} giant implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} giant implant-filled belly.`);
@@ -3479,11 +3479,11 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} giant pregnant belly allowing the firm dome to part ${his} tits.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits and adds even more strain to ${his} struggling oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} giant pregnant belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater rests atop ${his} giant pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse rests atop ${his} giant pregnant belly.`);
@@ -3494,11 +3494,11 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge ${slave.inflationType}-filled belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge ${slave.inflationType}-filled belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater can no longer contain ${his} ${slave.inflationType}-filled pregnant belly and merely rests atop it.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse can no longer contain ${his} ${slave.inflationType}-filled pregnant belly and merely rests atop it.`);
@@ -3506,11 +3506,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge implant-filled belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge implant-filled belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater can no longer contain ${his} implant-filled pregnant belly and merely rests atop it.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse can no longer contain ${his} implant-filled pregnant belly and merely rests atop it.`);
@@ -3518,11 +3518,11 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge pregnant belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge pregnant belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater can no longer contain ${his} huge pregnant belly and merely rests atop it.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse can no longer contain ${his} huge pregnant belly and merely rests atop it.`);
@@ -3531,11 +3531,11 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 190) {
 					if (slave.boobs > 24000) {
 						r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} massively fat belly; even then, they can barely conceal it themselves.`);
-					} else if ((slave.boobs > 12000)) {
+					} else if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s massively fat belly adds even more strain to ${his} struggling oversized sweater.`);
-					} else if ((slave.boobs > 8000)) {
+					} else if (slave.boobs > 8000) {
 						r.push(`${slave.slaveName}'s oversized breasts ${his} massively fat belly hang free.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s sweater is pulled tight over the top half of ${his} massively fat belly. The bottom half is allowed to jiggle freely.`);
 					} else {
 						r.push(`${slave.slaveName}'s blouse is pulled taut just trying to cover the top of ${his} massively fat belly; the rest is allowed to jiggle freely.`);
@@ -3544,11 +3544,11 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a huge empathy belly") {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge pregnant belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge pregnant belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`);
@@ -3556,11 +3556,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge ${slave.inflationType}-filled belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge ${slave.inflationType}-filled belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge ${slave.inflationType}-filled belly; it barely reaches ${his} popped navel.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge ${slave.inflationType}-filled belly; it barely reaches ${his} popped navel.`);
@@ -3568,11 +3568,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge implant-filled belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge implant-filled belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge implant-filled belly; it barely reaches ${his} popped navel.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge implant-filled belly; it barely reaches ${his} popped navel.`);
@@ -3580,11 +3580,11 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge pregnant belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge pregnant belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge pregnant belly; it barely reaches ${his} popped navel.`);
@@ -3594,11 +3594,11 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a large empathy belly") {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} big pregnant belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} big pregnant belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} big pregnant belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} big pregnant belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`);
@@ -3606,11 +3606,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} hugely swollen belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s hugely swollen belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} hugely swollen belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} hugely swollen belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} hugely swollen belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`);
@@ -3618,11 +3618,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} big implant-filled belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big implant-filled belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} big implant-filled belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} big implant-filled belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} big implant-filled belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`);
@@ -3630,11 +3630,11 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} big pregnant belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} big pregnant belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} big pregnant belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} big pregnant belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`);
@@ -3643,11 +3643,11 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 160) {
 					if (slave.boobs > 24000) {
 						r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} hugely fat belly, though they do a fine job of hiding it themselves.`);
-					} else if ((slave.boobs > 12000)) {
+					} else if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s hugely fat belly is barely hidden by ${his} massive tits and oversized sweater.`);
-					} else if ((slave.boobs > 8000)) {
+					} else if (slave.boobs > 8000) {
 						r.push(`${slave.slaveName}'s oversized breasts ${his} hugely fat belly hang free.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s sweater is pulled tight over ${his} hugely fat belly. The bottom of which hangs out from under it.`);
 					} else {
 						r.push(`${slave.slaveName}'s blouse is pulled tight over the top half of ${his} hugely fat belly; the rest is allowed to jiggle freely.`);
@@ -3655,11 +3655,11 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 130) {
 					if (slave.boobs > 24000) {
 						r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} big fat belly, though they do a fine job of hiding it themselves.`);
-					} else if ((slave.boobs > 12000)) {
+					} else if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s fat belly is hidden by ${his} massive tits and oversized sweater.`);
-					} else if ((slave.boobs > 8000)) {
+					} else if (slave.boobs > 8000) {
 						r.push(`${slave.slaveName}'s oversized breasts ${his} big fat belly hang free.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s sweater is pulled tight over ${his} big fat belly. The bottom of which hangs out and jiggles freely from under it.`);
 					} else {
 						r.push(`${slave.slaveName}'s blouse is pulled tight over most of ${his} big fat belly; the rest is allowed to jiggle freely.`);
@@ -3668,11 +3668,11 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a medium empathy belly") {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} pregnant belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} pregnant belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} pregnant belly. ${His} popped navel forms a small tent in material.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} pregnant belly. ${His} popped navel forms a small tent in ${his} shirt.`);
@@ -3680,11 +3680,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} jiggling ${slave.inflationType}-filled belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} jiggling ${slave.inflationType}-filled belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} jiggling ${slave.inflationType}-filled belly. ${His} popped navel forms a small tent in material.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} jiggling ${slave.inflationType}-filled belly. ${His} popped navel forms a small tent in ${his} shirt.`);
@@ -3692,11 +3692,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} implant-filled belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-filled belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} implant-filled belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} implant-filled belly. ${His} popped navel forms a small tent in material.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} implant-filled belly. ${His} popped navel forms a small tent in ${his} shirt.`);
@@ -3704,11 +3704,11 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} pregnant belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} pregnant belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} pregnant belly. ${His} popped navel forms a small tent in material.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} pregnant belly. ${His} popped navel forms a small tent in ${his} shirt.`);
@@ -3717,11 +3717,11 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 95) {
 					if (slave.boobs > 24000) {
 						r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} fat belly, though they do a fine job of hiding it themselves.`);
-					} else if ((slave.boobs > 12000)) {
+					} else if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s fat belly is hidden by ${his} massive tits and oversized sweater.`);
-					} else if ((slave.boobs > 8000)) {
+					} else if (slave.boobs > 8000) {
 						r.push(`${slave.slaveName}'s oversized breasts ${his} fat belly hang free.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s sweater is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`);
 					} else {
 						r.push(`${slave.slaveName}'s blouse is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`);
@@ -3730,11 +3730,11 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a small empathy belly") {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} small pregnant belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s small pregnant belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} small pregnant belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater bulges with ${his} small pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse bulges with ${his} small pregnant belly.`);
@@ -3742,11 +3742,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} ${slave.inflationType}-swollen belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} ${slave.inflationType}-swollen belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater bulges with ${his} ${slave.inflationType}-swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse bulges with ${his} ${slave.inflationType}-swollen belly.`);
@@ -3754,11 +3754,11 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} implant-rounded belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-rounded belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} implant-rounded belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater bulges with ${his} implant-rounded belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse bulges with ${his} implant-rounded belly.`);
@@ -3766,11 +3766,11 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 24000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} growing belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 12000)) {
+						} else if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s growing belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} growing belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater bulges with ${his} growing belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse bulges with ${his} growing belly.`);
@@ -3779,11 +3779,11 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 30) {
 					if (slave.boobs > 24000) {
 						r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} chubby belly, though they do a fine job of hiding it themselves.`);
-					} else if ((slave.boobs > 12000)) {
+					} else if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s chubby belly is hidden by ${his} massive tits and oversized sweater.`);
-					} else if ((slave.boobs > 8000)) {
+					} else if (slave.boobs > 8000) {
 						r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} chubby belly.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s sweater bulges with ${his} chubby belly.`);
 					} else {
 						r.push(`${slave.slaveName}'s blouse bulges with ${his} chubby belly.`);
@@ -3793,11 +3793,11 @@ App.Desc.belly = function(slave) {
 				} else if (slave.muscles > 30) {
 					if (slave.boobs > 24000) {
 						r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} ripped abs, though they do an unfortunate job of hiding them themselves.`);
-					} else if ((slave.boobs > 12000)) {
+					} else if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s ripped abs are hidden by ${his} massive tits and oversized sweater.`);
-					} else if ((slave.boobs > 8000)) {
+					} else if (slave.boobs > 8000) {
 						r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater busy showing off ${his} ripped abs.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s sweater completely hides ${his} ripped abs.`);
 					} else {
 						r.push(`${slave.slaveName}'s ripped abs can almost be made out through ${his} blouse.`);
@@ -4826,7 +4826,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`);
@@ -4834,7 +4834,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`);
@@ -4842,7 +4842,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`);
@@ -4852,7 +4852,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`);
@@ -4860,7 +4860,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`);
@@ -4868,7 +4868,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`);
@@ -4878,7 +4878,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`);
@@ -4886,7 +4886,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`);
@@ -4894,7 +4894,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`);
@@ -4904,7 +4904,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`);
@@ -4912,7 +4912,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`);
@@ -4920,7 +4920,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`);
@@ -4930,7 +4930,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`);
@@ -4938,7 +4938,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`);
@@ -4946,7 +4946,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`);
@@ -4956,7 +4956,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`);
@@ -4964,7 +4964,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`);
@@ -4972,7 +4972,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`);
@@ -4982,7 +4982,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`);
@@ -4990,7 +4990,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`);
@@ -4998,7 +4998,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`);
@@ -5008,7 +5008,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`);
@@ -5016,7 +5016,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`);
@@ -5024,7 +5024,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`);
@@ -5033,7 +5033,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 190) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} skirt.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`);
 					} else {
 						r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`);
@@ -5042,7 +5042,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a huge empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -5050,7 +5050,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -5058,7 +5058,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -5066,7 +5066,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -5076,7 +5076,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a large empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`);
@@ -5084,7 +5084,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`);
@@ -5092,7 +5092,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`);
@@ -5100,7 +5100,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`);
@@ -5109,7 +5109,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 160) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} skirt.`);
 					} else {
 						r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} skirt.`);
@@ -5117,7 +5117,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 130) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} skirt.`);
 					} else {
 						r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} skirt.`);
@@ -5126,7 +5126,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a medium empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`);
@@ -5134,7 +5134,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`);
@@ -5142,7 +5142,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`);
@@ -5150,7 +5150,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`);
@@ -5159,7 +5159,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 95) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
 					} else {
 						r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
@@ -5168,7 +5168,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a small empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`);
@@ -5176,7 +5176,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`);
@@ -5184,7 +5184,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`);
@@ -5192,7 +5192,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`);
@@ -5201,7 +5201,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 30) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`);
 					} else {
 						r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`);
@@ -5209,7 +5209,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`);
 					} else {
 						r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`);
@@ -5217,7 +5217,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.muscles > 30) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`);
 					} else {
 						r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`);
@@ -5231,7 +5231,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`);
@@ -5239,7 +5239,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`);
@@ -5247,7 +5247,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`);
@@ -5257,7 +5257,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`);
@@ -5265,7 +5265,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`);
@@ -5273,7 +5273,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`);
@@ -5283,7 +5283,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`);
@@ -5291,7 +5291,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`);
@@ -5299,7 +5299,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`);
@@ -5309,7 +5309,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`);
@@ -5317,7 +5317,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`);
@@ -5325,7 +5325,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`);
@@ -5335,7 +5335,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`);
@@ -5343,7 +5343,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`);
@@ -5351,7 +5351,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`);
@@ -5361,7 +5361,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`);
@@ -5369,7 +5369,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`);
@@ -5377,7 +5377,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`);
@@ -5387,7 +5387,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`);
@@ -5395,7 +5395,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`);
@@ -5403,7 +5403,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`);
@@ -5413,7 +5413,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`);
@@ -5421,7 +5421,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`);
@@ -5429,7 +5429,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`);
@@ -5438,7 +5438,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 190) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} trousers.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} trousers.`);
 					} else {
 						r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} trousers.`);
@@ -5447,7 +5447,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a huge empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -5455,7 +5455,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -5463,7 +5463,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -5471,7 +5471,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -5481,7 +5481,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a large empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`);
@@ -5489,7 +5489,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`);
@@ -5497,7 +5497,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`);
@@ -5505,7 +5505,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`);
@@ -5514,7 +5514,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 160) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} trousers.`);
 					} else {
 						r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} trousers.`);
@@ -5522,7 +5522,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 130) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} trousers.`);
 					} else {
 						r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} trousers.`);
@@ -5531,7 +5531,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a medium empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`);
@@ -5539,7 +5539,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`);
@@ -5547,7 +5547,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`);
@@ -5555,7 +5555,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`);
@@ -5564,7 +5564,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 95) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
 					} else {
 						r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
@@ -5573,7 +5573,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a small empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`);
@@ -5581,7 +5581,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`);
@@ -5589,7 +5589,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`);
@@ -5597,7 +5597,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`);
@@ -5606,7 +5606,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 30) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`);
 					} else {
 						r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`);
@@ -5614,7 +5614,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`);
 					} else {
 						r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`);
@@ -5622,7 +5622,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.muscles > 30) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`);
 					} else {
 						r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`);
@@ -5636,7 +5636,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`);
@@ -5644,7 +5644,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`);
@@ -5652,7 +5652,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`);
@@ -5662,7 +5662,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`);
@@ -5670,7 +5670,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`);
@@ -5678,7 +5678,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`);
@@ -5688,7 +5688,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`);
@@ -5696,7 +5696,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`);
@@ -5704,7 +5704,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`);
@@ -5714,7 +5714,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`);
@@ -5722,7 +5722,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`);
@@ -5730,7 +5730,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`);
@@ -5740,7 +5740,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`);
@@ -5748,7 +5748,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`);
@@ -5756,7 +5756,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`);
@@ -5766,7 +5766,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`);
@@ -5774,7 +5774,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`);
@@ -5782,7 +5782,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`);
@@ -5792,7 +5792,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`);
@@ -5800,7 +5800,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`);
@@ -5808,7 +5808,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`);
@@ -5818,7 +5818,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`);
@@ -5826,7 +5826,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`);
@@ -5834,7 +5834,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`);
@@ -5843,7 +5843,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 190) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} miniskirt.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} miniskirt.`);
 					} else {
 						r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} miniskirt.`);
@@ -5852,7 +5852,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a huge empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -5860,7 +5860,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -5868,7 +5868,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -5876,7 +5876,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -5886,7 +5886,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a large empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`);
@@ -5894,7 +5894,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`);
@@ -5902,7 +5902,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`);
@@ -5910,7 +5910,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`);
@@ -5919,7 +5919,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 160) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} miniskirt.`);
 					} else {
 						r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} miniskirt.`);
@@ -5927,7 +5927,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 130) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} miniskirt.`);
 					} else {
 						r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} miniskirt.`);
@@ -5936,7 +5936,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a medium empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`);
@@ -5944,7 +5944,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`);
@@ -5952,7 +5952,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`);
@@ -5960,7 +5960,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`);
@@ -5969,7 +5969,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 95) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
 					} else {
 						r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
@@ -5978,7 +5978,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a small empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`);
@@ -5986,7 +5986,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`);
@@ -5994,7 +5994,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`);
@@ -6002,7 +6002,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`);
@@ -6011,7 +6011,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 30) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`);
 					} else {
 						r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`);
@@ -6019,7 +6019,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`);
 					} else {
 						r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`);
@@ -6027,7 +6027,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.muscles > 30) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`);
 					} else {
 						r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`);
@@ -6041,7 +6041,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`);
@@ -6049,7 +6049,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`);
@@ -6057,7 +6057,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`);
@@ -6067,7 +6067,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`);
@@ -6075,7 +6075,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`);
@@ -6083,7 +6083,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`);
@@ -6093,7 +6093,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`);
@@ -6101,7 +6101,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`);
@@ -6109,7 +6109,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`);
@@ -6119,7 +6119,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`);
@@ -6127,7 +6127,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`);
@@ -6135,7 +6135,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`);
@@ -6145,7 +6145,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`);
@@ -6153,7 +6153,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`);
@@ -6161,7 +6161,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`);
@@ -6171,7 +6171,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`);
@@ -6179,7 +6179,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`);
@@ -6187,7 +6187,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`);
@@ -6197,7 +6197,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`);
@@ -6205,7 +6205,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`);
@@ -6213,7 +6213,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`);
@@ -6223,7 +6223,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`);
@@ -6231,7 +6231,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`);
@@ -6239,7 +6239,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`);
@@ -6248,7 +6248,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 190) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} skirt.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`);
 					} else {
 						r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`);
@@ -6257,7 +6257,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a huge empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -6265,7 +6265,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -6273,7 +6273,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -6281,7 +6281,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -6291,7 +6291,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a large empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`);
@@ -6299,7 +6299,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`);
@@ -6307,7 +6307,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`);
@@ -6315,7 +6315,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`);
@@ -6324,7 +6324,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 160) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} skirt.`);
 					} else {
 						r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} skirt.`);
@@ -6332,7 +6332,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 130) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} skirt.`);
 					} else {
 						r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} skirt.`);
@@ -6341,7 +6341,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a medium empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`);
@@ -6349,7 +6349,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`);
@@ -6357,7 +6357,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`);
@@ -6365,7 +6365,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`);
@@ -6374,7 +6374,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 95) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
 					} else {
 						r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
@@ -6383,7 +6383,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a small empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`);
@@ -6391,7 +6391,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`);
@@ -6399,7 +6399,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`);
@@ -6407,7 +6407,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`);
@@ -6416,7 +6416,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 30) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`);
 					} else {
 						r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`);
@@ -6424,7 +6424,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`);
 					} else {
 						r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`);
@@ -6432,7 +6432,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.muscles > 30) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`);
 					} else {
 						r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`);
@@ -6446,7 +6446,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly bulges tremendously out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic ${slave.inflationType}-filled belly.`);
@@ -6454,7 +6454,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic implant-filled belly bulges tremendously out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic implant-filled belly.`);
@@ -6462,7 +6462,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic pregnant belly bulges tremendously out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} monolithic pregnant belly. It takes full advantage of the freedom to bulge in every direction; ${his} new recruits taking as much space as they can get.`);
@@ -6472,7 +6472,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic ${slave.inflationType}-filled belly.`);
@@ -6480,7 +6480,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic implant-filled belly.`);
@@ -6488,7 +6488,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic pregnant belly hangs heavily out of ${his} open tunic and undershirt, giving ${his} new recruits the room they need.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} titanic pregnant belly. It takes full advantage of the freedom to hang heavily, ${his} new recruits squirming happily.`);
@@ -6498,7 +6498,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic ${slave.inflationType}-filled belly.`);
@@ -6506,7 +6506,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic implant-filled belly.`);
@@ -6514,7 +6514,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic pregnant belly hangs heavily out of ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} gigantic pregnant belly.`);
@@ -6524,7 +6524,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive ${slave.inflationType}-filled belly.`);
@@ -6532,7 +6532,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive implant-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive implant-filled belly.`);
@@ -6540,7 +6540,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive pregnant belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} massive pregnant belly.`);
@@ -6550,7 +6550,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant ${slave.inflationType}-filled belly.`);
@@ -6558,7 +6558,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant implant-filled belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant implant-filled belly.`);
@@ -6566,7 +6566,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant pregnant belly hangs out ${his} open tunic and undershirt.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since there is no chance of closing the buttons over ${his} giant pregnant belly.`);
@@ -6576,7 +6576,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`);
@@ -6584,7 +6584,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant implant-filled belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant implant-filled belly has triumphed over ${his} buttons.`);
@@ -6592,7 +6592,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant pregnant belly parts ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} giant pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} giant pregnant belly has triumphed over ${his} buttons.`);
@@ -6602,7 +6602,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} buttons.`);
@@ -6610,7 +6610,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge implant-filled belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge implant-filled belly has triumphed over ${his} buttons.`);
@@ -6618,7 +6618,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} huge pregnant belly has triumphed over its buttons and has joined ${his} breasts in dominating ${his} tunic.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} huge pregnant belly has triumphed over ${his} buttons.`);
@@ -6628,7 +6628,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge ${slave.inflationType}-filled belly has triumphed over ${his} uniform's buttons.`);
@@ -6636,7 +6636,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge implant-filled belly has triumphed over ${his} uniform's buttons.`);
@@ -6644,7 +6644,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt barely closes as it struggles to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s tunic lies half open, since ${his} huge pregnant belly has triumphed over ${his} uniform's buttons.`);
@@ -6653,7 +6653,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 190) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s massively fat belly is barely obscured by ${his} massive tits and, in turn, obscures ${his} skirt.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt lies half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`);
 					} else {
 						r.push(`${slave.slaveName}'s tunic and undershirt lie half open, since ${his} massively fat belly has triumphed over ${his} buttons. It hangs free, obscuring ${his} skirt.`);
@@ -6662,7 +6662,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a huge empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -6670,7 +6670,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -6678,7 +6678,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge implant-filled belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -6686,7 +6686,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly is barely obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} huge pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s huge pregnant belly threatens to pop the buttons off ${his} uniform's jacket.`);
@@ -6696,7 +6696,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a large empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`);
@@ -6704,7 +6704,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`);
@@ -6712,7 +6712,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big implant-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big implant-filled belly greatly stretches ${his} uniform's jacket.`);
@@ -6720,7 +6720,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s big pregnant belly greatly stretches ${his} uniform's jacket.`);
@@ -6729,7 +6729,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 160) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s hugely fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt strains to contain ${his} hugely fat belly, forcing fat to bulge between the overworked buttons. The bottom of it peeks out from under ${his} poor top, obscuring the waist of ${his} skirt.`);
 					} else {
 						r.push(`${slave.slaveName}'s hugely fat belly distends ${his} uniform's jacket. The bottom of which hangs out from under it, obscuring the waist of ${his} skirt.`);
@@ -6737,7 +6737,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 130) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt strains to contain ${his} big fat belly. The bottom of which peeks out from under it and hangs over the waist of ${his} skirt.`);
 					} else {
 						r.push(`${slave.slaveName}'s big fat belly is notably distends ${his} uniform's jacket. The bottom of which just barely peeks out from under it, hanging over the waist of ${his} skirt.`);
@@ -6746,7 +6746,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a medium empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`);
@@ -6754,7 +6754,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`);
@@ -6762,7 +6762,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} implant-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`);
@@ -6770,7 +6770,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt strains to contain ${his} pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s pregnant belly notably distends ${his} uniform's jacket.`);
@@ -6779,7 +6779,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 95) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
 					} else {
 						r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
@@ -6788,7 +6788,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a small empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} small pregnant belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} small pregnant belly.`);
@@ -6796,7 +6796,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`);
@@ -6804,7 +6804,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`);
@@ -6812,7 +6812,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} growing belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} growing belly.`);
@@ -6821,7 +6821,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 30) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`);
 					} else {
 						r.push(`${slave.slaveName}'s uniform covers ${his} chubby belly. The bottom of which just barely peeks out from under it.`);
@@ -6829,7 +6829,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s slightly swollen belly can be glimpsed beneath ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt tightly hugs the slight swell to ${his} lower belly.`);
 					} else {
 						r.push(`${slave.slaveName}'s tunic looks a little tight around the middle.`);
@@ -6837,7 +6837,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.muscles > 30) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s ripped abs can be glimpsed beneath ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s undershirt barely conceals ${his} ripped abs.`);
 					} else {
 						r.push(`${slave.slaveName}'s ripped abs are completely hidden under ${his} uniform.`);
@@ -6849,7 +6849,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang tremendously.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang tremendously.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} unfathomable, hyper-swollen, ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space to hang tremendously.`);
@@ -6857,7 +6857,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s unfathomable, hyper-swollen, implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang tremendously.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} unfathomable, hyper-swollen, implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang tremendously.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} unfathomable, hyper-swollen, implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space to hang tremendously.`);
@@ -6865,7 +6865,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s unfathomable, hyper-swollen pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} unfathomable, hyper-swollen pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} unfathomable, hyper-swollen pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`);
@@ -6875,7 +6875,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang tremendously.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} monolithic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang tremendously.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} monolithic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space to hang tremendously.`);
@@ -6883,7 +6883,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang tremendously.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} monolithic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang tremendously.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} monolithic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space to hang tremendously.`);
@@ -6891,7 +6891,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s monolithic pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} monolithic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} monolithic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it desperately needs.`);
@@ -6901,7 +6901,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang heavily.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} titanic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room to hang heavily.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} titanic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space to hang heavily.`);
@@ -6909,7 +6909,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang heavily.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} titanic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room to hang heavily.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} titanic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space to hang heavily.`);
@@ -6917,7 +6917,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s titanic pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it needs to bulge.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} titanic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it needs to bulge.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} titanic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room it needs to bulge.`);
@@ -6927,7 +6927,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} gigantic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} gigantic ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space.`);
@@ -6935,7 +6935,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} gigantic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} gigantic implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space.`);
@@ -6943,7 +6943,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s gigantic pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room to grow.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} gigantic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb the room is needs.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} gigantic pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more space to expand.`);
@@ -6953,7 +6953,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive ${slave.inflationType}-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} massive ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more room.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} massive ${slave.inflationType}-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled belly more space.`);
@@ -6961,7 +6961,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive implant-filled belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} massive implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more room.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} massive implant-filled belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled implant more space.`);
@@ -6969,7 +6969,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s massive pregnant belly parts ${his} uncovered breasts. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} massive pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room.`);
 						} else {
 							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} massive pregnant belly. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room.`);
@@ -6979,7 +6979,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant ${slave.inflationType}-filled belly peaks out from between ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} giant ${slave.inflationType}-filled belly hangs out from under them, bulging hugely from ${his} unfastened trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} giant ${slave.inflationType}-filled belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`);
@@ -6987,7 +6987,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant implant-filled belly peaks out from between ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} giant implant-filled belly hangs out from under them, bulging hugely from ${his} unfastened trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} giant implant-filled belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`);
@@ -6995,7 +6995,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s giant pregnant belly peaks out from between ${his} massive tits. In addition, ${he}'s left ${his} trousers unfastened to give ${his} overfilled womb more room.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} giant pregnant belly hangs out from under them, bulging from ${his} unfastened trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} giant pregnant belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`);
@@ -7004,7 +7004,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 190) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s massively fat belly is partially obscured by ${his} massive tits; in turn, it obscures ${his} trousers.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} massively fat belly freely hangs out from under them, obscuring ${his} trousers.`);
 					} else {
 						r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} massively fat belly.`);
@@ -7013,7 +7013,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a huge empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly slightly parts ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge pregnant belly hangs out from under them, bulging from ${his} unfastened trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge pregnant belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`);
@@ -7021,7 +7021,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge ${slave.inflationType}-filled belly slightly parts ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge ${slave.inflationType}-filled belly hangs out from under them, bulging from ${his} unfastened trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge ${slave.inflationType}-filled belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`);
@@ -7029,7 +7029,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly slightly parts ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge implant-filled belly hangs out from under them, bulging from ${his} unfastened trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge implant-filled belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`);
@@ -7037,7 +7037,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge pregnant belly slightly parts ${his} massive tits. ${He} finds it impossible to fasten ${his} trousers with ${his} stomach in the way.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge pregnant belly hangs out from under them, bulging from ${his} unfastened trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge pregnant belly hangs out from under ${his} top and forces ${him} to leave ${his} trousers unfastened.`);
@@ -7047,7 +7047,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a large empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} big pregnant belly hangs out from under them, straining the buttons on ${his} trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} big pregnant belly hangs out from under ${his} top, straining the buttons on ${his} trousers.`);
@@ -7055,7 +7055,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} hugely swollen belly hangs out from under them, obscuring ${his} trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} hugely swollen belly hangs out from under ${his} top, obscuring ${his} trousers.`);
@@ -7063,7 +7063,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge implant-filled belly hangs out from under them, straining the buttons on ${his} trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge implant-filled belly hangs out from under ${his} top, straining the buttons on ${his} trousers.`);
@@ -7071,7 +7071,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s big pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} big pregnant belly hangs out from under them, straining the buttons on ${his} trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} big pregnant belly hangs out from under ${his} top, straining the buttons on ${his} trousers.`);
@@ -7080,7 +7080,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 160) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s hugely fat belly is mostly obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} hugely fat belly freely hangs out from under them, obscuring ${his} trousers.`);
 					} else {
 						r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} hugely fat belly freely hangs from under ${his} top, obscuring ${his} trousers.`);
@@ -7088,7 +7088,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 130) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s big fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} big fat belly freely hangs out from under them, obscuring ${his} trousers.`);
 					} else {
 						r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} big fat belly freely hangs from under ${his} top, obscuring ${his} trousers.`);
@@ -7097,7 +7097,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a medium empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} pregnant belly hangs out from under them, slightly obscuring ${his} trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} pregnancy hangs out from under ${his} top, slightly obscuring ${his} trousers.`);
@@ -7105,7 +7105,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} jiggling ${slave.inflationType}-filled belly hangs out from under them, slightly obscuring ${his} trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} jiggling ${slave.inflationType}-filled hangs out from under ${his} top, slightly obscuring ${his} trousers.`);
@@ -7113,7 +7113,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} implant-filled belly hangs out from under them, slightly obscuring ${his} trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} implant-filled belly hangs out from under ${his} top, slightly obscuring ${his} trousers.`);
@@ -7121,7 +7121,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} pregnant belly hangs out from under them, slightly obscuring ${his} trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} pregnancy hangs out from under ${his} top, slightly obscuring ${his} trousers.`);
@@ -7130,7 +7130,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 95) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} fat belly freely hangs out from under them, obscuring ${his} trousers.`);
 					} else {
 						r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} fat belly freely hangs from under ${his} top, obscuring ${his} trousers.`);
@@ -7139,7 +7139,7 @@ App.Desc.belly = function(slave) {
 					if (slave.bellyAccessory === "a small empathy belly") {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s small pregnant belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} small pregnant belly is completely exposed.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} small pregnant belly completely.`);
@@ -7147,7 +7147,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyFluid >= slave.bellyPreg && slave.bellyFluid >= slave.bellyImplant) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} ${slave.inflationType}-swollen belly is completely exposed.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} ${slave.inflationType}-swollen belly completely.`);
@@ -7155,7 +7155,7 @@ App.Desc.belly = function(slave) {
 					} else if (slave.bellyImplant > 0) {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} implant-rounded belly is completely exposed.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} implant-rounded belly completely.`);
@@ -7163,7 +7163,7 @@ App.Desc.belly = function(slave) {
 					} else {
 						if (slave.boobs > 12000) {
 							r.push(`${slave.slaveName}'s growing belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} growing belly is completely exposed.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} growing belly completely.`);
@@ -7172,7 +7172,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.weight > 30) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s chubby belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} chubby belly is completely exposed and allowed to hang over the waist of ${his} trousers.`);
 					} else {
 						r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} chubby belly completely; though it does hide the top of ${his} trousers.`);
@@ -7180,7 +7180,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.bellyPreg >= 100 || slave.bellyImplant >= 100) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s slightly swollen belly is obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} slightly swollen belly can be clearly seen poking over ${his} trousers.`);
 					} else {
 						r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} trousers are fastened a little lower and ${his} scrub top tightly clings to the slight swell of ${his} lower belly.`);
@@ -7188,7 +7188,7 @@ App.Desc.belly = function(slave) {
 				} else if (slave.muscles > 30) {
 					if (slave.boobs > 12000) {
 						r.push(`${slave.slaveName}'s ripped abs are mostly obscured by ${his} massive tits.`);
-					} else if ((slave.boobs > 4000)) {
+					} else if (slave.boobs > 4000) {
 						r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} ripped abs are completely exposed for all to see.`);
 					} else {
 						r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though you can nearly make out ${his} ripped abs beneath ${his} scrub top.`);
diff --git a/src/npc/descriptions/belly/bellyImplant.js b/src/npc/descriptions/belly/bellyImplant.js
index 9730fd178c96911f385597cdefe3f0ecd2d96e5c..a027386380e484ddbe9e56ed073965e40b085bf7 100644
--- a/src/npc/descriptions/belly/bellyImplant.js
+++ b/src/npc/descriptions/belly/bellyImplant.js
@@ -144,11 +144,11 @@ App.Desc.bellyImplant = function(slave) {
 						case "conservative clothing":
 							if (slave.boobs > 24000) {
 								r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} titanic implant-filled belly.`);
-							} else if ((slave.boobs > 12000)) {
+							} else if (slave.boobs > 12000) {
 								r.push(`${slave.slaveName}'s titanic implant-filled belly adds even more strain to ${his} struggling oversized sweater.`);
-							} else if ((slave.boobs > 8000)) {
+							} else if (slave.boobs > 8000) {
 								r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} titanic implant-filled belly.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s sweater rests atop ${his} titanic implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic implant-filled belly.`);
@@ -188,7 +188,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a military uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
 							} else {
 								r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
@@ -197,7 +197,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a schutzstaffel uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
 							} else {
 								r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
@@ -206,7 +206,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a slutty schutzstaffel uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
 							} else {
 								r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
@@ -215,7 +215,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a red army uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
 							} else {
 								r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
@@ -224,7 +224,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a nice nurse outfit":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} uncovered breasts.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} titanic implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} titanic implant-filled belly.`);
@@ -302,7 +302,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "cutoffs and a t-shirt":
 							if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} uncovered breasts.`);
-							} else if ((slave.boobs > 2000)) {
+							} else if (slave.boobs > 2000) {
 								r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} titanic implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s t-shirt fails to cover ${his} titanic implant-filled belly at all.`);
@@ -480,13 +480,13 @@ App.Desc.bellyImplant = function(slave) {
 						case "conservative clothing":
 							if (slave.boobs > 20000) {
 								r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} gigantic implant-filled belly.`);
-							} else if ((slave.boobs > 10000)) {
+							} else if (slave.boobs > 10000) {
 								r.push(`${slave.slaveName}'s gigantic implant-filled belly adds even more strain to ${his} struggling oversized sweater.`);
-							} else if ((slave.boobs > 8000)) {
+							} else if (slave.boobs > 8000) {
 								r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} poorly covered breasts.`);
-							} else if ((slave.boobs > 8000)) {
+							} else if (slave.boobs > 8000) {
 								r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} gigantic implant-filled belly.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s sweater rests atop ${his} gigantic implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic implant-filled belly.`);
@@ -526,7 +526,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a military uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
 							} else {
 								r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
@@ -535,7 +535,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a schutzstaffel uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
 							} else {
 								r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
@@ -544,7 +544,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a slutty schutzstaffel uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
 							} else {
 								r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
@@ -553,7 +553,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a red army uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
 							} else {
 								r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
@@ -562,7 +562,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a nice nurse outfit":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} uncovered breasts.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} gigantic implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} gigantic implant-filled belly.`);
@@ -634,7 +634,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "cutoffs and a t-shirt":
 							if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} uncovered breasts.`);
-							} else if ((slave.boobs > 2000)) {
+							} else if (slave.boobs > 2000) {
 								r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} gigantic implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s t-shirt fails to cover ${his} gigantic implant-filled belly at all.`);
@@ -812,11 +812,11 @@ App.Desc.bellyImplant = function(slave) {
 						case "conservative clothing":
 							if (slave.boobs > 24000) {
 								r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge implant-filled belly, though they do a fine job of hiding it themselves.`);
-							} else if ((slave.boobs > 12000)) {
+							} else if (slave.boobs > 12000) {
 								r.push(`${slave.slaveName}'s huge implant-filled belly is hidden by ${his} massive tits and oversized sweater.`);
-							} else if ((slave.boobs > 8000)) {
+							} else if (slave.boobs > 8000) {
 								r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge implant-filled belly.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge implant-filled belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`);
 							} else {
 								r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge implant-filled belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`);
@@ -862,7 +862,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a military uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt strains to contain ${his} huge implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`);
@@ -871,7 +871,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a schutzstaffel uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt strains to contain ${his} huge implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`);
@@ -880,7 +880,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a slutty schutzstaffel uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt strains to contain ${his} huge implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`);
@@ -889,7 +889,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a red army uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt strains to contain ${his} huge implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`);
@@ -898,7 +898,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a nice nurse outfit":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge implant-filled belly hangs out from under them, obscuring ${his} trousers.`);
 							} else {
 								r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge implant-filled belly hangs out from under ${his} top, obscuring ${his} trousers.`);
@@ -964,7 +964,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "cutoffs and a t-shirt":
 							if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} huge tits.`);
-							} else if ((slave.boobs > 2000)) {
+							} else if (slave.boobs > 2000) {
 								r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} huge implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s t-shirt fails to cover ${his} huge implant-filled belly at all.`);
@@ -1114,7 +1114,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "spats and a tank top":
 							if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} huge tits.`);
-							} else if ((slave.boobs > 1200)) {
+							} else if (slave.boobs > 1200) {
 								r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} huge implant-filled belly by ${his} breasts.`);
 							} else {
 								r.push(`${slave.slaveName}'s top merely rests on ${his} huge implant-filled belly.`);
@@ -1144,11 +1144,11 @@ App.Desc.bellyImplant = function(slave) {
 						case "conservative clothing":
 							if (slave.boobs > 20000) {
 								r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} implant-filled belly, though they do a fine job of hiding it themselves.`);
-							} else if ((slave.boobs > 10000)) {
+							} else if (slave.boobs > 10000) {
 								r.push(`${slave.slaveName}'s implant-filled belly is hidden by ${his} massive tits and oversized sweater.`);
-							} else if ((slave.boobs > 8000)) {
+							} else if (slave.boobs > 8000) {
 								r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} implant-filled belly.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} implant-filled belly. ${His} popped navel forms a small tent in material.`);
 							} else {
 								r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} implant-filled belly. ${His} popped navel forms a small tent in ${his} shirt.`);
@@ -1194,7 +1194,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a military uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`);
@@ -1203,7 +1203,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a schutzstaffel uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`);
@@ -1212,7 +1212,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a slutty schutzstaffel uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`);
@@ -1221,7 +1221,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a red army uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`);
@@ -1230,7 +1230,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a nice nurse outfit":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} implant-filled belly hangs out from under them, obscuring ${his} trousers.`);
 							} else {
 								r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} implant-filled hangs out from under ${his} top, slightly obscuring ${his} trousers.`);
@@ -1296,7 +1296,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "cutoffs and a t-shirt":
 							if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} huge tits.`);
-							} else if ((slave.boobs > 2000)) {
+							} else if (slave.boobs > 2000) {
 								r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} implant-filled belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s t-shirt covers only the top of ${his} implant-filled belly.`);
@@ -1446,7 +1446,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "spats and a tank top":
 							if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} huge tits.`);
-							} else if ((slave.boobs > 1200)) {
+							} else if (slave.boobs > 1200) {
 								r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} implant-filled belly by ${his} breasts, allowing it to slightly obscure ${his} spats from view.`);
 							} else {
 								r.push(`${slave.slaveName}'s top can't entirely cover ${his} implant-filled belly, allowing it to slightly obscure ${his} spats from view.`);
@@ -1478,11 +1478,11 @@ App.Desc.bellyImplant = function(slave) {
 						case "conservative clothing":
 							if (slave.boobs > 20000) {
 								r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} fat belly, though they do a fine job of hiding it themselves.`);
-							} else if ((slave.boobs > 10000)) {
+							} else if (slave.boobs > 10000) {
 								r.push(`${slave.slaveName}'s fat belly is hidden by ${his} massive tits and oversized sweater.`);
-							} else if ((slave.boobs > 8000)) {
+							} else if (slave.boobs > 8000) {
 								r.push(`${slave.slaveName}'s oversized breasts ${his} fat belly hang free.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s sweater is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`);
 							} else {
 								r.push(`${slave.slaveName}'s blouse is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`);
@@ -1528,7 +1528,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a military uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
 							} else {
 								r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
@@ -1537,7 +1537,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a schutzstaffel uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
 							} else {
 								r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
@@ -1546,7 +1546,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a slutty schutzstaffel uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
 							} else {
 								r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
@@ -1555,7 +1555,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a red army uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s shirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
 							} else {
 								r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
@@ -1564,7 +1564,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a nice nurse outfit":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} fat belly freely hangs out from under them, obscuring ${his} trousers.`);
 							} else {
 								r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} fat belly freely hangs from under ${his} top, obscuring ${his} trousers.`);
@@ -1630,7 +1630,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "cutoffs and a t-shirt":
 							if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`);
-							} else if ((slave.boobs > 2000)) {
+							} else if (slave.boobs > 2000) {
 								r.push(`${slave.slaveName}'s tits keep ${his} t-shirt busy, allowing ${his} fat belly to hang free.`);
 							} else {
 								r.push(`${slave.slaveName}'s t-shirt covers only the top of ${his} fat belly, allowing it to hang mostly free and cover ${his} jeans.`);
@@ -1780,7 +1780,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "spats and a tank top":
 							if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`);
-							} else if ((slave.boobs > 1200)) {
+							} else if (slave.boobs > 1200) {
 								r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} fat belly by ${his} breasts, allowing it to hang loose and obscure ${his} spats from view.`);
 							} else {
 								r.push(`${slave.slaveName}'s top can't entirely cover ${his} fat belly, allowing it to hang loose and slightly obscure ${his} spats from view.`);
@@ -1810,11 +1810,11 @@ App.Desc.bellyImplant = function(slave) {
 						case "conservative clothing":
 							if (slave.boobs > 20000) {
 								r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} implant-rounded belly, though they do a fine job of hiding it themselves.`);
-							} else if ((slave.boobs > 10000)) {
+							} else if (slave.boobs > 10000) {
 								r.push(`${slave.slaveName}'s implant-rounded belly is hidden by ${his} massive tits and oversized sweater.`);
-							} else if ((slave.boobs > 8000)) {
+							} else if (slave.boobs > 8000) {
 								r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} implant-rounded belly.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s sweater bulges with ${his} implant-rounded belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s blouse bulges with ${his} implant-rounded belly.`);
@@ -1861,7 +1861,7 @@ App.Desc.bellyImplant = function(slave) {
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
 								break;
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`);
@@ -1870,7 +1870,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a schutzstaffel uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`);
@@ -1879,7 +1879,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a slutty schutzstaffel uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`);
@@ -1888,7 +1888,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a red army uniform":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`);
@@ -1897,7 +1897,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "a nice nurse outfit":
 							if (slave.boobs > 6000) {
 								r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
-							} else if ((slave.boobs > 4000)) {
+							} else if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} implant-rounded belly is completely exposed.`);
 							} else {
 								r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} implant-rounded belly completely.`);
@@ -1963,7 +1963,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "cutoffs and a t-shirt":
 							if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} huge tits.`);
-							} else if ((slave.boobs > 2000)) {
+							} else if (slave.boobs > 2000) {
 								r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} implant-rounded belly.`);
 							} else {
 								r.push(`${slave.slaveName}'s t-shirt bulges with ${his} implant-rounded belly. The bottom of which is beginning to peek from under ${his} T-shirt.`);
@@ -2113,7 +2113,7 @@ App.Desc.bellyImplant = function(slave) {
 						case "spats and a tank top":
 							if (slave.boobs > 4000) {
 								r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`);
-							} else if ((slave.boobs > 1200)) {
+							} else if (slave.boobs > 1200) {
 								r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} implant-rounded belly by ${his} breasts.`);
 							} else {
 								r.push(`${slave.slaveName}'s top bulges with ${his} implant-rounded belly, which peeks out from the bottom.`);
diff --git a/src/npc/descriptions/belly/bellyInflation.js b/src/npc/descriptions/belly/bellyInflation.js
index 056d132f3dcffac3b26a265e34c5bd351f5bdea3..a05e821a89e74f0ee2e42f8a41bf3ee25d12d2f8 100644
--- a/src/npc/descriptions/belly/bellyInflation.js
+++ b/src/npc/descriptions/belly/bellyInflation.js
@@ -66,11 +66,11 @@ App.Desc.bellyInflation = function(slave) {
 					case "conservative clothing":
 						if (slave.boobs > 20000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} hugely swollen belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 10000)) {
+						} else if (slave.boobs > 10000) {
 							r.push(`${slave.slaveName}'s hugely swollen belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} hugely swollen belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} hugely swollen belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} hugely swollen belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`);
@@ -119,7 +119,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "a red army uniform uniform":
 						if (slave.boobs > 6000) {
 							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s shirt strains to contain ${his} hugely swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`);
@@ -128,7 +128,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "a nice nurse outfit":
 						if (slave.boobs > 6000) {
 							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} hugely swollen belly hangs out from under them, obscuring ${his} trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} hugely swollen belly hangs out from under ${his} top, obscuring ${his} trousers.`);
@@ -195,7 +195,7 @@ App.Desc.bellyInflation = function(slave) {
 						if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} huge tits.`);
 							break;
-						} else if ((slave.boobs > 2000)) {
+						} else if (slave.boobs > 2000) {
 							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} hugely swollen belly.`);
 							break;
 						} else {
@@ -346,7 +346,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "spats and a tank top":
 						if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} huge tits.`);
-						} else if ((slave.boobs > 1200)) {
+						} else if (slave.boobs > 1200) {
 							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} hugely swollen belly by ${his} breasts.`);
 						} else {
 							r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} hugely swollen belly.`);
@@ -370,11 +370,11 @@ App.Desc.bellyInflation = function(slave) {
 					case "conservative clothing":
 						if (slave.boobs > 20000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} jiggling ${slave.inflationType}-filled belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 10000)) {
+						} else if (slave.boobs > 10000) {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} jiggling ${slave.inflationType}-filled belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} jiggling ${slave.inflationType}-filled belly. ${His} popped navel forms a small tent in material.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} jiggling ${slave.inflationType}-filled belly. ${His} popped navel forms a small tent in ${his} shirt.`);
@@ -423,7 +423,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "a red army uniform":
 						if (slave.boobs > 6000) {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s shirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`);
@@ -432,7 +432,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "a nice nurse outfit":
 						if (slave.boobs > 6000) {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} jiggling ${slave.inflationType}-filled belly hangs out from under them, obscuring ${his} trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} jiggling ${slave.inflationType}-filled hangs out from under ${his} top, slightly obscuring ${his} trousers.`);
@@ -498,7 +498,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "cutoffs and a t-shirt":
 						if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} huge tits.`);
-						} else if ((slave.boobs > 2000)) {
+						} else if (slave.boobs > 2000) {
 							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} jiggling ${slave.inflationType}-filled belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s t-shirt covers only the top of ${his} jiggling ${slave.inflationType}-filled belly.`);
@@ -648,7 +648,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "spats and a tank top":
 						if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} huge tits.`);
-						} else if ((slave.boobs > 1200)) {
+						} else if (slave.boobs > 1200) {
 							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} jiggling ${slave.inflationType}-filled belly by ${his} breasts.`);
 						} else {
 							r.push(`${slave.slaveName}'s top only slightly covers ${his} jiggling ${slave.inflationType}-filled belly.`);
@@ -674,11 +674,11 @@ App.Desc.bellyInflation = function(slave) {
 					case "conservative clothing":
 						if (slave.boobs > 20000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} fat belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 10000)) {
+						} else if (slave.boobs > 10000) {
 							r.push(`${slave.slaveName}'s fat belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts ${his} fat belly hang free.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`);
@@ -745,7 +745,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "a red army uniform":
 						if (slave.boobs > 6000) {
 							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s shirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
 						} else {
 							r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
@@ -754,7 +754,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "a nice nurse outfit":
 						if (slave.boobs > 6000) {
 							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} fat belly freely hangs out from under them, obscuring ${his} trousers.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} fat belly freely hangs from under ${his} top, obscuring ${his} trousers.`);
@@ -802,7 +802,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "cutoffs and a t-shirt":
 						if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`);
-						} else if ((slave.boobs > 2000)) {
+						} else if (slave.boobs > 2000) {
 							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt busy, allowing ${his} fat belly to hang free.`);
 						} else {
 							r.push(`${slave.slaveName}'s t-shirt covers only the top of ${his} fat belly, allowing it to hang mostly free and cover ${his} jeans.`);
@@ -952,7 +952,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "spats and a tank top":
 						if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`);
-						} else if ((slave.boobs > 1200)) {
+						} else if (slave.boobs > 1200) {
 							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} fat belly by ${his} breasts.`);
 						} else {
 							r.push(`${slave.slaveName}'s top can't entirely cover ${his} fat belly, allowing it to hang loose and slightly obscure ${his} spats from view.`);
@@ -979,11 +979,11 @@ App.Desc.bellyInflation = function(slave) {
 					case "conservative clothing":
 						if (slave.boobs > 20000) {
 							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} ${slave.inflationType}-swollen belly, though they do a fine job of hiding it themselves.`);
-						} else if ((slave.boobs > 10000)) {
+						} else if (slave.boobs > 10000) {
 							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is hidden by ${his} massive tits and oversized sweater.`);
-						} else if ((slave.boobs > 8000)) {
+						} else if (slave.boobs > 8000) {
 							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} ${slave.inflationType}-swollen belly.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s sweater bulges with ${his} ${slave.inflationType}-swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s blouse bulges with ${his} ${slave.inflationType}-swollen belly.`);
@@ -1029,7 +1029,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "a military uniform":
 						if (slave.boobs > 6000) {
 							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`);
@@ -1059,7 +1059,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "a nice nurse outfit":
 						if (slave.boobs > 6000) {
 							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`);
-						} else if ((slave.boobs > 4000)) {
+						} else if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} ${slave.inflationType}-swollen belly is completely exposed.`);
 						} else {
 							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} ${slave.inflationType}-swollen belly completely.`);
@@ -1107,7 +1107,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "cutoffs and a t-shirt":
 						if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} huge tits.`);
-						} else if ((slave.boobs > 2000)) {
+						} else if (slave.boobs > 2000) {
 							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} ${slave.inflationType}-swollen belly.`);
 						} else {
 							r.push(`${slave.slaveName}'s t-shirt bulges with ${his} ${slave.inflationType}-swollen belly. The bottom of which is beginning to peek from under ${his} T-shirt.`);
@@ -1257,7 +1257,7 @@ App.Desc.bellyInflation = function(slave) {
 					case "spats and a tank top":
 						if (slave.boobs > 4000) {
 							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} huge tits.`);
-						} else if ((slave.boobs > 1200)) {
+						} else if (slave.boobs > 1200) {
 							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} ${slave.inflationType}-swollen belly by ${his} breasts.`);
 						} else {
 							r.push(`${slave.slaveName}'s top can't entirely cover ${his} ${slave.inflationType}-swollen belly, allowing it to hang loose and slightly obscure ${his} spats from view.`);
diff --git a/src/npc/descriptions/boobs/boobs.js b/src/npc/descriptions/boobs/boobs.js
index aeae1c3d596c206eac55597e6fbd214b22e75f61..11d6b5b81c22e7ed46db15230f19a1141ea44097 100644
--- a/src/npc/descriptions/boobs/boobs.js
+++ b/src/npc/descriptions/boobs/boobs.js
@@ -1607,7 +1607,7 @@ App.Desc.nipples = function(slave, pronouns) {
 					r += `stiffly erect. They'd be inverted if ${he} weren't so aroused, but ${he}'s so horny they stay popped out.`;
 					break;
 				case "huge":
-					if ((slave.boobs - slave.boobsImplant > 7500)) {
+					if (slave.boobs - slave.boobsImplant > 7500) {
 						r += `in proportion with ${his} breasts: they're stiffly erect and `;
 						if ((slave.dick > 0) && (slave.dick < 3)) {
 							r += `bigger than ${his} girlcock.`;
@@ -1654,7 +1654,7 @@ App.Desc.nipples = function(slave, pronouns) {
 					}
 					break;
 				case "huge":
-					if ((slave.boobs - slave.boobsImplant > 7500)) {
+					if (slave.boobs - slave.boobsImplant > 7500) {
 						r += `in proportion with ${his} breasts: they've grown `;
 						if ((slave.dick > 0) && (slave.dick < 3)) {
 							r += `bigger than ${his} little girlcock.`;
diff --git a/src/npc/descriptions/boobs/boobsShape.js b/src/npc/descriptions/boobs/boobsShape.js
index 0d4a1777781f961717d2540bf697a4103bf824da..02baac55ff91bff5e56a220f4806f1c6bea60405 100644
--- a/src/npc/descriptions/boobs/boobsShape.js
+++ b/src/npc/descriptions/boobs/boobsShape.js
@@ -19,7 +19,7 @@ App.Desc.boobsShape = function(slave) {
 					r.push(`up and out like a severe push-up bra.`);
 				}
 			}
-		} else if ((slave.boobsImplant === 0)) {
+		} else if (slave.boobsImplant === 0) {
 			switch (slave.boobShape) {
 				case "perky":
 					if (slave.boobs > 12000) {
@@ -137,10 +137,10 @@ App.Desc.boobsShape = function(slave) {
 			}
 		} else if (slave.boobShape === "deflated") {
 			/* WIP */
-		} else if ((slave.boobsImplant <= 400)) {
+		} else if (slave.boobsImplant <= 400) {
 			if (slave.boobs > 800) {
 				r.push(`${He} has ${slave.boobsImplant}cc breast implants. ${His} tits look fairly natural, but defy gravity more than could be expected given their size.`);
-			} else if ((slave.boobs > 300)) {
+			} else if (slave.boobs > 300) {
 				r.push(`${He} has ${slave.boobsImplant}cc breast implants. ${His} tits look fairly natural, but are perkier than could be expected given their size.`);
 			} else {
 				r.push(`${He} has ${slave.boobsImplant}cc breast implants. ${His} tits look fairly natural, mostly because they're so small.`);
@@ -150,7 +150,7 @@ App.Desc.boobsShape = function(slave) {
 					r.push(`They are about ${Math.floor((slave.boobsImplant / slave.boobs) * 100)}% implant.`);
 				}
 			}
-		} else if ((slave.boobsImplant <= 600)) {
+		} else if (slave.boobsImplant <= 600) {
 			if (slave.boobs > 800) {
 				r.push(`${He} has ${slave.boobsImplant} cc breast implants. ${His} implants are well done, but ${his} breasts are so perfect and gravity-defying that they are clearly artificial.`);
 			} else {
diff --git a/src/npc/descriptions/butt/buttplug.js b/src/npc/descriptions/butt/buttplug.js
index dbbee73b48793d462e28d2184a1d3e1d626d4345..4875784f02ef25a292ce8733ce301b2d86ab687b 100644
--- a/src/npc/descriptions/butt/buttplug.js
+++ b/src/npc/descriptions/butt/buttplug.js
@@ -579,7 +579,7 @@ App.Desc.buttplug = function(slave) {
 						} else {
 							r.push(`With ${his} ass bare, ${his} huge asshole is very visible from the rear.`);
 						}
-					} else if ((slave.anus > 1)) {
+					} else if (slave.anus > 1) {
 						if (slave.chastityAnus) {
 							r.push(`${His} bare buttocks and ${his} anal chastity accessory are very visible from the rear.`);
 						} else {
diff --git a/src/npc/descriptions/career.js b/src/npc/descriptions/career.js
index 9f66f009bfaf2418f39eb2558050eb67b82b5fc1..7c6b877d24502d2f23f859d8f7bdffbe3d4eef0d 100644
--- a/src/npc/descriptions/career.js
+++ b/src/npc/descriptions/career.js
@@ -132,7 +132,7 @@ App.Desc.career = function(slave) {
 					r.push(`entertainer.`);
 				}
 			}
-		} else if ((slave.counter.oral + slave.counter.anal + slave.counter.vaginal + slave.counter.mammary + slave.counter.penetrative > 1000)) {
+		} else if (slave.counter.oral + slave.counter.anal + slave.counter.vaginal + slave.counter.mammary + slave.counter.penetrative > 1000) {
 			if (!setup.whoreCareers.includes(slave.career)) {
 				r.push(`${He} has been fucked so many times that a free sex worker could teach ${him} nothing.`);
 			}
diff --git a/src/npc/descriptions/crotch/crotch.js b/src/npc/descriptions/crotch/crotch.js
index 1327548bed98685befa89339d2ceba19e761c8df..2b3b0542ee31bd327b26f231c96737777894697d 100644
--- a/src/npc/descriptions/crotch/crotch.js
+++ b/src/npc/descriptions/crotch/crotch.js
@@ -11,7 +11,7 @@ App.Desc.crotch = function(slave) {
 		if (slave.assignment === "work in the dairy" && V.dairyRestraintsSetting > 1) {
 			if (V.dairyPregSetting > 1 && slave.ovaries === 1) {
 				r.push(`${slave.slaveName}'s pussy is occupied by a massive dildo, servicing ${his} womb with its ejaculate.`);
-			} else if ((slave.balls > 0)) {
+			} else if (slave.balls > 0) {
 				if (slave.dick > 0) {
 					r.push(`${slave.slaveName}'s dick is buried in ${his} milking machine's cum receptacle.`);
 				} else {
@@ -546,7 +546,7 @@ App.Desc.crotch = function(slave) {
 						r.push(`hermaphroditic genitalia require a huge hole in ${his} netting to keep everything aired out and accessible.`);
 					} else if ((slave.dick > 0) && (slave.scrotum > 1)) {
 						r.push(`cock has its own hole in ${his} netting, but ${his} balls are restrained inside it.`);
-					} else if ((slave.dick > 0)) {
+					} else if (slave.dick > 0) {
 						r.push(`cock has its own hole in ${his} netting.`);
 					} else if (slave.vagina === -1) {
 						r.push(`clubslut netting covers ${his} featureless groin, making it less obvious that there's nothing there.`);
@@ -1441,7 +1441,7 @@ App.Desc.crotch = function(slave) {
 							r.push(`pussy is`);
 						}
 						r.push(`bare and available.`);
-					} else if ((slave.chastityPenis === 1)) {
+					} else if (slave.chastityPenis === 1) {
 					} else if (slave.dick > 0) {
 						r.push(`${slave.slaveName}'s`);
 						switch (slave.dick) {
diff --git a/src/npc/descriptions/crotch/dick.js b/src/npc/descriptions/crotch/dick.js
index 8928310140fe82095145a41eec4d60426d838aca..1310e08afa58f540eb0126be3e6fdf4b2b4921b8 100644
--- a/src/npc/descriptions/crotch/dick.js
+++ b/src/npc/descriptions/crotch/dick.js
@@ -474,7 +474,7 @@ App.Desc.dick = function(slave) {
 				case 0:
 					if (slave.dick === 2) {
 						r.push(`and ${he} lacks testicles.`);
-					} else if ((slave.dick === 1)) {
+					} else if (slave.dick === 1) {
 						r.push(`and ${he} lacks testicles: ${his} vestigial dick is functionally a large, soft clit.`);
 					} else {
 						r.push(`but ${he} lacks testicles.`);
@@ -636,7 +636,7 @@ App.Desc.dick = function(slave) {
 			} else if ((slave.assignment === "work in the dairy") && (V.dairyStimulatorsSetting > 1) && canAchieveErection(slave)) {
 				if (slave.dick > 8) {
 					r.push(`${He}'s soft despite the drugs ejaculated by the dildo up ${his} asshole, since ${his} cock is too huge to ever become hard. The soft monstrosity simply exists to gush cum into a catch basin.`);
-				} else if ((slave.dick > 6)) {
+				} else if (slave.dick > 6) {
 					r.push(`${He}'s only half hard despite the drugs ejaculated by the dildo up ${his} asshole, and ${he} must feel very faint, since even that requires much of ${his} blood volume.`);
 				} else {
 					r.push(`The drugs ejaculated by the dildo up ${his} asshole keep ${his} almost permanently hard, only letting ${him} go soft right after ejaculation.`);
@@ -647,12 +647,12 @@ App.Desc.dick = function(slave) {
 			} else if (slave.drugs === "priapism agents") {
 				if (slave.dick > 8) {
 					r.push(`${He}'s painfully hard, despite the size of ${his} cock, and on the brink of losing consciousness, since a dangerous amount of ${his} blood volume is required to even get it to this point.`);
-				} else if ((slave.dick > 6)) {
+				} else if (slave.dick > 6) {
 					r.push(`${He}'s painfully erect, or as erect that a cock of that size could be, and ${he} must feel very faint, since even that requires much of ${his} blood volume.`);
 				} else {
 					r.push(`${He}'s painfully erect.`);
 				}
-			} else if ((slave.dick > 8)) {
+			} else if (slave.dick > 8) {
 				r.push(`${He}'s too huge for ${his} cardiovascular system to create even the beginnings of an erection. ${His} cock is a soft, sensitive monolith`);
 				if (slave.dick * 6 > slave.height) {
 					r.push(`bigger than ${his} body,`);
@@ -693,14 +693,14 @@ App.Desc.dick = function(slave) {
 				}
 				if (slave.prostate > 2) {
 					r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant. A constant dribble of precum drips from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
-				} else if ((slave.prostate > 1)) {
+				} else if (slave.prostate > 1) {
 					r.push(`${He}'s got a string of precum dangling from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
 				}
 			} else if ((V.saleDescription === 1 && V.gingering === "vasodilator")) {
 				r.push(`${He}'s painfully erect.`);
 				if (slave.prostate > 2) {
 					r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant. A constant dribble of precum drips from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
-				} else if ((slave.prostate > 1)) {
+				} else if (slave.prostate > 1) {
 					r.push(`${He}'s got a string of precum dangling from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
 				}
 			} else if ((slave.aphrodisiacs > 1) || (slave.inflationType === "aphrodisiac" && slave.inflation >= 2)) {
@@ -712,7 +712,7 @@ App.Desc.dick = function(slave) {
 				}
 				if (slave.prostate > 2) {
 					r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant. A constant dribble of precum drips from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
-				} else if ((slave.prostate > 1)) {
+				} else if (slave.prostate > 1) {
 					r.push(`${He}'s got a string of precum dangling from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
 				}
 			} else if ((slave.balls > 0) && slave.ballType === "sterile") {
@@ -720,7 +720,7 @@ App.Desc.dick = function(slave) {
 				if (slave.energy > 95) {
 					r.push(`${He}'s such a nympho that despite this, ${his} limp member is tipped by a drop of precum.`);
 				}
-			} else if ((slave.balls === 0)) {
+			} else if (slave.balls === 0) {
 				r.push(`Since ${he}`);
 				if (slave.genes === "XY") {
 					r.push(`has been gelded,`);
@@ -738,14 +738,14 @@ App.Desc.dick = function(slave) {
 				} else if ((slave.drugs === "testicle enhancement") || (slave.drugs === "hyper testicle enhancement")) {
 					r.push(`Unfortunately for the poor slave, ${he}'s also on drugs that cause overproduction of cum. Since ${his} soft dick makes it difficult for ${him} to ejaculate properly, ${he}'s almost frantic with discomfort, and ${his} dickhead is dribbling excessive precum.`);
 				}
-			} else if ((slave.dick > 6)) {
+			} else if (slave.dick > 6) {
 				r.push(`${His} cock is flirting with the limit of what the human cardiovascular system can bring erect: the best ${he} can manage is a half-hardness that's too soft to meaningfully fuck anything. If ${he} could somehow get fully erect, there are few holes ${he} could safely penetrate, anyway.`);
 				if (slave.prostate > 2) {
 					r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant. A constant dribble of precum drips from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
-				} else if ((slave.prostate > 1)) {
+				} else if (slave.prostate > 1) {
 					r.push(`${He}'s got a string of precum dangling from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
 				}
-			} else if ((slave.dick > 1)) {
+			} else if (slave.dick > 1) {
 				if (slave.aphrodisiacs > 0 || slave.inflationType === "aphrodisiac") {
 					r.push(`The aphrodisiacs have ${his} cock`);
 					if (!canAchieveErection(slave)) {
@@ -755,14 +755,14 @@ App.Desc.dick = function(slave) {
 					}
 					if (slave.prostate > 2) {
 						r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant. A constant dribble of precum drips from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
-					} else if ((slave.prostate > 1)) {
+					} else if (slave.prostate > 1) {
 						r.push(`${He}'s got a string of precum dangling from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
 					}
-				} else if ((slave.energy > 95)) {
+				} else if (slave.energy > 95) {
 					r.push(`As a nympho, ${he}'s almost constantly hard.`);
 					if (slave.prostate > 2) {
 						r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant. A constant dribble of precum drips from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
-					} else if ((slave.prostate > 1)) {
+					} else if (slave.prostate > 1) {
 						r.push(`${He}'s got a string of precum dangling from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
 					}
 				} else if ((slave.fetish === "buttslut") && (slave.fetishStrength > 60) && (slave.fetishKnown === 1)) {
@@ -867,18 +867,18 @@ App.Desc.dick = function(slave) {
 						r.push(`is,`);
 					}
 					r.push(`${he}'s probably fantasizing about boobs.`);
-				} else if ((slave.devotion > 50)) {
+				} else if (slave.devotion > 50) {
 					r.push(`As a devoted sex slave, ${he} has no trouble keeping ${him}self hard for ${his} ${WrittenMaster(slave)}.`);
 					if (slave.prostate > 2) {
 						r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant. A constant dribble of precum drips from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
-					} else if ((slave.prostate > 1)) {
+					} else if (slave.prostate > 1) {
 						r.push(`${He}'s got a string of precum dangling from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
 					}
-				} else if ((slave.devotion > 20)) {
+				} else if (slave.devotion > 20) {
 					r.push(`As an obedient sex slave, ${he} does ${his} best to keep ${him}self hard for ${his} ${WrittenMaster(slave)}.`);
 					if (slave.prostate > 2) {
 						r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant. A constant dribble of precum drips from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
-					} else if ((slave.prostate > 1)) {
+					} else if (slave.prostate > 1) {
 						r.push(`${He}'s got a string of precum dangling from the tip of ${his} cock; ${his} artificially hyperactive prostate keeps ${him} that way.`);
 					}
 				} else {
@@ -1149,7 +1149,7 @@ App.Desc.dick = function(slave) {
 					} else {
 						r.push(`Fortunately for ${him}, ${he} can't get hard, making this merely uncomfortable for ${him}.`);
 					}
-				} else if ((slave.foreskin - slave.dick === -1)) {
+				} else if (slave.foreskin - slave.dick === -1) {
 					r.push(`${His} foreskin is stretched by ${his} dickhead, probably as a result of recent penis growth it hasn't had time to get used to yet.`);
 					if (canAchieveErection(slave) && ((slave.devotion > 20) || (slave.aphrodisiacs > 0) || (V.saleDescription === 1 && V.gingering === "vasodilator") || (slave.inflationType === "aphrodisiac") || (slave.drugs === "priapism agents"))) {
 						r.push(`${His} erection has stretched the skin there taut.`);
@@ -1158,7 +1158,7 @@ App.Desc.dick = function(slave) {
 					} else {
 						r.push(`Fortunately for ${him}, ${he} can't get hard, making this state merely odd-looking.`);
 					}
-				} else if ((slave.foreskin - slave.dick === 1)) {
+				} else if (slave.foreskin - slave.dick === 1) {
 					r.push(`${His} foreskin seems too large for ${his} dick, probably as a result of recent penis shrinkage.`);
 					if (canAchieveErection(slave) && ((slave.devotion > 20) || (slave.aphrodisiacs > 0) || (V.saleDescription === 1 && V.gingering === "vasodilator") || (slave.inflationType === "aphrodisiac") || (slave.drugs === "priapism agents"))) {
 						r.push(`${His} erection cannot fully retract it, though it's loose enough that this doesn't look uncomfortable.`);
@@ -1167,7 +1167,7 @@ App.Desc.dick = function(slave) {
 					} else {
 						r.push(`${He} can't get hard, making the tip of ${his} dick look shriveled.`);
 					}
-				} else if ((slave.foreskin - slave.dick > 1)) {
+				} else if (slave.foreskin - slave.dick > 1) {
 					r.push(`${His} foreskin is far too large for ${his} dick, probably as a result of recent penis shrinkage.`);
 					if (canAchieveErection(slave) && ((slave.devotion > 20) || (slave.aphrodisiacs > 0) || (V.saleDescription === 1 && V.gingering === "vasodilator") || (slave.inflationType === "aphrodisiac") || (slave.drugs === "priapism agents"))) {
 						r.push(`${His} erection cannot retract it at all, though it's loose enough that this doesn't look uncomfortable. Orgasming, though, will likely produce a dribbling mess.`);
@@ -1182,11 +1182,11 @@ App.Desc.dick = function(slave) {
 				if (slave.balls > 5) {
 					r.push(`${His} cock is small enough that it does not hang past the bottom of ${his} gigantic ballsack when soft.`);
 				}
-			} else if ((slave.dick < 2)) {
+			} else if (slave.dick < 2) {
 				if (slave.balls > 4) {
 					r.push(`${His} cock is so small that it does not hang past the bottom of ${his} huge ballsack when soft.`);
 				}
-			} else if ((slave.dick < 1)) {
+			} else if (slave.dick < 1) {
 				if (slave.balls > 3) {
 					r.push(`${His} cock is so small that it barely protrudes from ${his} ample ballsack.`);
 				}
@@ -1523,7 +1523,7 @@ App.Desc.dick = function(slave) {
 			}
 			if (slave.prostate > 2) {
 				r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant. A constant dribble of precum streams from the hole; ${his} artificially hyperactive prostate keeps ${him} that way.`);
-			} else if ((slave.prostate > 1)) {
+			} else if (slave.prostate > 1) {
 				r.push(`${He}'s got a string of precum dangling from the hole; ${his} artificially hyperactive prostate keeps ${him} that way.`);
 			}
 			if (slave.aphrodisiacs > 0 || slave.inflationType === "aphrodisiac") {
@@ -1534,7 +1534,7 @@ App.Desc.dick = function(slave) {
 					r.push(`little precum beading at`);
 				}
 				r.push(`the hole.`);
-			} else if ((slave.energy > 95)) {
+			} else if (slave.energy > 95) {
 				r.push(`As a nympho, ${he}'s almost always got a`);
 				if (slave.prostate > 1) {
 					r.push(`constant flow of precum leaking from`);
@@ -1953,7 +1953,7 @@ App.Desc.dick = function(slave) {
 			}
 			if (slave.prostate > 2) {
 				r.push(`The area above ${his} crotch has a slight swell to it from ${his} prostate implant. A constant dribble of precum streams from the hole and down ${his} testicles; ${his} artificially hyperactive prostate keeps ${him} that way.`);
-			} else if ((slave.prostate > 1)) {
+			} else if (slave.prostate > 1) {
 				r.push(`${He}'s got a string of precum dangling from the hole and down ${his} testicles; ${his} artificially hyperactive prostate keeps ${him} that way.`);
 			}
 			if (slave.aphrodisiacs > 0 || slave.inflationType === "aphrodisiac") {
@@ -1964,7 +1964,7 @@ App.Desc.dick = function(slave) {
 					r.push(`little precum beading at`);
 				}
 				r.push(`the hole.`);
-			} else if ((slave.energy > 95)) {
+			} else if (slave.energy > 95) {
 				r.push(`As a nympho, ${he}'s almost always got a`);
 				if (slave.prostate > 1) {
 					r.push(`constant flow of precum leaking from`);
diff --git a/src/npc/descriptions/crotch/vagina.js b/src/npc/descriptions/crotch/vagina.js
index 62189b9d2cd89f8b6a35eb745bbb525a44bbebe7..dd51844fb65c0e199bd08a458d35fd6c21723478 100644
--- a/src/npc/descriptions/crotch/vagina.js
+++ b/src/npc/descriptions/crotch/vagina.js
@@ -110,7 +110,7 @@ App.Desc.vagina = function(slave) {
 						}
 					}
 				}
-			} else if ((slave.vaginaLube < 2)) {
+			} else if (slave.vaginaLube < 2) {
 				if (slave.assignment === "work in the dairy" && V.dairyPregSetting > 1) {
 					r.push(`The dildo's ejaculate includes a drug that causes copious, constant vaginal lubrication, allowing it to fuck ${him} despite its giant size. The excess female fluid drips off ${him} and into a catch basin.`);
 				} else if ((slave.aphrodisiacs > 0) || (slave.inflationType === "aphrodisiac")) {
@@ -119,7 +119,7 @@ App.Desc.vagina = function(slave) {
 						r.push(`sopping`);
 					}
 					r.push(`wet.`);
-				} else if ((slave.energy > 95)) {
+				} else if (slave.energy > 95) {
 					r.push(`As a nympho, ${he}'s almost constantly wet.`);
 				} else if ((slave.fetishStrength > 60) && (slave.fetishKnown === 1)) {
 					r.push(`Judging by how wet ${he} is, ${he}'s probably fantasizing about`);
@@ -165,9 +165,9 @@ App.Desc.vagina = function(slave) {
 							r.push(`getting fucked.`);
 							break;
 					}
-				} else if ((slave.devotion > 50)) {
+				} else if (slave.devotion > 50) {
 					r.push(`As a devoted sex slave, ${he} has no trouble keeping ${him}self wet for ${his} ${WrittenMaster(slave)}.`);
-				} else if ((slave.devotion > 20)) {
+				} else if (slave.devotion > 20) {
 					r.push(`As an obedient sex slave, ${he} does ${his} best to keep ${him}self wet for ${his} ${WrittenMaster(slave)}.`);
 				}
 				if (slave.prostate !== 0) {
@@ -188,7 +188,7 @@ App.Desc.vagina = function(slave) {
 					r.push(`The dildo's ejaculate includes a drug that encourages vaginal lubrication, which is having a drastic effect on ${him}, since ${he}'s already very gifted in that regard. The dildo makes a wet noise every time it thrusts into ${him}, and femcum streams into a catch basin beneath ${him}. The smell of pussy is overwhelming.`);
 				} else if ((slave.aphrodisiacs > 0) || (V.saleDescription === 1 && V.gingering === "vasodilator") || (slave.inflationType === "aphrodisiac")) {
 					r.push(`The combination of the aphrodisiacs and ${his} natural tendency to produce a lot of female lubricant is having a drastic effect. ${His} cunt is absolutely beribboned with femcum, and ${he} smells strongly of wet, clean pussy.`);
-				} else if ((slave.energy > 95)) {
+				} else if (slave.energy > 95) {
 					r.push(`${He} has a naturally wet cunt, and in combination with ${his} nymphomania, it's soaking. ${He} smells of good clean female arousal.`);
 				} else if ((slave.fetishStrength > 60) && (slave.fetishKnown === 1)) {
 					r.push(`${His} naturally wet cunt is almost dripping female lubricant, and ${he} smells of good clean female arousal. ${He}'s probably fantasizing about`);
@@ -227,9 +227,9 @@ App.Desc.vagina = function(slave) {
 						default:
 							r.push(`getting fucked.`);
 					}
-				} else if ((slave.devotion > 50)) {
+				} else if (slave.devotion > 50) {
 					r.push(`${His} cunt is almost always soaking wet, but being near you has ${his} almost dripping.`);
-				} else if ((slave.devotion > 20)) {
+				} else if (slave.devotion > 20) {
 					r.push(`${His} cunt is almost always soaking wet, and being near you isn't affecting that.`);
 				} else {
 					r.push(`${His} cunt is almost always soaking wet, regardless of ${his} feelings.`);
@@ -286,20 +286,20 @@ App.Desc.vagina = function(slave) {
 						r.push(`${His} clit is quite large.`);
 					}
 					r.push(`${His} lack of hood makes it even more prominent.`);
-				} else if ((slave.clit === 2)) {
+				} else if (slave.clit === 2) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit is huge and visibly erect.`);
 					} else {
 						r.push(`${His} clit is huge.`);
 					}
 					r.push(`Lack of hood combined with its size means ${he} can't wear any clothes without being constantly stimulated.`);
-				} else if ((slave.clit === 3)) {
+				} else if (slave.clit === 3) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit is enormous, and since it's erect with arousal, it juts out proudly.`);
 					} else {
 						r.push(`${His} clit is enormous, almost a pseudophallus.`);
 					}
-				} else if ((slave.clit === 4)) {
+				} else if (slave.clit === 4) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.`);
 					} else {
@@ -312,7 +312,7 @@ App.Desc.vagina = function(slave) {
 						r.push(`${His} clit is massive, having reached the size of a large penis.`);
 					}
 				}
-			} else if ((slave.foreskin === 1)) {
+			} else if (slave.foreskin === 1) {
 				if (slave.clit === 1) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit is quite large and visibly hard.`);
@@ -320,21 +320,21 @@ App.Desc.vagina = function(slave) {
 						r.push(`${His} clit is quite large.`);
 					}
 					r.push(`${His} clitoral hood is stretched thin trying to cover it.`);
-				} else if ((slave.clit === 2)) {
+				} else if (slave.clit === 2) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit is huge and visibly erect.`);
 					} else {
 						r.push(`${His} clit is huge.`);
 					}
 					r.push(`${His} small hood is no longer able to cover it completely and large part of ${his} clitoris is always exposed.`);
-				} else if ((slave.clit === 3)) {
+				} else if (slave.clit === 3) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit is enormous, and since it's erect with arousal, it juts out proudly.`);
 					} else {
 						r.push(`${His} clit is enormous, almost a pseudophallus.`);
 					}
 					r.push(`${His} hood can no longer contain it and has slid back causing ${his} clitoris to be always exposed.`);
-				} else if ((slave.clit === 4)) {
+				} else if (slave.clit === 4) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.`);
 					} else {
@@ -349,7 +349,7 @@ App.Desc.vagina = function(slave) {
 					}
 					r.push(`${His} hood can no longer contain it and has slid back causing ${his} clitoris to be always exposed.`);
 				}
-			} else if ((slave.foreskin === 2)) {
+			} else if (slave.foreskin === 2) {
 				if (slave.clit === 1) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit is quite large and visibly hard.`);
@@ -357,21 +357,21 @@ App.Desc.vagina = function(slave) {
 						r.push(`${His} clit is quite large.`);
 					}
 					r.push(`It is completely covered by its hood.`);
-				} else if ((slave.clit === 2)) {
+				} else if (slave.clit === 2) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit is huge and visibly erect.`);
 					} else {
 						r.push(`${His} clit is huge.`);
 					}
 					r.push(`Its hood is stretched thin trying to cover it.`);
-				} else if ((slave.clit === 3)) {
+				} else if (slave.clit === 3) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit is enormous, and since it's erect with arousal, it juts out proudly.`);
 					} else {
 						r.push(`${His} clit is enormous, almost a pseudophallus.`);
 					}
 					r.push(`It's large enough that the hood can cover only half of it.`);
-				} else if ((slave.clit === 4)) {
+				} else if (slave.clit === 4) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.`);
 					} else {
@@ -386,7 +386,7 @@ App.Desc.vagina = function(slave) {
 					}
 					r.push(`${His} hood can no longer contain it and has slid back causing ${his} clitoris to be always exposed.`);
 				}
-			} else if ((slave.foreskin === 3)) {
+			} else if (slave.foreskin === 3) {
 				if (slave.clit === 1) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit is quite large and visibly hard.`);
@@ -394,21 +394,21 @@ App.Desc.vagina = function(slave) {
 						r.push(`${His} clit is quite large.`);
 					}
 					r.push(`The hood covering it is quite large making stimulation difficult.`);
-				} else if ((slave.clit === 2)) {
+				} else if (slave.clit === 2) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit is huge and visibly erect.`);
 					} else {
 						r.push(`${His} clit is huge.`);
 					}
 					r.push(`${His} large hood completely covers it.`);
-				} else if ((slave.clit === 3)) {
+				} else if (slave.clit === 3) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit is enormous, and since it's erect with arousal, it juts out proudly.`);
 					} else {
 						r.push(`${His} clit is enormous, almost a pseudophallus.`);
 					}
 					r.push(`${His} large hood covers all but the tip of ${his} clit even when aroused.`);
-				} else if ((slave.clit === 4)) {
+				} else if (slave.clit === 4) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.`);
 					} else {
@@ -431,21 +431,21 @@ App.Desc.vagina = function(slave) {
 						r.push(`${His} clit is quite large.`);
 					}
 					r.push(`${His} large thick hood covering it makes any stimulation difficult.`);
-				} else if ((slave.clit === 2)) {
+				} else if (slave.clit === 2) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit is huge and visibly erect.`);
 					} else {
 						r.push(`${His} clit is huge.`);
 					}
 					r.push(`${His} large thick hood covering it makes any stimulation difficult.`);
-				} else if ((slave.clit === 3)) {
+				} else if (slave.clit === 3) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit is enormous, and since it's erect with arousal, it juts out proudly.`);
 					} else {
 						r.push(`${His} clit is enormous, almost a pseudophallus.`);
 					}
 					r.push(`Matching its size is the thick hood covering it.`);
-				} else if ((slave.clit === 4)) {
+				} else if (slave.clit === 4) {
 					if (slave.devotion > 50) {
 						r.push(`${His} clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.`);
 					} else {
@@ -528,7 +528,7 @@ App.Desc.vagina = function(slave) {
 						if (slave.inflationType === "aphrodisiac") {
 							r.push(`${His} efforts force ${his} distended middle to jiggle around, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`);
 						}
-					} else if ((slave.dick !== 0)) {
+					} else if (slave.dick !== 0) {
 						r.push(`The extreme dose of aphrodisiacs has ${his} cock painfully erect and leaves precum dripping from its head.`);
 					}
 				} else {
@@ -651,9 +651,9 @@ App.Desc.vagina = function(slave) {
 		} else {
 			r.push(`${He}'s waxed and smooth.`);
 		}
-	} else if ((slave.physicalAge < _pubertyAge - 1)) {
+	} else if (slave.physicalAge < _pubertyAge - 1) {
 		r.push(`${He} has a few wisps of pubic hair.`);
-	} else if ((slave.physicalAge < _pubertyAge)) {
+	} else if (slave.physicalAge < _pubertyAge) {
 		r.push(`${He} is on the verge of puberty and has a small patch of ${slave.pubicHColor} pubic hair above ${his}`);
 		if (slave.dick > 0) {
 			r.push(`cock.`);
diff --git a/src/npc/descriptions/describePiercings.js b/src/npc/descriptions/describePiercings.js
index 7ecd6dabe90a1a08467cf7b5b2993a8d4f855bd9..d1a66a8ea26f15ca4d9b21a0ae750eb6a975a17c 100644
--- a/src/npc/descriptions/describePiercings.js
+++ b/src/npc/descriptions/describePiercings.js
@@ -183,11 +183,11 @@ App.Desc.piercing = function(slave, surface) {
 							r.push(`${He}'s wearing gold earrings in the shape of a pair of`);
 							if (slave.dick > 0 && slave.balls === 0) {
 								r.push(`limp dicks.`);
-							} else if ((slave.dick > 0)) {
+							} else if (slave.dick > 0) {
 								r.push(`erect cocks.`);
-							} else if ((slave.skill.oral >= 100)) {
+							} else if (slave.skill.oral >= 100) {
 								r.push(`tongues.`);
-							} else if ((slave.boobs > 1000)) {
+							} else if (slave.boobs > 1000) {
 								r.push(`heavy breasts.`);
 							} else {
 								r.push(`female bottoms.`);
@@ -416,7 +416,7 @@ App.Desc.piercing = function(slave, surface) {
 				if (slave.clothes === "slutty jewelry") {
 					r.push(`Since ${he}'s wearing slutty bangles ${he} has a short length of light chain dangling from ${his} dickhead piercing; as ${he} moves it tugs lightly at ${his} cock.`);
 				}
-			} else if ((slave.clitPiercing === 3)) {
+			} else if (slave.clitPiercing === 3) {
 				r.push(`${He} has a smart frenulum piercing.`);
 			}
 			if (slave.fuckdoll > 0) {
@@ -447,19 +447,19 @@ App.Desc.piercing = function(slave, surface) {
 			if (slave.dick !== 0) {
 				if (slave.dickPiercing === 1) {
 					r.push(`${He} has a row of studs down ${his} shaft.`);
-				} else if ((slave.dickPiercing === 2)) {
+				} else if (slave.dickPiercing === 2) {
 					r.push(`${He} has a row of heavy rings down ${his} shaft.`);
 				}
 				if (slave.scrotum !== 0) {
 					if (slave.dickPiercing === 1) {
 						r.push(`${He} has a couple of studs in ${his} ballsack.`);
-					} else if ((slave.dickPiercing === 2)) {
+					} else if (slave.dickPiercing === 2) {
 						r.push(`${He} has a row of rings down the center of ${his} ballsack, all the way from the base of ${his} shaft to ${his} perineum.`);
 					}
 				} else {
 					if (slave.dickPiercing === 1) {
 						r.push(`${He} has a couple of studs beneath the base of ${his} dick.`);
-					} else if ((slave.dickPiercing === 2)) {
+					} else if (slave.dickPiercing === 2) {
 						r.push(`${He} has a row of rings all the way from the base of ${his} shaft to ${his} perineum.`);
 					}
 				}
@@ -486,7 +486,7 @@ App.Desc.piercing = function(slave, surface) {
 					} else {
 						r.push(`asshole.`);
 					}
-				} else if ((slave.anusPiercing === 2)) {
+				} else if (slave.anusPiercing === 2) {
 					r.push(`${He} has a big ring between ${his} pussy and ${his} asshole`);
 					if (slave.fuckdoll > 0) {
 						r.push(`, which helps keep the strip of material`);
@@ -513,7 +513,7 @@ App.Desc.piercing = function(slave, surface) {
 					} else {
 						r.push(`butthole.`);
 					}
-				} else if ((slave.anusPiercing === 2)) {
+				} else if (slave.anusPiercing === 2) {
 					r.push(`${He} has a big ring between the base of ${his} dick and ${his} girly butthole, which has studs all around it.`);
 				}
 			}
diff --git a/src/npc/descriptions/describeTattoos.js b/src/npc/descriptions/describeTattoos.js
index d5078cca9cbf3c5c33ad5b5c4e10e7dc9a860c9e..8680017bdb5124fa44cc28608dda44c699162543 100644
--- a/src/npc/descriptions/describeTattoos.js
+++ b/src/npc/descriptions/describeTattoos.js
@@ -257,9 +257,9 @@ App.Desc.tattoo = function(slave, surface) {
 							} else {
 								if (slave.boobs > 800 && slave.lactation > 0) {
 									r.push(`'Grade AAA Milker' is tattooed on ${his} left arm, and 'Grade AAA Breeder' is tattooed on ${his} right.`);
-								} else if ((slave.visualAge > 35)) {
+								} else if (slave.visualAge > 35) {
 									r.push(`'Please let Mommy suck your cock' is tattooed on ${his} left arm, and 'Please rape Mommy's cunt' is tattooed on ${his} right.`);
-								} else if ((slave.visualAge < 25)) {
+								} else if (slave.visualAge < 25) {
 									r.push(`'Teach me how to suck cock' is tattooed on ${his} left arm, and 'Teach me how to take dick' is tattooed on ${his} right.`);
 								} else {
 									r.push(`'There are many sex slaves like me' is tattooed on ${his} left arm, and 'But this one is ${WrittenMaster(slave)}'s' is tattooed on ${his} right.`);
@@ -305,9 +305,9 @@ App.Desc.tattoo = function(slave, surface) {
 							} else {
 								if (slave.boobs > 800 && slave.lactation > 0) {
 									r.push(`'Please drink' is tattooed on ${his} left arm, and 'All my milk' is tattooed on ${his} right.`);
-								} else if ((slave.visualAge > 35)) {
+								} else if (slave.visualAge > 35) {
 									r.push(`'Please let Mommy worship your cock' is tattooed on ${his} left arm, and 'Please pleasure Mommy's pussy' is tattooed on ${his} right.`);
-								} else if ((slave.visualAge < 25)) {
+								} else if (slave.visualAge < 25) {
 									r.push(`'Please teach me how to suck cock' is tattooed on ${his} left arm, and 'Please teach me how to fuck' is tattooed on ${his} right.`);
 								} else {
 									r.push(`'There are many sex slaves like me' is tattooed on ${his} left arm, and 'But ${WrittenMaster(slave)} loves me' is tattooed on ${his} right.`);
@@ -396,7 +396,7 @@ App.Desc.tattoo = function(slave, surface) {
 							} else {
 								if (slave.boobs > 800 && slave.lactation > 0) {
 									r.push(`'Slave Cow'`);
-								} else if ((slave.visualAge > 35)) {
+								} else if (slave.visualAge > 35) {
 									r.push(`'MILF Slave'`);
 								} else if (slave.visualAge < 25) {
 									r.push(`'Slave Girl'`);
@@ -564,7 +564,7 @@ App.Desc.tattoo = function(slave, surface) {
 						case "scenes":
 							if (slave.dick > 0 && slave.balls > 0) {
 								r.push(`${His} buttocks are tattooed with lewd scenes; each of ${his} buttocks shows a smiling shemale offering ${his} anus, while each of ${his} thighs shows a rear view of a shemale simultaneously being sodomized and sodomizing.`);
-							} else if ((slave.dick > 0)) {
+							} else if (slave.dick > 0) {
 								r.push(`${His} buttocks are tattooed with lewd scenes; each of ${his} buttocks shows a gelding, legs together to conceal ${his} cock and display ${his} anus, while each of ${his} thighs shows a gelding being double penetrated in ${his} gaping anus.`);
 							} else {
 								r.push(`${His} buttocks are tattooed with lewd scenes; each of ${his} buttocks shows a ${woman} being sodomized while each of ${his} thighs shows a ${woman} being gangbanged in all ${his} holes.`);
diff --git a/src/npc/descriptions/face.js b/src/npc/descriptions/face.js
index c406180eb6b6f750fa6104dc70f1ae60899f9506..6106b94c93afcb41198b5d7af56492f5a46725d9 100644
--- a/src/npc/descriptions/face.js
+++ b/src/npc/descriptions/face.js
@@ -18,11 +18,11 @@ App.Desc.face = function(slave) {
 				r.push(`ugly and masculine, making ${him} a poor slave girl by appearance.`);
 			} else if (slave.face < -10) {
 				r.push(`unattractively masculine.`);
-			} else if ((slave.face <= 10)) {
+			} else if (slave.face <= 10) {
 				r.push(`masculine, but not entirely unappealing.`);
-			} else if ((slave.face <= 40)) {
+			} else if (slave.face <= 40) {
 				r.push(`attractively masculine.`);
-			} else if ((slave.face <= 95)) {
+			} else if (slave.face <= 95) {
 				r.push(`quite handsome in a masculine way.`);
 			} else {
 				r.push(`the height of masculine handsomeness.`);
@@ -35,11 +35,11 @@ App.Desc.face = function(slave) {
 				r.push(`ugly and androgynous; ${he} has neither masculine nor feminine appeal.`);
 			} else if (slave.face < -10) {
 				r.push(`strangely androgynous, and rather unattractive.`);
-			} else if ((slave.face <= 10)) {
+			} else if (slave.face <= 10) {
 				r.push(`strangely androgynous.`);
-			} else if ((slave.face <= 40)) {
+			} else if (slave.face <= 40) {
 				r.push(`androgynous, and attractive enough that this ambiguity is interesting.`);
-			} else if ((slave.face <= 95)) {
+			} else if (slave.face <= 95) {
 				r.push(`gorgeously androgynous in a complex way that captures the eye.`);
 			} else {
 				r.push(`so gorgeously androgynous that ${he} tends to induce sexual confusion.`);
@@ -52,11 +52,11 @@ App.Desc.face = function(slave) {
 				r.push(`ugly, but cute, with a pitiable appeal.`);
 			} else if (slave.face < -10) {
 				r.push(`not attractive, but is appealingly cute.`);
-			} else if ((slave.face <= 10)) {
+			} else if (slave.face <= 10) {
 				r.push(`merely average, but is appealingly cute.`);
-			} else if ((slave.face <= 40)) {
+			} else if (slave.face <= 40) {
 				r.push(`both attractive and appealingly cute.`);
-			} else if ((slave.face <= 95)) {
+			} else if (slave.face <= 95) {
 				r.push(`beautiful, yet somehow also approachably cute.`);
 			} else {
 				r.push(`an impossibly perfect combination of beauty and girl-next-door cuteness.`);
@@ -69,11 +69,11 @@ App.Desc.face = function(slave) {
 				r.push(`ugly, but also slutty, promising a good fuck despite its appearance.`);
 			} else if (slave.face < -10) {
 				r.push(`not attractive, but it has a certain sensual appeal.`);
-			} else if ((slave.face <= 10)) {
+			} else if (slave.face <= 10) {
 				r.push(`merely average, but undeniably sensual.`);
-			} else if ((slave.face <= 40)) {
+			} else if (slave.face <= 40) {
 				r.push(`both attractive and naturally sultry.`);
-			} else if ((slave.face <= 95)) {
+			} else if (slave.face <= 95) {
 				r.push(`both beautiful and sultry, bringing sex to mind naturally.`);
 			} else {
 				r.push(`very beautiful in a consummately sexual way.`);
@@ -86,11 +86,11 @@ App.Desc.face = function(slave) {
 				r.push(`ugly and unusual, a real misfortune.`);
 			} else if (slave.face < -10) {
 				r.push(`unattractive, and distinctive in its unattractiveness.`);
-			} else if ((slave.face <= 10)) {
+			} else if (slave.face <= 10) {
 				r.push(`quite average, but not uninteresting.`);
-			} else if ((slave.face <= 40)) {
+			} else if (slave.face <= 40) {
 				r.push(`attractive in an exotic and interesting way.`);
-			} else if ((slave.face <= 95)) {
+			} else if (slave.face <= 95) {
 				r.push(`exotic and beautiful, capable of catching the eye and keeping its gaze.`);
 			} else {
 				r.push(`very beautiful and exotic, almost to the point of alien fascination.`);
@@ -103,11 +103,11 @@ App.Desc.face = function(slave) {
 				r.push(`quite ugly.`);
 			} else if (slave.face < -10) {
 				r.push(`unattractive.`);
-			} else if ((slave.face <= 10)) {
+			} else if (slave.face <= 10) {
 				r.push(`average and conventionally feminine.`);
-			} else if ((slave.face <= 40)) {
+			} else if (slave.face <= 40) {
 				r.push(`conventionally attractive.`);
-			} else if ((slave.face <= 95)) {
+			} else if (slave.face <= 95) {
 				r.push(`conventionally beautiful.`);
 			} else {
 				r.push(`the height of conventional feminine beauty.`);
@@ -140,11 +140,11 @@ App.Desc.face = function(slave) {
 				r.push(`It bears a couple of unsightly moles.`);
 			} else if (slave.face < -10) {
 				r.push(`It bears an ugly mole.`);
-			} else if ((slave.face <= 10)) {
+			} else if (slave.face <= 10) {
 				r.push(`${He} has a distinctive beauty mark.`);
-			} else if ((slave.face <= 40)) {
+			} else if (slave.face <= 40) {
 				r.push(`${He} has a nice beauty mark.`);
-			} else if ((slave.face <= 95)) {
+			} else if (slave.face <= 95) {
 				r.push(`${He} has a beauty mark that adds to ${his} distinctiveness.`);
 			} else {
 				r.push(`${He} has a beauty mark that makes ${him} really memorable.`);
diff --git a/src/npc/descriptions/limbs.js b/src/npc/descriptions/limbs.js
index bcad2198f4131d4545bb9f82c33bc1a1f019871b..2421844d9ece4bdc4c791d55214db41198ebabbf 100644
--- a/src/npc/descriptions/limbs.js
+++ b/src/npc/descriptions/limbs.js
@@ -113,7 +113,7 @@ App.Desc.limbChange = function() {
 	 * @returns {string}
 	 */
 	function selector(slave, oldLimbs, returnTo = "") {
-		if (hasAllNaturalLimbs((slave))) {
+		if (hasAllNaturalLimbs(slave)) {
 			return "<span class='detail'>You must amputate your slaves limbs before you can attach prosthetics.</span>";
 		}
 		if (slave.PLimb < 1) {
diff --git a/src/npc/descriptions/longSlave.js b/src/npc/descriptions/longSlave.js
index 9f2b3788908b26a388fa6e9da5dd32b23a467182..afc8031a79abb23d070e5e00aaf0216890d77a68 100644
--- a/src/npc/descriptions/longSlave.js
+++ b/src/npc/descriptions/longSlave.js
@@ -616,7 +616,7 @@ App.Desc.longSlave = function({ slave = V.activeSlave, saleDescription = V.saleD
 				} else {
 					r.push(`${He} has a simple gold band on a length of chain around ${his} neck. `);
 				}
-			} else if ((slave.relationship === -3)) {
+			} else if (slave.relationship === -3) {
 				if (hasAnyArms(slave)) {
 					r.push(`${He} has a simple steel band on the little finger of ${his} `);
 					if (!hasLeftArm(slave)) {
diff --git a/src/npc/descriptions/skin.js b/src/npc/descriptions/skin.js
index 31e5547693a9b52b738c676c27d0560c21d623a6..e653dddda4829f686d7a862092528d635ba2c214 100644
--- a/src/npc/descriptions/skin.js
+++ b/src/npc/descriptions/skin.js
@@ -42,7 +42,7 @@ App.Desc.skin = function(slave) {
 				r.push(`${His} features seem slightly off.`);
 			}
 		}
-	} else if ((V.seeRace === 1)) {
+	} else if (V.seeRace === 1) {
 		r.push(`Ethnically, ${he}'s <span class="tan">${slave.race},</span> and ${his} skin is`);
 		r = r.concat(freckles());
 		r = r.concat(tanned());
diff --git a/src/npc/descriptions/style/clothing.js b/src/npc/descriptions/style/clothing.js
index b0048eaed9faf5a3ad6c8ced0421b95836edfb11..ea2da346322ee6a5d9bda4903d022bc354c6b6b5 100644
--- a/src/npc/descriptions/style/clothing.js
+++ b/src/npc/descriptions/style/clothing.js
@@ -134,7 +134,7 @@ App.Desc.clothing = function(slave) {
 						r.push(`${His} lingerie is white, since ${he} has a virgin asspussy,`);
 					} else if ((slave.fetish === "dom") || (slave.fetish === "sadist")) {
 						r.push(`${He}'s gone with black lingerie to look a bit more intimidating,`);
-					} else if ((slave.hormoneBalance < 0)) {
+					} else if (slave.hormoneBalance < 0) {
 						r.push(`${He}'s gone with blue lingerie for some reason,`);
 					} else if ((slave.dick > 0) && (slave.balls === 0)) {
 						r.push(`The lingerie is girly pink,`);
@@ -151,7 +151,7 @@ App.Desc.clothing = function(slave) {
 						r.push(`${His} lingerie is white, since ${he} has a virgin asspussy.`);
 					} else if ((slave.fetish === "dom") || (slave.fetish === "sadist")) {
 						r.push(`${He}'s gone with black lingerie to look a bit more intimidating.`);
-					} else if ((slave.hormoneBalance < 0)) {
+					} else if (slave.hormoneBalance < 0) {
 						r.push(`${He}'s gone with blue lingerie for some reason.`);
 					} else if ((slave.dick > 0) && (slave.balls === 0)) {
 						r.push(`The lingerie is girly pink.`);
@@ -169,7 +169,7 @@ App.Desc.clothing = function(slave) {
 						r.push(`${His} lingerie is white, since ${he} has a virgin asspussy,`);
 					} else if ((slave.fetish === "dom") || (slave.fetish === "sadist")) {
 						r.push(`${He}'s gone with black lingerie to look a bit more intimidating,`);
-					} else if ((slave.hormoneBalance < 0)) {
+					} else if (slave.hormoneBalance < 0) {
 						r.push(`${He}'s gone with blue lingerie for some reason,`);
 					} else if ((slave.dick > 0) && (slave.balls === 0)) {
 						r.push(`The lingerie is girly pink,`);
@@ -185,7 +185,7 @@ App.Desc.clothing = function(slave) {
 						r.push(`${His} lingerie is white, since ${he} has a virgin asspussy.`);
 					} else if ((slave.fetish === "dom") || (slave.fetish === "sadist")) {
 						r.push(`${He}'s gone with black lingerie to look a bit more intimidating.`);
-					} else if ((slave.hormoneBalance < 0)) {
+					} else if (slave.hormoneBalance < 0) {
 						r.push(`${He}'s gone with blue lingerie for some reason.`);
 					} else if ((slave.dick > 0) && (slave.balls === 0)) {
 						r.push(`The lingerie is girly pink.`);
@@ -345,7 +345,7 @@ App.Desc.clothing = function(slave) {
 					r.push(`"BREEDER" on the front in capital letters.`);
 				} else if ((slave.fetish === "boobs") && (slave.fetishStrength > 95) && (slave.fetishKnown === 1)) {
 					r.push(`"I <3 BOOBS" on the front in capital letters.`);
-				} else if ((slave.energy > 95)) {
+				} else if (slave.energy > 95) {
 					r.push(`"Fuck me!" across the front in huge letters.`);
 				} else if ((slave.dick === 0) && (slave.vagina === -1)) {
 					r.push(`"NULL ASSWHORE" on the front in capital letters.`);
@@ -353,13 +353,13 @@ App.Desc.clothing = function(slave) {
 					r.push(`"HERMAPHRODITE" on the front in capital letters.`);
 				} else if ((slave.dick > 0) && (slave.balls > 0)) {
 					r.push(`"Sissy Slave" across the front in large letters.`);
-				} else if ((slave.dick > 0)) {
+				} else if (slave.dick > 0) {
 					r.push(`"Orchi Bitch" across the front in large letters.`);
-				} else if ((slave.vagina === 0)) {
+				} else if (slave.vagina === 0) {
 					r.push(`"Virgin!" across the front in large letters.`);
-				} else if ((slave.anus === 0)) {
+				} else if (slave.anus === 0) {
 					r.push(`"Anal Virgin!" across the front in large letters.`);
-				} else if ((slave.pregKnown === 1)) {
+				} else if (slave.pregKnown === 1) {
 					r.push(`"I'm Pregnant!" across the front in large letters.`);
 				} else {
 					r.push(`"Property of ${PlayerName()}" across the front.`);
@@ -890,13 +890,13 @@ App.Desc.clothing = function(slave) {
 				r.push(`including a belt of thin chain with a lewd ornament (a little`);
 				if (slave.dick > 0 && slave.balls === 0) {
 					r.push(`curved golden cock without balls)`);
-				} else if ((slave.dick > 0)) {
+				} else if (slave.dick > 0) {
 					r.push(`golden cock and balls)`);
 				} else if ((slave.fetish === "cumslut") && (slave.fetishStrength > 95)) {
 					r.push(`pair of golden lips)`);
-				} else if ((slave.boobs > 1000)) {
+				} else if (slave.boobs > 1000) {
 					r.push(`pair of golden breasts)`);
-				} else if ((slave.vagina === -1)) {
+				} else if (slave.vagina === -1) {
 					r.push(`crinkled anus)`);
 				} else {
 					r.push(`golden pussy)`);
diff --git a/src/npc/generate/generateMarketSlave.js b/src/npc/generate/generateMarketSlave.js
index 1088be2f554d0a8959f61628fa5d9273b9566c30..fdc0e22bdbb567d9539abd70e09e66d0d1e65674 100644
--- a/src/npc/generate/generateMarketSlave.js
+++ b/src/npc/generate/generateMarketSlave.js
@@ -197,7 +197,7 @@ globalThis.generateMarketSlave = function(market = "kidnappers", numArcology = 1
 			}
 			if (V.corp.SpecCosmetics === 1) {
 				r += `The corporation uses subtle cosmetic surgery to improve its slaves for sale. `;
-				if ((slave.anus > 3)) {
+				if (slave.anus > 3) {
 					slave.anus = 3;
 					if (slave.skill.anal > 10) {
 						slave.skill.anal -= 10;
@@ -269,13 +269,13 @@ globalThis.generateMarketSlave = function(market = "kidnappers", numArcology = 1
 			}
 			if (V.corp.SpecHormones === 1) {
 				r += `It applies almost universal female hormone therapy. `;
-				if ((slave.dick > 0)) {
+				if (slave.dick > 0) {
 					slave.dick = Math.clamp(slave.dick-1, 1, 6);
 				}
-				if ((slave.balls > 0)) {
+				if (slave.balls > 0) {
 					slave.balls = Math.clamp(slave.balls-1, 1, 6);
 				}
-				if ((slave.clit > 0)) {
+				if (slave.clit > 0) {
 					slave.clit = Math.clamp(slave.clit-1, 0, 3);
 				}
 				if ((slave.voice < 3) && (slave.voice > 0)) {
@@ -298,7 +298,7 @@ globalThis.generateMarketSlave = function(market = "kidnappers", numArcology = 1
 				} else if ((slave.faceShape === "androgynous")) {
 					slave.faceShape = "normal";
 				}
-				if ((slave.physicalAge < 25)) {
+				if (slave.physicalAge < 25) {
 					slave.shoulders = Math.clamp(slave.shoulders-1, -2, 2);
 					slave.hips = Math.clamp(slave.hips+1, -2, 2);
 				}
@@ -308,7 +308,7 @@ globalThis.generateMarketSlave = function(market = "kidnappers", numArcology = 1
 				if ((slave.nipples === "tiny")) {
 					slave.nipples = "cute";
 				}
-				if ((slave.height > 180)) {
+				if (slave.height > 180) {
 					slave.height -= jsRandom(3, 6);
 				}
 				slave.devotion += jsRandom(5, 10);
@@ -316,16 +316,16 @@ globalThis.generateMarketSlave = function(market = "kidnappers", numArcology = 1
 				slave.attrXY = Math.clamp(slave.attrXY+jsRandom(5, 10), 0, 100);
 			} else if (V.corp.SpecHormones === 2) {
 				r += `It applies almost universal male hormone therapy. `;
-				if ((slave.dick > 0)) {
+				if (slave.dick > 0) {
 					slave.dick = Math.clamp(slave.dick+1, 1, 6);
 				}
-				if ((slave.balls > 0)) {
+				if (slave.balls > 0) {
 					slave.balls = Math.clamp(slave.balls+1, 1, 6);
 				}
 				if ((slave.clit > 0) && (slave.dick === 0)) {
 					slave.clit = Math.clamp(slave.clit+1, 0, 3);
 				}
-				if ((slave.voice > 1)) {
+				if (slave.voice > 1) {
 					slave.voice = Math.clamp(slave.voice-1, 1, 3);
 				}
 				if ((slave.vagina > -1) && (slave.vaginaLube > 0)) {
@@ -341,7 +341,7 @@ globalThis.generateMarketSlave = function(market = "kidnappers", numArcology = 1
 				} else {
 					slave.faceShape = "androgynous";
 				}
-				if ((slave.physicalAge < 25)) {
+				if (slave.physicalAge < 25) {
 					slave.shoulders = Math.clamp(slave.shoulders+1, -2, 2);
 					slave.hips = Math.clamp(slave.hips-1, -2, 2);
 				}
@@ -351,7 +351,7 @@ globalThis.generateMarketSlave = function(market = "kidnappers", numArcology = 1
 				if ((slave.nipples === "huge")) {
 					slave.nipples = "cute";
 				}
-				if ((slave.height < 155)) {
+				if (slave.height < 155) {
 					slave.height += jsRandom(3, 6);
 				}
 				slave.devotion -= jsRandom(5, 10);
diff --git a/src/uncategorized/buySlaves.tw b/src/uncategorized/buySlaves.tw
index 4955a1cf6d709b12fd796b4ee61e9bc6a049b79b..5b696027dbc552b85ec5b4927607e1a1d06c0aa0 100644
--- a/src/uncategorized/buySlaves.tw
+++ b/src/uncategorized/buySlaves.tw
@@ -580,7 +580,7 @@
 		You do not own any standard bioreactors.
 	<</if>>
 	<<if ($menialBioreactors > 0) || ($arcologies[0].FSPaternalist == "unset")>>
-		The market price of standard bioreactors is <<print cashFormat((_menialPrice-100))>>.
+		The market price of standard bioreactors is <<print cashFormat(_menialPrice-100)>>.
 		<<set _optionsBreak = 0>>
 		<<if _bulkMax > 0>>
 			<<if $arcologies[0].FSPaternalist == "unset" && $cash > _menialPrice+100>>
diff --git a/src/uncategorized/costsReport.tw b/src/uncategorized/costsReport.tw
index fd464db3220d179f9d2f1206981d70cc8c76f733..f971c456965480b4182a2adfa960e35b175656df 100644
--- a/src/uncategorized/costsReport.tw
+++ b/src/uncategorized/costsReport.tw
@@ -807,7 +807,7 @@ $researchLab.level > 0>>
 			<<set _individualCosts += 25>>
 		<<case "food">>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;<i>Costs of filler food for slave stuffing; 2 liters:</i>
-			<<print cashFormat(($foodCost))>>
+			<<print cashFormat($foodCost)>>
 			<<set _individualCosts += ($foodCost)>>
 		<<case "curative" "aphrodisiac" "tightener">>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;<i>Costs of specially formulated drug mixtures for enemas; 2 liters:</i>
diff --git a/src/uncategorized/scheduledEvent.tw b/src/uncategorized/scheduledEvent.tw
index 6e48235a0e9a57b3a0eccedd4fc054d8328f6675..45ae65c25e58740425d03e981382b1b232652ba1 100644
--- a/src/uncategorized/scheduledEvent.tw
+++ b/src/uncategorized/scheduledEvent.tw
@@ -143,7 +143,7 @@
 	<<goto "SE coursing">>
 <<elseif $policies.raidingMercenaries == 1 && ($week > ($raided + 6))>>
 	<<goto "SE raiding">>
-<<elseif ((($fighterIDs.length > 1) && ($pitBG == 0)) || (($fighterIDs.length > 0) && ($Bodyguard != 0) && ($pitBG == 1)) || (($pitAnimal > 0) && ($fighterIDs.length > 0)) || (($killChoice == 2))) && ($pitFought == 0)>>
+<<elseif ((($fighterIDs.length > 1) && ($pitBG == 0)) || (($fighterIDs.length > 0) && ($Bodyguard != 0) && ($pitBG == 1)) || (($pitAnimal > 0) && ($fighterIDs.length > 0)) || ($killChoice == 2)) && ($pitFought == 0)>>
 	<<if $pitLethal == 1>><<goto "SE lethal pit">><<else>><<goto "SE nonlethal pit">><</if>>
 <<elseif ($bioreactorPerfectedID != 0) && ($bioreactorsAnnounced != 1)>>
 	<<goto "P bioreactor perfected">>
diff --git a/src/uncategorized/seWeddingDouble.tw b/src/uncategorized/seWeddingDouble.tw
index e7ac818551e17a480f986888bd2a43dc23f72db0..f8a84ddd7bdd1ac3136a720a70b91eed59d97aa7 100644
--- a/src/uncategorized/seWeddingDouble.tw
+++ b/src/uncategorized/seWeddingDouble.tw
@@ -784,7 +784,7 @@
 		<</if>>
 	<</if>>
 
-	<<if (_slave1.chastityPenis && _slave2.chastityPenis) || (canAchieveErection(_slave1) && canAchieveErection(_slave2)) || ((_slave1.dick > 0) && (_slave2.dick > 0)) || ((_slave1.clit > 1 && _slave2.clit > 1)) || ((_slave1.clit <= 1) && (_slave2.clit <= 1))>>
+	<<if (_slave1.chastityPenis && _slave2.chastityPenis) || (canAchieveErection(_slave1) && canAchieveErection(_slave2)) || ((_slave1.dick > 0) && (_slave2.dick > 0)) || (_slave1.clit > 1 && _slave2.clit > 1) || ((_slave1.clit <= 1) && (_slave2.clit <= 1))>>
 		<<if _slave1.chastityPenis>>
 			Their slave dicks are hidden by their chastity cages.
 		<<elseif canAchieveErection(_slave1)>>
@@ -882,7 +882,7 @@
 
 	There is no aisle for them to <<if !hasAnyLegs(_slave1) && !hasAnyLegs(_slave2)>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if !hasAnyLegs(_slave1) && !hasAnyLegs(_slave2)>>walk alongside the slaves carrying<<else>>walk<</if>> them there; this symbolizes their submission to you
 
-	<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>>
+	<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || (_slave1.devotion >= -20 && _slave2.devotion >= -20)>>
 		<<if _slave1.fetish == "mindbroken">>
 			despite the fact that both slaves had to be pushed into walking towards you.
 		<<elseif _slave1.devotion+_slave1.trust >= 175>>
@@ -925,7 +925,7 @@
 
 	<<if !hasAnyLegs(_slave1) && !hasAnyLegs(_slave2)>>
 		the slaves carrying their legless torsos set them down on the floor and prop them up so their heads are level with your crotch,
-	<<elseif ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>>
+	<<elseif ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || (_slave1.devotion >= -20 && _slave2.devotion >= -20)>>
 		<<if _slave1.fetish == "mindbroken">>
 			you push them onto their knees so their heads
 		<<elseif _slave1.devotion+_slave1.trust >= 175>>
@@ -1065,7 +1065,7 @@
 	<</if>>
 	<br><br>
 
-	<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>>
+	<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || (_slave1.devotion >= -20 && _slave2.devotion >= -20)>>
 		<<if _slave1.fetish == "mindbroken">>
 			Both slaves are mindbroken, so you gather them up and hold them in front of you, pulling their panties off as you do. They follows your motions like ragdolls. You maneuver your dick inside _slave1.slaveName first while holding $him against your <<if $PC.boobs >= 300>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull $his _knees1 up to give your guests a good view as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. $He is left to face them, staring off into space. Though $he faces the crowd, $his mind is empty; this might as well be any other fucking to $him. $He twitches ever so slightly when your seed flows into $him, orgasming robotically to @@.green;applause from your guests.@@ Next, you turn your attention to _slave2.slaveName. You pull _him2 in, pushing your dick into _his2 <<if (_slave2.mpreg == 1 && _slave2.anus == 0) || (_slave2.vagina == 0)>>virgin <<elseif (_slave2.mpreg == 1 && _slave2.anus == 1) || (_slave2.vagina == 1)>>tight <</if>><<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. $He doesn't respond, and _his2 reaction when you fill _his2 <<if _slave2.mpreg>>ass<<else>>pussy<</if>> with more jizz to @@.green;more applause from your guests@@ is entirely mechanical. You'll fuck them repeatedly over the next few days, ensuring impregnation.
 		<<elseif _slave1.devotion+_slave1.trust >= 175>>
@@ -1113,7 +1113,7 @@
 	<<set _slave2.pregSource = -1>>
 	<<if ((_slave1.vagina == 0) || (_slave1.mpreg == 1 && _slave1.anus == 0)) && ((_slave2.vagina == 0) || (_slave2.mpreg == 1 && _slave2.anus == 0))>>
 		Naturally, the ceremony @@.lime;took their virginities;@@
-		<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>>
+		<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || (_slave1.devotion >= -20 && _slave2.devotion >= -20)>>
 			<<if (_slave1.fetish == "mindbroken")>>
 				they didn't notice.
 			<<elseif _slave1.devotion+_slave1.trust >= 175>>
@@ -1203,7 +1203,7 @@
 	<</if>>
 
 	<<if ((_slave1.fetish == "pregnancy") && (_slave1.fetishStrength > 60)) && ((_slave2.fetish == "pregnancy") && (_slave2.fetishStrength > 60))>>
-		<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>>
+		<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || (_slave1.devotion >= -20 && _slave2.devotion >= -20)>>
 			<<if _slave1.fetish == "mindbroken">>
 			<<elseif _slave1.devotion+_slave1.trust >= 175>>
 				As pregnancy fetishists, @@.hotpink;they confidently believes this wedding will be the high point of $his life.@@
@@ -1286,7 +1286,7 @@
 	<<if (_slave1.relationship != 0) || (_slave2.relationship != 0)>>
 		<<if _slave1.relationshipTarget == _slave2.ID>>
 			/* TODO: not sure about these */
-			<<if ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>>
+			<<if ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || (_slave1.devotion >= -20 && _slave2.devotion >= -20)>>
 				<<if _slave1.devotion+_slave1.trust >= 175>>
 					The fact that their relationship together now involves you @@.hotpink;excites them to no end.@@
 					<<set _slave1.devotion += 10>>
@@ -1462,7 +1462,7 @@
 <<elseif $weddingPlanned == 2>>
 
 	The ceremony to bind <<= SlaveFullName(_slave1)>> and <<= SlaveFullName(_slave2)>> to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> is an all day affair.
-	<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>>
+	<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || (_slave1.devotion >= -20 && _slave2.devotion >= -20)>>
 		<<if _slave1.fetish == "mindbroken">>
 			/* TODO: rewrite for slaves that can't walk */
 			They spent the day before resting and preparing themselves, if you can call sitting around mindlessly preparing. They spend most of the day-long party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that they'll be bound to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they are extracted and taken off to be bathed.
@@ -1761,7 +1761,7 @@
 	<<if (_slave1.relationship != 0) || (_slave2.relationship != 0)>>
 		<<if _slave1.relationshipTarget == _slave2.ID>>
 			/* TODO: not sure about these */
-			<<if ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>>
+			<<if ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || (_slave1.devotion >= -20 && _slave2.devotion >= -20)>>
 				<<if _slave1.devotion+_slave1.trust >= 175>>
 					The fact that their relationship together now involves you @@.hotpink;excites them to no end.@@
 					<<set _slave1.devotion += 10>>
@@ -2127,7 +2127,7 @@
 		<</if>>
 	<</if>>
 
-	<<if ((_slave1.chastityPenis) && (_slave2.chastityPenis)) || (canAchieveErection(_slave1) && canAchieveErection(_slave2)) || ((_slave1.dick > 0) && (_slave2.dick > 0)) || ((_slave1.clit > 1 && _slave2.clit > 1)) || ((_slave1.clit <= 1) && (_slave2.clit <= 1))>>
+	<<if ((_slave1.chastityPenis) && (_slave2.chastityPenis)) || (canAchieveErection(_slave1) && canAchieveErection(_slave2)) || ((_slave1.dick > 0) && (_slave2.dick > 0)) || (_slave1.clit > 1 && _slave2.clit > 1) || ((_slave1.clit <= 1) && (_slave2.clit <= 1))>>
 		<<if (_slave1.chastityPenis)>>
 			Their slave dicks are hidden by their chastity cages.
 		<<elseif canAchieveErection(_slave1)>>
@@ -2225,7 +2225,7 @@
 
 	There is no aisle for them to <<if !hasAnyLegs(_slave1) && !hasAnyLegs(_slave2)>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if !hasAnyLegs(_slave1) && !hasAnyLegs(_slave2)>>walk alongside the slaves carrying<<else>>walk<</if>> them there; this symbolizes their submission to you
 
-	<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>>
+	<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || (_slave1.devotion >= -20 && _slave2.devotion >= -20)>>
 		<<if _slave1.fetish == "mindbroken">>
 			despite the fact that both slaves had to be pushed into walking towards you.
 		<<elseif _slave1.devotion+_slave1.trust >= 175>>
@@ -2361,7 +2361,7 @@
 	<</if>>
 	<br><br>
 	Then, you flip their veils over their heads so they can <<if $PC.dick != 0>>suck your dick<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eat you out<</if>> in front of your guests, as the ceremony requires.
-	<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>>
+	<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || (_slave1.devotion >= -20 && _slave2.devotion >= -20)>>
 		They approach their task
 		<<if _slave1.fetish == "mindbroken">>
 			with robotic obedience. You climax promptly, <<if $PC.dick != 0>>shooting your cum down _slave1.slaveName's throat<<else>>covering _slave1.slaveName's face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They absentmindedly rests their head against your <<if $PC.boobs >= 300>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle them in your arms, gazing up at you with empty eyes. /* TODO: will need a rewrite*/
@@ -2404,7 +2404,7 @@
 	<<if (_slave1.relationship != 0) || (_slave2.relationship != 0)>>
 		<<if _slave1.relationshipTarget == _slave2.ID>>
 			/* TODO: not sure about these */
-			<<if ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>>
+			<<if ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || (_slave1.devotion >= -20 && _slave2.devotion >= -20)>>
 				<<if _slave1.devotion+_slave1.trust >= 175>>
 					The fact that their relationship together now involves you @@.hotpink;excites them to no end.@@
 					<<set _slave1.devotion += 10>>