diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 8b751810777ccfc3ecf3313a757e06c808623190..ff89f7babf14b4afbabc34a8ec6091f45cc108bc 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -2005,7 +2005,7 @@ Pregmod
 
 	26
 	-added anon's aphrodisiac demonstration to FCTV
-	-fuckdoll conversion now unsets inflation
+	-Fuckdoll conversion now unsets inflation
 
 4/04/2018
 
@@ -2363,7 +2363,7 @@ Pregmod
 	-more fixes to player birth
 
 	378
-	-fixed issues with mindbreak/fuckdolls and corsets/heels
+	-fixed issues with mindbreak/Fuckdolls and corsets/heels
 	-masochists now get off from extreme corsets and heels
 	-fixes to trade show
 
@@ -7120,7 +7120,7 @@ Pregmod
 
 	2
 	-fixed bugs
-	-fuckdolls can now use pregmod added diets
+	-Fuckdolls can now use pregmod added diets
 
 	1
 	-fixed >>58858
diff --git a/devTools/PreCompile.sh b/devTools/PreCompile.sh
index 8ea804f5c908eb10b8bcfee67d64831a856b78c2..9c426e21f76b2088f46a7442f25719b0558fd2a8 100755
--- a/devTools/PreCompile.sh
+++ b/devTools/PreCompile.sh
@@ -1,7 +1,7 @@
-#!/bin/sh
-mega-login $1 $2;echo 'New clone? 0:y 1:n 2:na';read Opt #Requirements:MEGAcmd,minify,git. U=$1 P=$2 rDir=$3 lDir=$4 repo=$5
+#!/bin/sh U=$1 P=$2 rDir=$3 lDir=$4 repo=$5 Reqs:MEGAcmd,minify,git
+mega-login $1 $2;echo 'New clone? 0:y 1:n 2:na';read Opt
 while true;do cd $4;gen=0
 	if [ $Opt == 0 ];then mkdir -p $4&&git clone -q --depth 1 $5 $4&&cd $4&&if [[ ! `mega-ls $3|cut -c29-32|paste -sd,` =~ `git log|head -1|cut -c8-11` ]];then gen=1;fi #arraryCheck:stackoverflow.com/a/15394738
 	elif [[ $Opt > 0||$gen < 1 ]];then git fetch -q&&if [ `git rev-list ...origin --count` -gt 0 ];then git reset -q --hard&&git pull -q&&gen=1;fi ;fi #gitCheck:stackoverflow.com/a/17192101
-	if [[ $Opt > 1||$gen > 0 ]];then minify -rao $4 $4&&./compile --insane&&cd bin/&&rm FC-*;mv * FC-pregmod-`git log -1 --format=%cd --date=format:%m-%d-%Y-%H-%M`-`git log|head -1|cut -c8-11`.html&&mega-put -c * $3&&mega-rm $3`mega-ls $3|sort -r|tail -n +11`;fi
-Opt=-1;clear;sleep 15m;done
+	if [[ $Opt > 1||$gen > 0 ]];then rm bin/*;minify -rao $4 $4&&./compile.sh -q&&cd bin/&&mv *.h* FC-pregmod-`git log -1 --format=%cd --date=format:%m-%d-%Y-%H-%M`-`git log|head -1|cut -c8-11`.html&&mega-put -c *.h* $3&&mega-rm $3`mega-ls $3|sort -r|tail -n +11`;fi
+Opt=-1;clear;sleep 15m;done
\ No newline at end of file
diff --git a/devTools/javaSanityCheck/src/Main.java b/devTools/javaSanityCheck/src/Main.java
index 72e0e7cfdd42526b36868ec9f431af53ef4eb9f2..1cf56950cc03c88d5ee3e6bf0bf0e82d26b628f3 100644
--- a/devTools/javaSanityCheck/src/Main.java
+++ b/devTools/javaSanityCheck/src/Main.java
@@ -313,7 +313,7 @@ public class Main {
 				stack.push(new CommentElement(currentLine, currentPosition));
 				break;
 			//case '(':
-			//	stack.push(new BracketElement(currentLine, currentPosition));
+			//stack.push(new BracketElement(currentLine, currentPosition));
 		}
 	}
 
diff --git a/devTools/javaSanityCheck/src/element/AngleBracketElement.java b/devTools/javaSanityCheck/src/element/AngleBracketElement.java
index 18ef66c8c33f8918a6da338fd8c025d0698ba2a8..124c85954458795262dafd34d96de9064f3965b0 100644
--- a/devTools/javaSanityCheck/src/element/AngleBracketElement.java
+++ b/devTools/javaSanityCheck/src/element/AngleBracketElement.java
@@ -55,7 +55,7 @@ public class AngleBracketElement extends Element {
 						return 1;
 					case '>':// empty <>
 					case ' ':// assume comparison
-					case '='://	"		"
+					case '=':// "		"
 					case '3':// a heart: <3
 						return 2;
 					default:
diff --git a/devTools/sugarcube.d.ts b/devTools/sugarcube.d.ts
index 8ecc4ea5dbeb387749a9c2ab70e58e103a97eb0b..eb6c41221c6189eed979215c160f377ba31ced22 100644
--- a/devTools/sugarcube.d.ts
+++ b/devTools/sugarcube.d.ts
@@ -2001,13 +2001,13 @@ declare global {
 		 * JSON.reviveWrapper( <valid JavaScript code string> ); // -> Without data chunk
 		 * JSON.reviveWrapper( <valid JavaScript code string> , myOwnData); // -> With data chunk
 		 * // E.g. Assume that you're attempting to revive an instance of a custom class named
-		 * //	  `Character`, which is assigned to a story variable named `$pc`.  The call
-		 * //	  to `JSON.reviveWrapper()` might look something like the following.
+		 * // `Character`, which is assigned to a story variable named `$pc`.  The call
+		 * // to `JSON.reviveWrapper()` might look something like the following.
 		 * var ownData = {};
 		 * Object.keys(this).forEach(function (pn) { ownData[pn] = clone(this[pn]); }, this);
 		 * return JSON.reviveWrapper('new Character($ReviveData$)', ownData);
 		 */
-		reviveWrapper(codeString: strin, reviveData?: any): [];
+		reviveWrapper(codeString: string, reviveData?: any): [];
 	}
 
 	interface Math {
diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt
index 5f3f2023049dd34bb83986ba9b3b25e17e931737..a56a520f908a7cd93b188f4dc681bc3ba40168d4 100644
--- a/slave variables documentation - Pregmod.txt	
+++ b/slave variables documentation - Pregmod.txt	
@@ -3081,7 +3081,7 @@ counter.slavesKnockedUp:
 How many of your slaves she has knocked up.
 
 counter.PCKnockedUp:
-
+
 How many times she has knocked you up.
 
 custom:
@@ -3425,6 +3425,7 @@ Values between 0 and -20 are reserved.
 -5 - player's client
 -6 - Societal Elite
 -7 - designer baby
+-9 - Futanari Sister
 
 father:
 
@@ -3439,6 +3440,7 @@ Values between 0 and -20 are reserved.
 -5 - player's client
 -6 - Societal Elite
 -7 - designer baby
+-9 - Futanari Sister
 
 sisters:
 
@@ -3597,6 +3599,7 @@ Used to tell if the slave is from this game or a previous.
 1 - yes
 
 tankBaby:
+
 Whether she was put in the incubator at birth
 accepts int
 0 - no
@@ -3606,7 +3609,6 @@ accepts int
 missingEyes:
 
 are eyes missing?
-
 0 - none
 1 - yes, left
 2 - yes, right
@@ -3615,7 +3617,6 @@ are eyes missing?
 missingArms:
 
 are arms missing?
-
 0 - none
 1 - yes, left
 2 - yes, right
@@ -3624,13 +3625,13 @@ are arms missing?
 missingLegs:
 
 are legs missing?
-
 0 - none
 1 - yes, left
 2 - yes, right
 3 - yes, both
 
 geneMods:
+
 	NCS:
 		Does slave have induced NCS?
 		0 - no
@@ -3641,6 +3642,7 @@ geneMods:
 		1 - yes
 
 slaveCost:
+
 Amount of cash paid to acquire the slave
 accepts negative numbers, 0, or 1.
 1 - unknown price
@@ -3648,14 +3650,17 @@ accepts negative numbers, 0, or 1.
 negative - amount paid
 
 lifetimeCashExpenses:
+
 Amount of cash you have spent because of this slave
 accepts negative numbers or 0
 
 lifetimeCashIncome:
+
 Total amount of cash you have earned because of this slave
 accepts positive numbers or 0
 
 lastWeeksCashIncome:
+
 Amount of cash you have earned because of this slave last week
 accepts positive numbers or 0
 
diff --git a/src/001-lib/Jquery/Jquery.js b/src/001-lib/Jquery/Jquery.js
index cc817707cf93a2f0a8d78be7175b2351a6b24247..d86ddd25711246540b12c129cadd0cb0e5654597 100644
--- a/src/001-lib/Jquery/Jquery.js
+++ b/src/001-lib/Jquery/Jquery.js
@@ -3,7 +3,7 @@
     * http://jqueryui.com
     * Includes: widget.js, position.js, data.js, disable-selection.js, effect.js, effects/effect-blind.js, effects/effect-bounce.js, effects/effect-clip.js, effects/effect-drop.js, effects/effect-explode.js, effects/effect-fade.js, effects/effect-fold.js, effects/effect-highlight.js, effects/effect-puff.js, effects/effect-pulsate.js, effects/effect-scale.js, effects/effect-shake.js, effects/effect-size.js, effects/effect-slide.js, effects/effect-transfer.js, focusable.js, form-reset-mixin.js, jquery-1-7.js, keycode.js, labels.js, scroll-parent.js, tabbable.js, unique-id.js, widgets/accordion.js, widgets/autocomplete.js, widgets/button.js, widgets/checkboxradio.js, widgets/controlgroup.js, widgets/datepicker.js, widgets/dialog.js, widgets/draggable.js, widgets/droppable.js, widgets/menu.js, widgets/mouse.js, widgets/progressbar.js, widgets/resizable.js, widgets/selectable.js, widgets/selectmenu.js, widgets/slider.js, widgets/sortable.js, widgets/spinner.js, widgets/tabs.js, widgets/tooltip.js
     * Copyright jQuery Foundation and other contributors; Licensed MIT */
-    
+
     (function(t){"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)})(function(t){function e(t){for(var e=t.css("visibility");"inherit"===e;)t=t.parent(),e=t.css("visibility");return"hidden"!==e}function i(t){for(var e,i;t.length&&t[0]!==document;){if(e=t.css("position"),("absolute"===e||"relative"===e||"fixed"===e)&&(i=parseInt(t.css("zIndex"),10),!isNaN(i)&&0!==i))return i;t=t.parent()}return 0}function s(){this._curInst=null,this._keyEvent=!1,this._disabledInputs=[],this._datepickerShowing=!1,this._inDialog=!1,this._mainDivId="ui-datepicker-div",this._inlineClass="ui-datepicker-inline",this._appendClass="ui-datepicker-append",this._triggerClass="ui-datepicker-trigger",this._dialogClass="ui-datepicker-dialog",this._disableClass="ui-datepicker-disabled",this._unselectableClass="ui-datepicker-unselectable",this._currentClass="ui-datepicker-current-day",this._dayOverClass="ui-datepicker-days-cell-over",this.regional=[],this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:!1,hideIfNoPrevNext:!1,navigationAsDateFormat:!1,gotoCurrent:!1,changeMonth:!1,changeYear:!1,yearRange:"c-10:c+10",showOtherMonths:!1,selectOtherMonths:!1,showWeek:!1,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:!0,showButtonPanel:!1,autoSize:!1,disabled:!1},t.extend(this._defaults,this.regional[""]),this.regional.en=t.extend(!0,{},this.regional[""]),this.regional["en-US"]=t.extend(!0,{},this.regional.en),this.dpDiv=n(t("<div id='"+this._mainDivId+"' class='ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>"))}function n(e){var i="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return e.on("mouseout",i,function(){t(this).removeClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&t(this).removeClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&t(this).removeClass("ui-datepicker-next-hover")}).on("mouseover",i,o)}function o(){t.datepicker._isDisabledDatepicker(m.inline?m.dpDiv.parent()[0]:m.input[0])||(t(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),t(this).addClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&t(this).addClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&t(this).addClass("ui-datepicker-next-hover"))}function a(e,i){t.extend(e,i);for(var s in i)null==i[s]&&(e[s]=i[s]);return e}function r(t){return function(){var e=this.element.val();t.apply(this,arguments),this._refresh(),e!==this.element.val()&&this._trigger("change")}}t.ui=t.ui||{},t.ui.version="1.12.1";var h=0,l=Array.prototype.slice;t.cleanData=function(e){return function(i){var s,n,o;for(o=0;null!=(n=i[o]);o++)try{s=t._data(n,"events"),s&&s.remove&&t(n).triggerHandler("remove")}catch(a){}e(i)}}(t.cleanData),t.widget=function(e,i,s){var n,o,a,r={},h=e.split(".")[0];e=e.split(".")[1];var l=h+"-"+e;return s||(s=i,i=t.Widget),t.isArray(s)&&(s=t.extend.apply(null,[{}].concat(s))),t.expr[":"][l.toLowerCase()]=function(e){return!!t.data(e,l)},t[h]=t[h]||{},n=t[h][e],o=t[h][e]=function(t,e){return this._createWidget?(arguments.length&&this._createWidget(t,e),void 0):new o(t,e)},t.extend(o,n,{version:s.version,_proto:t.extend({},s),_childConstructors:[]}),a=new i,a.options=t.widget.extend({},a.options),t.each(s,function(e,s){return t.isFunction(s)?(r[e]=function(){function t(){return i.prototype[e].apply(this,arguments)}function n(t){return i.prototype[e].apply(this,t)}return function(){var e,i=this._super,o=this._superApply;return this._super=t,this._superApply=n,e=s.apply(this,arguments),this._super=i,this._superApply=o,e}}(),void 0):(r[e]=s,void 0)}),o.prototype=t.widget.extend(a,{widgetEventPrefix:n?a.widgetEventPrefix||e:e},r,{constructor:o,namespace:h,widgetName:e,widgetFullName:l}),n?(t.each(n._childConstructors,function(e,i){var s=i.prototype;t.widget(s.namespace+"."+s.widgetName,o,i._proto)}),delete n._childConstructors):i._childConstructors.push(o),t.widget.bridge(e,o),o},t.widget.extend=function(e){for(var i,s,n=l.call(arguments,1),o=0,a=n.length;a>o;o++)for(i in n[o])s=n[o][i],n[o].hasOwnProperty(i)&&void 0!==s&&(e[i]=t.isPlainObject(s)?t.isPlainObject(e[i])?t.widget.extend({},e[i],s):t.widget.extend({},s):s);return e},t.widget.bridge=function(e,i){var s=i.prototype.widgetFullName||e;t.fn[e]=function(n){var o="string"==typeof n,a=l.call(arguments,1),r=this;return o?this.length||"instance"!==n?this.each(function(){var i,o=t.data(this,s);return"instance"===n?(r=o,!1):o?t.isFunction(o[n])&&"_"!==n.charAt(0)?(i=o[n].apply(o,a),i!==o&&void 0!==i?(r=i&&i.jquery?r.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+n+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+n+"'")}):r=void 0:(a.length&&(n=t.widget.extend.apply(null,[n].concat(a))),this.each(function(){var e=t.data(this,s);e?(e.option(n||{}),e._init&&e._init()):t.data(this,s,new i(n,this))})),r}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,i){i=t(i||this.defaultElement||this)[0],this.element=t(i),this.uuid=h++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},i!==this&&(t.data(i,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===i&&this.destroy()}}),this.document=t(i.style?i.ownerDocument:i.document||i),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var h=s.match(/^([\w:-]*)\s*(.*)$/),l=h[1]+o.eventNamespace,c=h[2];c?n.on(l,c,r):i.on(l,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,h=/top|center|bottom/,l=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("<div style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'><div style='height:100px;width:auto;'></div></div>"),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.width<e.element[0].scrollWidth,o="scroll"===s||"auto"===s&&e.height<e.element[0].scrollHeight;return{width:o?t.position.scrollbarWidth():0,height:n?t.position.scrollbarWidth():0}},getWithinInfo:function(e){var i=t(e||window),s=t.isWindow(i[0]),n=!!i[0]&&9===i[0].nodeType,o=!s&&!n;return{element:i,isWindow:s,isDocument:n,offset:o?t(e).offset():{left:0,top:0},scrollLeft:i.scrollLeft(),scrollTop:i.scrollTop(),width:i.outerWidth(),height:i.outerHeight()}}},t.fn.position=function(n){if(!n||!n.of)return d.apply(this,arguments);n=t.extend({},n);var u,p,f,g,m,_,v=t(n.of),b=t.position.getWithinInfo(n.within),y=t.position.getScrollInfo(b),w=(n.collision||"flip").split(" "),k={};return _=s(v),v[0].preventDefault&&(n.at="left top"),p=_.width,f=_.height,g=_.offset,m=t.extend({},g),t.each(["my","at"],function(){var t,e,i=(n[this]||"").split(" ");1===i.length&&(i=r.test(i[0])?i.concat(["center"]):h.test(i[0])?["center"].concat(i):["center","center"]),i[0]=r.test(i[0])?i[0]:"center",i[1]=h.test(i[1])?i[1]:"center",t=l.exec(i[0]),e=l.exec(i[1]),k[this]=[t?t[0]:0,e?e[0]:0],n[this]=[c.exec(i[0])[0],c.exec(i[1])[0]]}),1===w.length&&(w[1]=w[0]),"right"===n.at[0]?m.left+=p:"center"===n.at[0]&&(m.left+=p/2),"bottom"===n.at[1]?m.top+=f:"center"===n.at[1]&&(m.top+=f/2),u=e(k.at,p,f),m.left+=u[0],m.top+=u[1],this.each(function(){var s,r,h=t(this),l=h.outerWidth(),c=h.outerHeight(),d=i(this,"marginLeft"),_=i(this,"marginTop"),x=l+d+i(this,"marginRight")+y.width,C=c+_+i(this,"marginBottom")+y.height,D=t.extend({},m),I=e(k.my,h.outerWidth(),h.outerHeight());"right"===n.my[0]?D.left-=l:"center"===n.my[0]&&(D.left-=l/2),"bottom"===n.my[1]?D.top-=c:"center"===n.my[1]&&(D.top-=c/2),D.left+=I[0],D.top+=I[1],s={marginLeft:d,marginTop:_},t.each(["left","top"],function(e,i){t.ui.position[w[e]]&&t.ui.position[w[e]][i](D,{targetWidth:p,targetHeight:f,elemWidth:l,elemHeight:c,collisionPosition:s,collisionWidth:x,collisionHeight:C,offset:[u[0]+I[0],u[1]+I[1]],my:n.my,at:n.at,within:b,elem:h})}),n.using&&(r=function(t){var e=g.left-D.left,i=e+p-l,s=g.top-D.top,r=s+f-c,u={target:{element:v,left:g.left,top:g.top,width:p,height:f},element:{element:h,left:D.left,top:D.top,width:l,height:c},horizontal:0>i?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};l>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),h.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,h=n-r,l=r+e.collisionWidth-a-n;e.collisionWidth>a?h>0&&0>=l?(i=t.left+h+e.collisionWidth-a-n,t.left+=h-i):t.left=l>0&&0>=h?n:h>l?n+a-e.collisionWidth:n:h>0?t.left+=h:l>0?t.left-=l:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,h=n-r,l=r+e.collisionHeight-a-n;e.collisionHeight>a?h>0&&0>=l?(i=t.top+h+e.collisionHeight-a-n,t.top+=h-i):t.top=l>0&&0>=h?n:h>l?n+a-e.collisionHeight:n:h>0?t.top+=h:l>0?t.top-=l:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,h=n.isWindow?n.scrollLeft:n.offset.left,l=t.left-e.collisionPosition.marginLeft,c=l-h,u=l+e.collisionWidth-r-h,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-h,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,h=n.isWindow?n.scrollTop:n.offset.top,l=t.top-e.collisionPosition.marginTop,c=l-h,u=l+e.collisionHeight-r-h,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,g=-2*e.offset[1];0>c?(s=t.top+p+f+g+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+g)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+g-h,(i>0||u>a(i))&&(t.top+=p+f+g))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.extend(t.expr[":"],{data:t.expr.createPseudo?t.expr.createPseudo(function(e){return function(i){return!!t.data(i,e)}}):function(e,i,s){return!!t.data(e,s[3])}}),t.fn.extend({disableSelection:function(){var t="onselectstart"in document.createElement("div")?"selectstart":"mousedown";return function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}}(),enableSelection:function(){return this.off(".ui-disableSelection")}});var c="ui-effects-",u="ui-effects-style",d="ui-effects-animated",p=t;t.effects={effect:{}},function(t,e){function i(t,e,i){var s=u[e.type]||{};return null==t?i||!e.def?null:e.def:(t=s.floor?~~t:parseFloat(t),isNaN(t)?e.def:s.mod?(t+s.mod)%s.mod:0>t?0:t>s.max?s.max:t)}function s(i){var s=l(),n=s._rgba=[];return i=i.toLowerCase(),f(h,function(t,o){var a,r=o.re.exec(i),h=r&&o.parse(r),l=o.space||"rgba";return h?(a=s[l](h),s[c[l].cache]=a[c[l].cache],n=s._rgba=a._rgba,!1):e}),n.length?("0,0,0,0"===n.join()&&t.extend(n,o.transparent),s):o[i]}function n(t,e,i){return i=(i+1)%1,1>6*i?t+6*(e-t)*i:1>2*i?e:2>3*i?t+6*(e-t)*(2/3-i):t}var o,a="backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor",r=/^([\-+])=\s*(\d+\.?\d*)/,h=[{re:/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[t[1],t[2],t[3],t[4]]}},{re:/rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[2.55*t[1],2.55*t[2],2.55*t[3],t[4]]}},{re:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/,parse:function(t){return[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16)]}},{re:/#([a-f0-9])([a-f0-9])([a-f0-9])/,parse:function(t){return[parseInt(t[1]+t[1],16),parseInt(t[2]+t[2],16),parseInt(t[3]+t[3],16)]}},{re:/hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,space:"hsla",parse:function(t){return[t[1],t[2]/100,t[3]/100,t[4]]}}],l=t.Color=function(e,i,s,n){return new t.Color.fn.parse(e,i,s,n)},c={rgba:{props:{red:{idx:0,type:"byte"},green:{idx:1,type:"byte"},blue:{idx:2,type:"byte"}}},hsla:{props:{hue:{idx:0,type:"degrees"},saturation:{idx:1,type:"percent"},lightness:{idx:2,type:"percent"}}}},u={"byte":{floor:!0,max:255},percent:{max:1},degrees:{mod:360,floor:!0}},d=l.support={},p=t("<p>")[0],f=t.each;p.style.cssText="background-color:rgba(1,1,1,.5)",d.rgba=p.style.backgroundColor.indexOf("rgba")>-1,f(c,function(t,e){e.cache="_"+t,e.props.alpha={idx:3,type:"percent",def:1}}),l.fn=t.extend(l.prototype,{parse:function(n,a,r,h){if(n===e)return this._rgba=[null,null,null,null],this;(n.jquery||n.nodeType)&&(n=t(n).css(a),a=e);var u=this,d=t.type(n),p=this._rgba=[];return a!==e&&(n=[n,a,r,h],d="array"),"string"===d?this.parse(s(n)||o._default):"array"===d?(f(c.rgba.props,function(t,e){p[e.idx]=i(n[e.idx],e)}),this):"object"===d?(n instanceof l?f(c,function(t,e){n[e.cache]&&(u[e.cache]=n[e.cache].slice())}):f(c,function(e,s){var o=s.cache;f(s.props,function(t,e){if(!u[o]&&s.to){if("alpha"===t||null==n[t])return;u[o]=s.to(u._rgba)}u[o][e.idx]=i(n[t],e,!0)}),u[o]&&0>t.inArray(null,u[o].slice(0,3))&&(u[o][3]=1,s.from&&(u._rgba=s.from(u[o])))}),this):e},is:function(t){var i=l(t),s=!0,n=this;return f(c,function(t,o){var a,r=i[o.cache];return r&&(a=n[o.cache]||o.to&&o.to(n._rgba)||[],f(o.props,function(t,i){return null!=r[i.idx]?s=r[i.idx]===a[i.idx]:e})),s}),s},_space:function(){var t=[],e=this;return f(c,function(i,s){e[s.cache]&&t.push(i)}),t.pop()},transition:function(t,e){var s=l(t),n=s._space(),o=c[n],a=0===this.alpha()?l("transparent"):this,r=a[o.cache]||o.to(a._rgba),h=r.slice();return s=s[o.cache],f(o.props,function(t,n){var o=n.idx,a=r[o],l=s[o],c=u[n.type]||{};null!==l&&(null===a?h[o]=l:(c.mod&&(l-a>c.mod/2?a+=c.mod:a-l>c.mod/2&&(a-=c.mod)),h[o]=i((l-a)*e+a,n)))}),this[n](h)},blend:function(e){if(1===this._rgba[3])return this;var i=this._rgba.slice(),s=i.pop(),n=l(e)._rgba;return l(t.map(i,function(t,e){return(1-s)*n[e]+s*t}))},toRgbaString:function(){var e="rgba(",i=t.map(this._rgba,function(t,e){return null==t?e>2?1:0:t});return 1===i[3]&&(i.pop(),e="rgb("),e+i.join()+")"},toHslaString:function(){var e="hsla(",i=t.map(this.hsla(),function(t,e){return null==t&&(t=e>2?1:0),e&&3>e&&(t=Math.round(100*t)+"%"),t});return 1===i[3]&&(i.pop(),e="hsl("),e+i.join()+")"},toHexString:function(e){var i=this._rgba.slice(),s=i.pop();return e&&i.push(~~(255*s)),"#"+t.map(i,function(t){return t=(t||0).toString(16),1===t.length?"0"+t:t}).join("")},toString:function(){return 0===this._rgba[3]?"transparent":this.toRgbaString()}}),l.fn.parse.prototype=l.fn,c.hsla.to=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e,i,s=t[0]/255,n=t[1]/255,o=t[2]/255,a=t[3],r=Math.max(s,n,o),h=Math.min(s,n,o),l=r-h,c=r+h,u=.5*c;return e=h===r?0:s===r?60*(n-o)/l+360:n===r?60*(o-s)/l+120:60*(s-n)/l+240,i=0===l?0:.5>=u?l/c:l/(2-c),[Math.round(e)%360,i,u,null==a?1:a]},c.hsla.from=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e=t[0]/360,i=t[1],s=t[2],o=t[3],a=.5>=s?s*(1+i):s+i-s*i,r=2*s-a;return[Math.round(255*n(r,a,e+1/3)),Math.round(255*n(r,a,e)),Math.round(255*n(r,a,e-1/3)),o]},f(c,function(s,n){var o=n.props,a=n.cache,h=n.to,c=n.from;l.fn[s]=function(s){if(h&&!this[a]&&(this[a]=h(this._rgba)),s===e)return this[a].slice();var n,r=t.type(s),u="array"===r||"object"===r?s:arguments,d=this[a].slice();return f(o,function(t,e){var s=u["object"===r?t:e.idx];null==s&&(s=d[e.idx]),d[e.idx]=i(s,e)}),c?(n=l(c(d)),n[a]=d,n):l(d)},f(o,function(e,i){l.fn[e]||(l.fn[e]=function(n){var o,a=t.type(n),h="alpha"===e?this._hsla?"hsla":"rgba":s,l=this[h](),c=l[i.idx];return"undefined"===a?c:("function"===a&&(n=n.call(this,c),a=t.type(n)),null==n&&i.empty?this:("string"===a&&(o=r.exec(n),o&&(n=c+parseFloat(o[2])*("+"===o[1]?1:-1))),l[i.idx]=n,this[h](l)))})})}),l.hook=function(e){var i=e.split(" ");f(i,function(e,i){t.cssHooks[i]={set:function(e,n){var o,a,r="";if("transparent"!==n&&("string"!==t.type(n)||(o=s(n)))){if(n=l(o||n),!d.rgba&&1!==n._rgba[3]){for(a="backgroundColor"===i?e.parentNode:e;(""===r||"transparent"===r)&&a&&a.style;)try{r=t.css(a,"backgroundColor"),a=a.parentNode}catch(h){}n=n.blend(r&&"transparent"!==r?r:"_default")}n=n.toRgbaString()}try{e.style[i]=n}catch(h){}}},t.fx.step[i]=function(e){e.colorInit||(e.start=l(e.elem,i),e.end=l(e.end),e.colorInit=!0),t.cssHooks[i].set(e.elem,e.start.transition(e.end,e.pos))}})},l.hook(a),t.cssHooks.borderColor={expand:function(t){var e={};return f(["Top","Right","Bottom","Left"],function(i,s){e["border"+s+"Color"]=t}),e}},o=t.Color.names={aqua:"#00ffff",black:"#000000",blue:"#0000ff",fuchsia:"#ff00ff",gray:"#808080",green:"#008000",lime:"#00ff00",maroon:"#800000",navy:"#000080",olive:"#808000",purple:"#800080",red:"#ff0000",silver:"#c0c0c0",teal:"#008080",white:"#ffffff",yellow:"#ffff00",transparent:[null,null,null,0],_default:"#ffffff"}}(p),function(){function e(e){var i,s,n=e.ownerDocument.defaultView?e.ownerDocument.defaultView.getComputedStyle(e,null):e.currentStyle,o={};if(n&&n.length&&n[0]&&n[n[0]])for(s=n.length;s--;)i=n[s],"string"==typeof n[i]&&(o[t.camelCase(i)]=n[i]);else for(i in n)"string"==typeof n[i]&&(o[i]=n[i]);return o}function i(e,i){var s,o,a={};for(s in i)o=i[s],e[s]!==o&&(n[s]||(t.fx.step[s]||!isNaN(parseFloat(o)))&&(a[s]=o));return a}var s=["add","remove","toggle"],n={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};t.each(["borderLeftStyle","borderRightStyle","borderBottomStyle","borderTopStyle"],function(e,i){t.fx.step[i]=function(t){("none"!==t.end&&!t.setAttr||1===t.pos&&!t.setAttr)&&(p.style(t.elem,i,t.end),t.setAttr=!0)}}),t.fn.addBack||(t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.effects.animateClass=function(n,o,a,r){var h=t.speed(o,a,r);return this.queue(function(){var o,a=t(this),r=a.attr("class")||"",l=h.children?a.find("*").addBack():a;l=l.map(function(){var i=t(this);return{el:i,start:e(this)}}),o=function(){t.each(s,function(t,e){n[e]&&a[e+"Class"](n[e])})},o(),l=l.map(function(){return this.end=e(this.el[0]),this.diff=i(this.start,this.end),this}),a.attr("class",r),l=l.map(function(){var e=this,i=t.Deferred(),s=t.extend({},h,{queue:!1,complete:function(){i.resolve(e)}});return this.el.animate(this.diff,s),i.promise()}),t.when.apply(t,l.get()).done(function(){o(),t.each(arguments,function(){var e=this.el;t.each(this.diff,function(t){e.css(t,"")})}),h.complete.call(a[0])})})},t.fn.extend({addClass:function(e){return function(i,s,n,o){return s?t.effects.animateClass.call(this,{add:i},s,n,o):e.apply(this,arguments)}}(t.fn.addClass),removeClass:function(e){return function(i,s,n,o){return arguments.length>1?t.effects.animateClass.call(this,{remove:i},s,n,o):e.apply(this,arguments)}}(t.fn.removeClass),toggleClass:function(e){return function(i,s,n,o,a){return"boolean"==typeof s||void 0===s?n?t.effects.animateClass.call(this,s?{add:i}:{remove:i},n,o,a):e.apply(this,arguments):t.effects.animateClass.call(this,{toggle:i},s,n,o)}}(t.fn.toggleClass),switchClass:function(e,i,s,n,o){return t.effects.animateClass.call(this,{add:i,remove:e},s,n,o)}})}(),function(){function e(e,i,s,n){return t.isPlainObject(e)&&(i=e,e=e.effect),e={effect:e},null==i&&(i={}),t.isFunction(i)&&(n=i,s=null,i={}),("number"==typeof i||t.fx.speeds[i])&&(n=s,s=i,i={}),t.isFunction(s)&&(n=s,s=null),i&&t.extend(e,i),s=s||i.duration,e.duration=t.fx.off?0:"number"==typeof s?s:s in t.fx.speeds?t.fx.speeds[s]:t.fx.speeds._default,e.complete=n||i.complete,e}function i(e){return!e||"number"==typeof e||t.fx.speeds[e]?!0:"string"!=typeof e||t.effects.effect[e]?t.isFunction(e)?!0:"object"!=typeof e||e.effect?!1:!0:!0}function s(t,e){var i=e.outerWidth(),s=e.outerHeight(),n=/^rect\((-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto)\)$/,o=n.exec(t)||["",0,i,s,0];return{top:parseFloat(o[1])||0,right:"auto"===o[2]?i:parseFloat(o[2]),bottom:"auto"===o[3]?s:parseFloat(o[3]),left:parseFloat(o[4])||0}}t.expr&&t.expr.filters&&t.expr.filters.animated&&(t.expr.filters.animated=function(e){return function(i){return!!t(i).data(d)||e(i)}}(t.expr.filters.animated)),t.uiBackCompat!==!1&&t.extend(t.effects,{save:function(t,e){for(var i=0,s=e.length;s>i;i++)null!==e[i]&&t.data(c+e[i],t[0].style[e[i]])},restore:function(t,e){for(var i,s=0,n=e.length;n>s;s++)null!==e[s]&&(i=t.data(c+e[s]),t.css(e[s],i))},setMode:function(t,e){return"toggle"===e&&(e=t.is(":hidden")?"show":"hide"),e},createWrapper:function(e){if(e.parent().is(".ui-effects-wrapper"))return e.parent();var i={width:e.outerWidth(!0),height:e.outerHeight(!0),"float":e.css("float")},s=t("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),n={width:e.width(),height:e.height()},o=document.activeElement;try{o.id}catch(a){o=document.body}return e.wrap(s),(e[0]===o||t.contains(e[0],o))&&t(o).trigger("focus"),s=e.parent(),"static"===e.css("position")?(s.css({position:"relative"}),e.css({position:"relative"})):(t.extend(i,{position:e.css("position"),zIndex:e.css("z-index")}),t.each(["top","left","bottom","right"],function(t,s){i[s]=e.css(s),isNaN(parseInt(i[s],10))&&(i[s]="auto")}),e.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),e.css(n),s.css(i).show()},removeWrapper:function(e){var i=document.activeElement;return e.parent().is(".ui-effects-wrapper")&&(e.parent().replaceWith(e),(e[0]===i||t.contains(e[0],i))&&t(i).trigger("focus")),e}}),t.extend(t.effects,{version:"1.12.1",define:function(e,i,s){return s||(s=i,i="effect"),t.effects.effect[e]=s,t.effects.effect[e].mode=i,s},scaledDimensions:function(t,e,i){if(0===e)return{height:0,width:0,outerHeight:0,outerWidth:0};var s="horizontal"!==i?(e||100)/100:1,n="vertical"!==i?(e||100)/100:1;return{height:t.height()*n,width:t.width()*s,outerHeight:t.outerHeight()*n,outerWidth:t.outerWidth()*s}},clipToBox:function(t){return{width:t.clip.right-t.clip.left,height:t.clip.bottom-t.clip.top,left:t.clip.left,top:t.clip.top}},unshift:function(t,e,i){var s=t.queue();e>1&&s.splice.apply(s,[1,0].concat(s.splice(e,i))),t.dequeue()},saveStyle:function(t){t.data(u,t[0].style.cssText)},restoreStyle:function(t){t[0].style.cssText=t.data(u)||"",t.removeData(u)},mode:function(t,e){var i=t.is(":hidden");return"toggle"===e&&(e=i?"show":"hide"),(i?"hide"===e:"show"===e)&&(e="none"),e},getBaseline:function(t,e){var i,s;switch(t[0]){case"top":i=0;break;case"middle":i=.5;break;case"bottom":i=1;break;default:i=t[0]/e.height}switch(t[1]){case"left":s=0;break;case"center":s=.5;break;case"right":s=1;break;default:s=t[1]/e.width}return{x:s,y:i}},createPlaceholder:function(e){var i,s=e.css("position"),n=e.position();return e.css({marginTop:e.css("marginTop"),marginBottom:e.css("marginBottom"),marginLeft:e.css("marginLeft"),marginRight:e.css("marginRight")}).outerWidth(e.outerWidth()).outerHeight(e.outerHeight()),/^(static|relative)/.test(s)&&(s="absolute",i=t("<"+e[0].nodeName+">").insertAfter(e).css({display:/^(inline|ruby)/.test(e.css("display"))?"inline-block":"block",visibility:"hidden",marginTop:e.css("marginTop"),marginBottom:e.css("marginBottom"),marginLeft:e.css("marginLeft"),marginRight:e.css("marginRight"),"float":e.css("float")}).outerWidth(e.outerWidth()).outerHeight(e.outerHeight()).addClass("ui-effects-placeholder"),e.data(c+"placeholder",i)),e.css({position:s,left:n.left,top:n.top}),i},removePlaceholder:function(t){var e=c+"placeholder",i=t.data(e);i&&(i.remove(),t.removeData(e))},cleanUp:function(e){t.effects.restoreStyle(e),t.effects.removePlaceholder(e)},setTransition:function(e,i,s,n){return n=n||{},t.each(i,function(t,i){var o=e.cssUnit(i);o[0]>0&&(n[i]=o[0]*s+o[1])}),n}}),t.fn.extend({effect:function(){function i(e){function i(){r.removeData(d),t.effects.cleanUp(r),"hide"===s.mode&&r.hide(),a()}function a(){t.isFunction(h)&&h.call(r[0]),t.isFunction(e)&&e()}var r=t(this);s.mode=c.shift(),t.uiBackCompat===!1||o?"none"===s.mode?(r[l](),a()):n.call(r[0],s,i):(r.is(":hidden")?"hide"===l:"show"===l)?(r[l](),a()):n.call(r[0],s,a)}var s=e.apply(this,arguments),n=t.effects.effect[s.effect],o=n.mode,a=s.queue,r=a||"fx",h=s.complete,l=s.mode,c=[],u=function(e){var i=t(this),s=t.effects.mode(i,l)||o;i.data(d,!0),c.push(s),o&&("show"===s||s===o&&"hide"===s)&&i.show(),o&&"none"===s||t.effects.saveStyle(i),t.isFunction(e)&&e()};return t.fx.off||!n?l?this[l](s.duration,h):this.each(function(){h&&h.call(this)}):a===!1?this.each(u).each(i):this.queue(r,u).queue(r,i)},show:function(t){return function(s){if(i(s))return t.apply(this,arguments);var n=e.apply(this,arguments);return n.mode="show",this.effect.call(this,n)
     }}(t.fn.show),hide:function(t){return function(s){if(i(s))return t.apply(this,arguments);var n=e.apply(this,arguments);return n.mode="hide",this.effect.call(this,n)}}(t.fn.hide),toggle:function(t){return function(s){if(i(s)||"boolean"==typeof s)return t.apply(this,arguments);var n=e.apply(this,arguments);return n.mode="toggle",this.effect.call(this,n)}}(t.fn.toggle),cssUnit:function(e){var i=this.css(e),s=[];return t.each(["em","px","%","pt"],function(t,e){i.indexOf(e)>0&&(s=[parseFloat(i),e])}),s},cssClip:function(t){return t?this.css("clip","rect("+t.top+"px "+t.right+"px "+t.bottom+"px "+t.left+"px)"):s(this.css("clip"),this)},transfer:function(e,i){var s=t(this),n=t(e.to),o="fixed"===n.css("position"),a=t("body"),r=o?a.scrollTop():0,h=o?a.scrollLeft():0,l=n.offset(),c={top:l.top-r,left:l.left-h,height:n.innerHeight(),width:n.innerWidth()},u=s.offset(),d=t("<div class='ui-effects-transfer'></div>").appendTo("body").addClass(e.className).css({top:u.top-r,left:u.left-h,height:s.innerHeight(),width:s.innerWidth(),position:o?"fixed":"absolute"}).animate(c,e.duration,e.easing,function(){d.remove(),t.isFunction(i)&&i()})}}),t.fx.step.clip=function(e){e.clipInit||(e.start=t(e.elem).cssClip(),"string"==typeof e.end&&(e.end=s(e.end,e.elem)),e.clipInit=!0),t(e.elem).cssClip({top:e.pos*(e.end.top-e.start.top)+e.start.top,right:e.pos*(e.end.right-e.start.right)+e.start.right,bottom:e.pos*(e.end.bottom-e.start.bottom)+e.start.bottom,left:e.pos*(e.end.left-e.start.left)+e.start.left})}}(),function(){var e={};t.each(["Quad","Cubic","Quart","Quint","Expo"],function(t,i){e[i]=function(e){return Math.pow(e,t+2)}}),t.extend(e,{Sine:function(t){return 1-Math.cos(t*Math.PI/2)},Circ:function(t){return 1-Math.sqrt(1-t*t)},Elastic:function(t){return 0===t||1===t?t:-Math.pow(2,8*(t-1))*Math.sin((80*(t-1)-7.5)*Math.PI/15)},Back:function(t){return t*t*(3*t-2)},Bounce:function(t){for(var e,i=4;((e=Math.pow(2,--i))-1)/11>t;);return 1/Math.pow(4,3-i)-7.5625*Math.pow((3*e-2)/22-t,2)}}),t.each(e,function(e,i){t.easing["easeIn"+e]=i,t.easing["easeOut"+e]=function(t){return 1-i(1-t)},t.easing["easeInOut"+e]=function(t){return.5>t?i(2*t)/2:1-i(-2*t+2)/2}})}();var f=t.effects;t.effects.define("blind","hide",function(e,i){var s={up:["bottom","top"],vertical:["bottom","top"],down:["top","bottom"],left:["right","left"],horizontal:["right","left"],right:["left","right"]},n=t(this),o=e.direction||"up",a=n.cssClip(),r={clip:t.extend({},a)},h=t.effects.createPlaceholder(n);r.clip[s[o][0]]=r.clip[s[o][1]],"show"===e.mode&&(n.cssClip(r.clip),h&&h.css(t.effects.clipToBox(r)),r.clip=a),h&&h.animate(t.effects.clipToBox(r),e.duration,e.easing),n.animate(r,{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("bounce",function(e,i){var s,n,o,a=t(this),r=e.mode,h="hide"===r,l="show"===r,c=e.direction||"up",u=e.distance,d=e.times||5,p=2*d+(l||h?1:0),f=e.duration/p,g=e.easing,m="up"===c||"down"===c?"top":"left",_="up"===c||"left"===c,v=0,b=a.queue().length;for(t.effects.createPlaceholder(a),o=a.css(m),u||(u=a["top"===m?"outerHeight":"outerWidth"]()/3),l&&(n={opacity:1},n[m]=o,a.css("opacity",0).css(m,_?2*-u:2*u).animate(n,f,g)),h&&(u/=Math.pow(2,d-1)),n={},n[m]=o;d>v;v++)s={},s[m]=(_?"-=":"+=")+u,a.animate(s,f,g).animate(n,f,g),u=h?2*u:u/2;h&&(s={opacity:0},s[m]=(_?"-=":"+=")+u,a.animate(s,f,g)),a.queue(i),t.effects.unshift(a,b,p+1)}),t.effects.define("clip","hide",function(e,i){var s,n={},o=t(this),a=e.direction||"vertical",r="both"===a,h=r||"horizontal"===a,l=r||"vertical"===a;s=o.cssClip(),n.clip={top:l?(s.bottom-s.top)/2:s.top,right:h?(s.right-s.left)/2:s.right,bottom:l?(s.bottom-s.top)/2:s.bottom,left:h?(s.right-s.left)/2:s.left},t.effects.createPlaceholder(o),"show"===e.mode&&(o.cssClip(n.clip),n.clip=s),o.animate(n,{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("drop","hide",function(e,i){var s,n=t(this),o=e.mode,a="show"===o,r=e.direction||"left",h="up"===r||"down"===r?"top":"left",l="up"===r||"left"===r?"-=":"+=",c="+="===l?"-=":"+=",u={opacity:0};t.effects.createPlaceholder(n),s=e.distance||n["top"===h?"outerHeight":"outerWidth"](!0)/2,u[h]=l+s,a&&(n.css(u),u[h]=c+s,u.opacity=1),n.animate(u,{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("explode","hide",function(e,i){function s(){b.push(this),b.length===u*d&&n()}function n(){p.css({visibility:"visible"}),t(b).remove(),i()}var o,a,r,h,l,c,u=e.pieces?Math.round(Math.sqrt(e.pieces)):3,d=u,p=t(this),f=e.mode,g="show"===f,m=p.show().css("visibility","hidden").offset(),_=Math.ceil(p.outerWidth()/d),v=Math.ceil(p.outerHeight()/u),b=[];for(o=0;u>o;o++)for(h=m.top+o*v,c=o-(u-1)/2,a=0;d>a;a++)r=m.left+a*_,l=a-(d-1)/2,p.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-a*_,top:-o*v}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:_,height:v,left:r+(g?l*_:0),top:h+(g?c*v:0),opacity:g?0:1}).animate({left:r+(g?0:l*_),top:h+(g?0:c*v),opacity:g?1:0},e.duration||500,e.easing,s)}),t.effects.define("fade","toggle",function(e,i){var s="show"===e.mode;t(this).css("opacity",s?0:1).animate({opacity:s?1:0},{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("fold","hide",function(e,i){var s=t(this),n=e.mode,o="show"===n,a="hide"===n,r=e.size||15,h=/([0-9]+)%/.exec(r),l=!!e.horizFirst,c=l?["right","bottom"]:["bottom","right"],u=e.duration/2,d=t.effects.createPlaceholder(s),p=s.cssClip(),f={clip:t.extend({},p)},g={clip:t.extend({},p)},m=[p[c[0]],p[c[1]]],_=s.queue().length;h&&(r=parseInt(h[1],10)/100*m[a?0:1]),f.clip[c[0]]=r,g.clip[c[0]]=r,g.clip[c[1]]=0,o&&(s.cssClip(g.clip),d&&d.css(t.effects.clipToBox(g)),g.clip=p),s.queue(function(i){d&&d.animate(t.effects.clipToBox(f),u,e.easing).animate(t.effects.clipToBox(g),u,e.easing),i()}).animate(f,u,e.easing).animate(g,u,e.easing).queue(i),t.effects.unshift(s,_,4)}),t.effects.define("highlight","show",function(e,i){var s=t(this),n={backgroundColor:s.css("backgroundColor")};"hide"===e.mode&&(n.opacity=0),t.effects.saveStyle(s),s.css({backgroundImage:"none",backgroundColor:e.color||"#ffff99"}).animate(n,{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("size",function(e,i){var s,n,o,a=t(this),r=["fontSize"],h=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],l=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],c=e.mode,u="effect"!==c,d=e.scale||"both",p=e.origin||["middle","center"],f=a.css("position"),g=a.position(),m=t.effects.scaledDimensions(a),_=e.from||m,v=e.to||t.effects.scaledDimensions(a,0);t.effects.createPlaceholder(a),"show"===c&&(o=_,_=v,v=o),n={from:{y:_.height/m.height,x:_.width/m.width},to:{y:v.height/m.height,x:v.width/m.width}},("box"===d||"both"===d)&&(n.from.y!==n.to.y&&(_=t.effects.setTransition(a,h,n.from.y,_),v=t.effects.setTransition(a,h,n.to.y,v)),n.from.x!==n.to.x&&(_=t.effects.setTransition(a,l,n.from.x,_),v=t.effects.setTransition(a,l,n.to.x,v))),("content"===d||"both"===d)&&n.from.y!==n.to.y&&(_=t.effects.setTransition(a,r,n.from.y,_),v=t.effects.setTransition(a,r,n.to.y,v)),p&&(s=t.effects.getBaseline(p,m),_.top=(m.outerHeight-_.outerHeight)*s.y+g.top,_.left=(m.outerWidth-_.outerWidth)*s.x+g.left,v.top=(m.outerHeight-v.outerHeight)*s.y+g.top,v.left=(m.outerWidth-v.outerWidth)*s.x+g.left),a.css(_),("content"===d||"both"===d)&&(h=h.concat(["marginTop","marginBottom"]).concat(r),l=l.concat(["marginLeft","marginRight"]),a.find("*[width]").each(function(){var i=t(this),s=t.effects.scaledDimensions(i),o={height:s.height*n.from.y,width:s.width*n.from.x,outerHeight:s.outerHeight*n.from.y,outerWidth:s.outerWidth*n.from.x},a={height:s.height*n.to.y,width:s.width*n.to.x,outerHeight:s.height*n.to.y,outerWidth:s.width*n.to.x};n.from.y!==n.to.y&&(o=t.effects.setTransition(i,h,n.from.y,o),a=t.effects.setTransition(i,h,n.to.y,a)),n.from.x!==n.to.x&&(o=t.effects.setTransition(i,l,n.from.x,o),a=t.effects.setTransition(i,l,n.to.x,a)),u&&t.effects.saveStyle(i),i.css(o),i.animate(a,e.duration,e.easing,function(){u&&t.effects.restoreStyle(i)})})),a.animate(v,{queue:!1,duration:e.duration,easing:e.easing,complete:function(){var e=a.offset();0===v.opacity&&a.css("opacity",_.opacity),u||(a.css("position","static"===f?"relative":f).offset(e),t.effects.saveStyle(a)),i()}})}),t.effects.define("scale",function(e,i){var s=t(this),n=e.mode,o=parseInt(e.percent,10)||(0===parseInt(e.percent,10)?0:"effect"!==n?0:100),a=t.extend(!0,{from:t.effects.scaledDimensions(s),to:t.effects.scaledDimensions(s,o,e.direction||"both"),origin:e.origin||["middle","center"]},e);e.fade&&(a.from.opacity=1,a.to.opacity=0),t.effects.effect.size.call(this,a,i)}),t.effects.define("puff","hide",function(e,i){var s=t.extend(!0,{},e,{fade:!0,percent:parseInt(e.percent,10)||150});t.effects.effect.scale.call(this,s,i)}),t.effects.define("pulsate","show",function(e,i){var s=t(this),n=e.mode,o="show"===n,a="hide"===n,r=o||a,h=2*(e.times||5)+(r?1:0),l=e.duration/h,c=0,u=1,d=s.queue().length;for((o||!s.is(":visible"))&&(s.css("opacity",0).show(),c=1);h>u;u++)s.animate({opacity:c},l,e.easing),c=1-c;s.animate({opacity:c},l,e.easing),s.queue(i),t.effects.unshift(s,d,h+1)}),t.effects.define("shake",function(e,i){var s=1,n=t(this),o=e.direction||"left",a=e.distance||20,r=e.times||3,h=2*r+1,l=Math.round(e.duration/h),c="up"===o||"down"===o?"top":"left",u="up"===o||"left"===o,d={},p={},f={},g=n.queue().length;for(t.effects.createPlaceholder(n),d[c]=(u?"-=":"+=")+a,p[c]=(u?"+=":"-=")+2*a,f[c]=(u?"-=":"+=")+2*a,n.animate(d,l,e.easing);r>s;s++)n.animate(p,l,e.easing).animate(f,l,e.easing);n.animate(p,l,e.easing).animate(d,l/2,e.easing).queue(i),t.effects.unshift(n,g,h+1)}),t.effects.define("slide","show",function(e,i){var s,n,o=t(this),a={up:["bottom","top"],down:["top","bottom"],left:["right","left"],right:["left","right"]},r=e.mode,h=e.direction||"left",l="up"===h||"down"===h?"top":"left",c="up"===h||"left"===h,u=e.distance||o["top"===l?"outerHeight":"outerWidth"](!0),d={};t.effects.createPlaceholder(o),s=o.cssClip(),n=o.position()[l],d[l]=(c?-1:1)*u+n,d.clip=o.cssClip(),d.clip[a[h][1]]=d.clip[a[h][0]],"show"===r&&(o.cssClip(d.clip),o.css(l,d[l]),d.clip=s,d[l]=n),o.animate(d,{queue:!1,duration:e.duration,easing:e.easing,complete:i})});var f;t.uiBackCompat!==!1&&(f=t.effects.define("transfer",function(e,i){t(this).transfer(e,i)})),t.ui.focusable=function(i,s){var n,o,a,r,h,l=i.nodeName.toLowerCase();return"area"===l?(n=i.parentNode,o=n.name,i.href&&o&&"map"===n.nodeName.toLowerCase()?(a=t("img[usemap='#"+o+"']"),a.length>0&&a.is(":visible")):!1):(/^(input|select|textarea|button|object)$/.test(l)?(r=!i.disabled,r&&(h=t(i).closest("fieldset")[0],h&&(r=!h.disabled))):r="a"===l?i.href||s:s,r&&t(i).is(":visible")&&e(t(i)))},t.extend(t.expr[":"],{focusable:function(e){return t.ui.focusable(e,null!=t.attr(e,"tabindex"))}}),t.ui.focusable,t.fn.form=function(){return"string"==typeof this[0].form?this.closest("form"):t(this[0].form)},t.ui.formResetMixin={_formResetHandler:function(){var e=t(this);setTimeout(function(){var i=e.data("ui-form-reset-instances");t.each(i,function(){this.refresh()})})},_bindFormResetHandler:function(){if(this.form=this.element.form(),this.form.length){var t=this.form.data("ui-form-reset-instances")||[];t.length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t)}},_unbindFormResetHandler:function(){if(this.form.length){var e=this.form.data("ui-form-reset-instances");e.splice(t.inArray(this,e),1),e.length?this.form.data("ui-form-reset-instances",e):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset")}}},"1.7"===t.fn.jquery.substring(0,3)&&(t.each(["Width","Height"],function(e,i){function s(e,i,s,o){return t.each(n,function(){i-=parseFloat(t.css(e,"padding"+this))||0,s&&(i-=parseFloat(t.css(e,"border"+this+"Width"))||0),o&&(i-=parseFloat(t.css(e,"margin"+this))||0)}),i}var n="Width"===i?["Left","Right"]:["Top","Bottom"],o=i.toLowerCase(),a={innerWidth:t.fn.innerWidth,innerHeight:t.fn.innerHeight,outerWidth:t.fn.outerWidth,outerHeight:t.fn.outerHeight};t.fn["inner"+i]=function(e){return void 0===e?a["inner"+i].call(this):this.each(function(){t(this).css(o,s(this,e)+"px")})},t.fn["outer"+i]=function(e,n){return"number"!=typeof e?a["outer"+i].call(this,e):this.each(function(){t(this).css(o,s(this,e,!0,n)+"px")})}}),t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.ui.escapeSelector=function(){var t=/([!"#$%&'()*+,.\/:;<=>?@[\]^`{|}~])/g;return function(e){return e.replace(t,"\\$1")}}(),t.fn.labels=function(){var e,i,s,n,o;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(n=this.eq(0).parents("label"),s=this.attr("id"),s&&(e=this.eq(0).parents().last(),o=e.add(e.length?e.siblings():this.siblings()),i="label[for='"+t.ui.escapeSelector(s)+"']",n=n.add(o.find(i).addBack(i))),this.pushStack(n))},t.fn.scrollParent=function(e){var i=this.css("position"),s="absolute"===i,n=e?/(auto|scroll|hidden)/:/(auto|scroll)/,o=this.parents().filter(function(){var e=t(this);return s&&"static"===e.css("position")?!1:n.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==i&&o.length?o:t(this[0].ownerDocument||document)},t.extend(t.expr[":"],{tabbable:function(e){var i=t.attr(e,"tabindex"),s=null!=i;return(!s||i>=0)&&t.ui.focusable(e,s)}}),t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.widget("ui.accordion",{version:"1.12.1",options:{active:0,animate:{},classes:{"ui-accordion-header":"ui-corner-top","ui-accordion-header-collapsed":"ui-corner-all","ui-accordion-content":"ui-corner-bottom"},collapsible:!1,event:"click",header:"> li > :first-child, > :not(li):even",heightStyle:"auto",icons:{activeHeader:"ui-icon-triangle-1-s",header:"ui-icon-triangle-1-e"},activate:null,beforeActivate:null},hideProps:{borderTopWidth:"hide",borderBottomWidth:"hide",paddingTop:"hide",paddingBottom:"hide",height:"hide"},showProps:{borderTopWidth:"show",borderBottomWidth:"show",paddingTop:"show",paddingBottom:"show",height:"show"},_create:function(){var e=this.options;this.prevShow=this.prevHide=t(),this._addClass("ui-accordion","ui-widget ui-helper-reset"),this.element.attr("role","tablist"),e.collapsible||e.active!==!1&&null!=e.active||(e.active=0),this._processPanels(),0>e.active&&(e.active+=this.headers.length),this._refresh()},_getCreateEventData:function(){return{header:this.active,panel:this.active.length?this.active.next():t()}},_createIcons:function(){var e,i,s=this.options.icons;s&&(e=t("<span>"),this._addClass(e,"ui-accordion-header-icon","ui-icon "+s.header),e.prependTo(this.headers),i=this.active.children(".ui-accordion-header-icon"),this._removeClass(i,s.header)._addClass(i,null,s.activeHeader)._addClass(this.headers,"ui-accordion-icons"))},_destroyIcons:function(){this._removeClass(this.headers,"ui-accordion-icons"),this.headers.children(".ui-accordion-header-icon").remove()},_destroy:function(){var t;this.element.removeAttr("role"),this.headers.removeAttr("role aria-expanded aria-selected aria-controls tabIndex").removeUniqueId(),this._destroyIcons(),t=this.headers.next().css("display","").removeAttr("role aria-hidden aria-labelledby").removeUniqueId(),"content"!==this.options.heightStyle&&t.css("height","")},_setOption:function(t,e){return"active"===t?(this._activate(e),void 0):("event"===t&&(this.options.event&&this._off(this.headers,this.options.event),this._setupEvents(e)),this._super(t,e),"collapsible"!==t||e||this.options.active!==!1||this._activate(0),"icons"===t&&(this._destroyIcons(),e&&this._createIcons()),void 0)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t),this._toggleClass(this.headers.add(this.headers.next()),null,"ui-state-disabled",!!t)},_keydown:function(e){if(!e.altKey&&!e.ctrlKey){var i=t.ui.keyCode,s=this.headers.length,n=this.headers.index(e.target),o=!1;switch(e.keyCode){case i.RIGHT:case i.DOWN:o=this.headers[(n+1)%s];break;case i.LEFT:case i.UP:o=this.headers[(n-1+s)%s];break;case i.SPACE:case i.ENTER:this._eventHandler(e);break;case i.HOME:o=this.headers[0];break;case i.END:o=this.headers[s-1]}o&&(t(e.target).attr("tabIndex",-1),t(o).attr("tabIndex",0),t(o).trigger("focus"),e.preventDefault())}},_panelKeyDown:function(e){e.keyCode===t.ui.keyCode.UP&&e.ctrlKey&&t(e.currentTarget).prev().trigger("focus")},refresh:function(){var e=this.options;this._processPanels(),e.active===!1&&e.collapsible===!0||!this.headers.length?(e.active=!1,this.active=t()):e.active===!1?this._activate(0):this.active.length&&!t.contains(this.element[0],this.active[0])?this.headers.length===this.headers.find(".ui-state-disabled").length?(e.active=!1,this.active=t()):this._activate(Math.max(0,e.active-1)):e.active=this.headers.index(this.active),this._destroyIcons(),this._refresh()},_processPanels:function(){var t=this.headers,e=this.panels;this.headers=this.element.find(this.options.header),this._addClass(this.headers,"ui-accordion-header ui-accordion-header-collapsed","ui-state-default"),this.panels=this.headers.next().filter(":not(.ui-accordion-content-active)").hide(),this._addClass(this.panels,"ui-accordion-content","ui-helper-reset ui-widget-content"),e&&(this._off(t.not(this.headers)),this._off(e.not(this.panels)))},_refresh:function(){var e,i=this.options,s=i.heightStyle,n=this.element.parent();this.active=this._findActive(i.active),this._addClass(this.active,"ui-accordion-header-active","ui-state-active")._removeClass(this.active,"ui-accordion-header-collapsed"),this._addClass(this.active.next(),"ui-accordion-content-active"),this.active.next().show(),this.headers.attr("role","tab").each(function(){var e=t(this),i=e.uniqueId().attr("id"),s=e.next(),n=s.uniqueId().attr("id");e.attr("aria-controls",n),s.attr("aria-labelledby",i)}).next().attr("role","tabpanel"),this.headers.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}).next().attr({"aria-hidden":"true"}).hide(),this.active.length?this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}).next().attr({"aria-hidden":"false"}):this.headers.eq(0).attr("tabIndex",0),this._createIcons(),this._setupEvents(i.event),"fill"===s?(e=n.height(),this.element.siblings(":visible").each(function(){var i=t(this),s=i.css("position");"absolute"!==s&&"fixed"!==s&&(e-=i.outerHeight(!0))}),this.headers.each(function(){e-=t(this).outerHeight(!0)}),this.headers.next().each(function(){t(this).height(Math.max(0,e-t(this).innerHeight()+t(this).height()))}).css("overflow","auto")):"auto"===s&&(e=0,this.headers.next().each(function(){var i=t(this).is(":visible");i||t(this).show(),e=Math.max(e,t(this).css("height","").height()),i||t(this).hide()}).height(e))},_activate:function(e){var i=this._findActive(e)[0];i!==this.active[0]&&(i=i||this.active[0],this._eventHandler({target:i,currentTarget:i,preventDefault:t.noop}))},_findActive:function(e){return"number"==typeof e?this.headers.eq(e):t()},_setupEvents:function(e){var i={keydown:"_keydown"};e&&t.each(e.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.headers.add(this.headers.next())),this._on(this.headers,i),this._on(this.headers.next(),{keydown:"_panelKeyDown"}),this._hoverable(this.headers),this._focusable(this.headers)},_eventHandler:function(e){var i,s,n=this.options,o=this.active,a=t(e.currentTarget),r=a[0]===o[0],h=r&&n.collapsible,l=h?t():a.next(),c=o.next(),u={oldHeader:o,oldPanel:c,newHeader:h?t():a,newPanel:l};e.preventDefault(),r&&!n.collapsible||this._trigger("beforeActivate",e,u)===!1||(n.active=h?!1:this.headers.index(a),this.active=r?t():a,this._toggle(u),this._removeClass(o,"ui-accordion-header-active","ui-state-active"),n.icons&&(i=o.children(".ui-accordion-header-icon"),this._removeClass(i,null,n.icons.activeHeader)._addClass(i,null,n.icons.header)),r||(this._removeClass(a,"ui-accordion-header-collapsed")._addClass(a,"ui-accordion-header-active","ui-state-active"),n.icons&&(s=a.children(".ui-accordion-header-icon"),this._removeClass(s,null,n.icons.header)._addClass(s,null,n.icons.activeHeader)),this._addClass(a.next(),"ui-accordion-content-active")))},_toggle:function(e){var i=e.newPanel,s=this.prevShow.length?this.prevShow:e.oldPanel;this.prevShow.add(this.prevHide).stop(!0,!0),this.prevShow=i,this.prevHide=s,this.options.animate?this._animate(i,s,e):(s.hide(),i.show(),this._toggleComplete(e)),s.attr({"aria-hidden":"true"}),s.prev().attr({"aria-selected":"false","aria-expanded":"false"}),i.length&&s.length?s.prev().attr({tabIndex:-1,"aria-expanded":"false"}):i.length&&this.headers.filter(function(){return 0===parseInt(t(this).attr("tabIndex"),10)}).attr("tabIndex",-1),i.attr("aria-hidden","false").prev().attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_animate:function(t,e,i){var s,n,o,a=this,r=0,h=t.css("box-sizing"),l=t.length&&(!e.length||t.index()<e.index()),c=this.options.animate||{},u=l&&c.down||c,d=function(){a._toggleComplete(i)};return"number"==typeof u&&(o=u),"string"==typeof u&&(n=u),n=n||u.easing||c.easing,o=o||u.duration||c.duration,e.length?t.length?(s=t.show().outerHeight(),e.animate(this.hideProps,{duration:o,easing:n,step:function(t,e){e.now=Math.round(t)}}),t.hide().animate(this.showProps,{duration:o,easing:n,complete:d,step:function(t,i){i.now=Math.round(t),"height"!==i.prop?"content-box"===h&&(r+=i.now):"content"!==a.options.heightStyle&&(i.now=Math.round(s-e.outerHeight()-r),r=0)}}),void 0):e.animate(this.hideProps,o,n,d):t.animate(this.showProps,o,n,d)},_toggleComplete:function(t){var e=t.oldPanel,i=e.prev();this._removeClass(e,"ui-accordion-content-active"),this._removeClass(i,"ui-accordion-header-active")._addClass(i,"ui-accordion-header-collapsed"),e.length&&(e.parent()[0].className=e.parent()[0].className),this._trigger("activate",null,t)}}),t.ui.safeActiveElement=function(t){var e;try{e=t.activeElement}catch(i){e=t.body}return e||(e=t.body),e.nodeName||(e=t.body),e},t.widget("ui.menu",{version:"1.12.1",defaultElement:"<ul>",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault()},"click .ui-menu-item":function(e){var i=t(e.target),s=t(t.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&i.not(".ui-state-disabled").length&&(this.select(e),e.isPropagationStopped()||(this.mouseHandled=!0),i.has(".ui-menu").length?this.expand(e):!this.element.is(":focus")&&s.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":function(e){if(!this.previousFilter){var i=t(e.target).closest(".ui-menu-item"),s=t(e.currentTarget);i[0]===s[0]&&(this._removeClass(s.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(e,s))}},mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this.element.find(this.options.items).eq(0);e||this.focus(t,i)},blur:function(e){this._delay(function(){var i=!t.contains(this.element[0],t.ui.safeActiveElement(this.document[0]));i&&this.collapseAll(e)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t),this.mouseHandled=!1}})},_destroy:function(){var e=this.element.find(".ui-menu-item").removeAttr("role aria-disabled"),i=e.children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),i.children().each(function(){var e=t(this);e.data("ui-menu-submenu-caret")&&e.remove()})},_keydown:function(e){var i,s,n,o,a=!0;switch(e.keyCode){case t.ui.keyCode.PAGE_UP:this.previousPage(e);break;case t.ui.keyCode.PAGE_DOWN:this.nextPage(e);break;case t.ui.keyCode.HOME:this._move("first","first",e);break;case t.ui.keyCode.END:this._move("last","last",e);break;case t.ui.keyCode.UP:this.previous(e);break;case t.ui.keyCode.DOWN:this.next(e);break;case t.ui.keyCode.LEFT:this.collapse(e);break;case t.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(e);break;case t.ui.keyCode.ENTER:case t.ui.keyCode.SPACE:this._activate(e);break;case t.ui.keyCode.ESCAPE:this.collapse(e);break;default:a=!1,s=this.previousFilter||"",o=!1,n=e.keyCode>=96&&105>=e.keyCode?""+(e.keyCode-96):String.fromCharCode(e.keyCode),clearTimeout(this.filterTimer),n===s?o=!0:n=s+n,i=this._filterMenuItems(n),i=o&&-1!==i.index(this.active.next())?this.active.nextAll(".ui-menu-item"):i,i.length||(n=String.fromCharCode(e.keyCode),i=this._filterMenuItems(n)),i.length?(this.focus(e,i),this.previousFilter=n,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}a&&e.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var e,i,s,n,o,a=this,r=this.options.icons.submenu,h=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),s=h.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var e=t(this),i=e.prev(),s=t("<span>").data("ui-menu-submenu-caret",!0);a._addClass(s,"ui-menu-icon","ui-icon "+r),i.attr("aria-haspopup","true").prepend(s),e.attr("aria-labelledby",i.attr("id"))}),this._addClass(s,"ui-menu","ui-widget ui-widget-content ui-front"),e=h.add(this.element),i=e.find(this.options.items),i.not(".ui-menu-item").each(function(){var e=t(this);a._isDivider(e)&&a._addClass(e,"ui-menu-divider","ui-widget-content")}),n=i.not(".ui-menu-item, .ui-menu-divider"),o=n.children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(n,"ui-menu-item")._addClass(o,"ui-menu-item-wrapper"),i.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!t.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){if("icons"===t){var i=this.element.find(".ui-menu-icon");this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)}this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t+""),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i,s,n;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),s=this.active.children(".ui-menu-item-wrapper"),this._addClass(s,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",s.attr("id")),n=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(n,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),i=e.children(".ui-menu"),i.length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(e){var i,s,n,o,a,r;this._hasScroll()&&(i=parseFloat(t.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(t.css(this.activeMenu[0],"paddingTop"))||0,n=e.offset().top-this.activeMenu.offset().top-i-s,o=this.activeMenu.scrollTop(),a=this.activeMenu.height(),r=e.outerHeight(),0>n?this.activeMenu.scrollTop(o+n):n+r>a&&this.activeMenu.scrollTop(o+n-a+r))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this._removeClass(this.active.children(".ui-menu-item-wrapper"),null,"ui-state-active"),this._trigger("blur",t,{item:this.active}),this.active=null)},_startOpening:function(t){clearTimeout(this.timer),"true"===t.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(e){var i=t.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(e.parents(".ui-menu")).hide().attr("aria-hidden","true"),e.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(i)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var s=i?this.element:t(e&&e.target).closest(this.element.find(".ui-menu"));s.length||(s=this.element),this._close(s),this.blur(e),this._removeClass(s.find(".ui-state-active"),null,"ui-state-active"),this.activeMenu=s},this.delay)},_close:function(t){t||(t=this.active?this.active.parent():this.element),t.find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false")},_closeOnDocumentClick:function(e){return!t(e.target).closest(".ui-menu").length},_isDivider:function(t){return!/[^\-\u2014\u2013\s]/.test(t.text())},collapse:function(t){var e=this.active&&this.active.parent().closest(".ui-menu-item",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this.active.children(".ui-menu ").find(this.options.items).first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move("next","first",t)},previous:function(t){this._move("prev","last",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_move:function(t,e,i){var s;this.active&&(s="first"===t||"last"===t?this.active["first"===t?"prevAll":"nextAll"](".ui-menu-item").eq(-1):this.active[t+"All"](".ui-menu-item").eq(0)),s&&s.length&&this.active||(s=this.activeMenu.find(this.options.items)[e]()),this.focus(i,s)},nextPage:function(e){var i,s,n;return this.active?(this.isLastItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.nextAll(".ui-menu-item").each(function(){return i=t(this),0>i.offset().top-s-n}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items)[this.active?"last":"first"]())),void 0):(this.next(e),void 0)},previousPage:function(e){var i,s,n;return this.active?(this.isFirstItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.prevAll(".ui-menu-item").each(function(){return i=t(this),i.offset().top-s+n>0}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items).first())),void 0):(this.next(e),void 0)},_hasScroll:function(){return this.element.outerHeight()<this.element.prop("scrollHeight")},select:function(e){this.active=this.active||t(e.target).closest(".ui-menu-item");var i={item:this.active};this.active.has(".ui-menu").length||this.collapseAll(e,!0),this._trigger("select",e,i)},_filterMenuItems:function(e){var i=e.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&"),s=RegExp("^"+i,"i");return this.activeMenu.find(this.options.items).filter(".ui-menu-item").filter(function(){return s.test(t.trim(t(this).children(".ui-menu-item-wrapper").text()))})}}),t.widget("ui.autocomplete",{version:"1.12.1",defaultElement:"<input>",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,_create:function(){var e,i,s,n=this.element[0].nodeName.toLowerCase(),o="textarea"===n,a="input"===n;
     this.isMultiLine=o||!a&&this._isContentEditable(this.element),this.valueMethod=this.element[o||a?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(n){if(this.element.prop("readOnly"))return e=!0,s=!0,i=!0,void 0;e=!1,s=!1,i=!1;var o=t.ui.keyCode;switch(n.keyCode){case o.PAGE_UP:e=!0,this._move("previousPage",n);break;case o.PAGE_DOWN:e=!0,this._move("nextPage",n);break;case o.UP:e=!0,this._keyEvent("previous",n);break;case o.DOWN:e=!0,this._keyEvent("next",n);break;case o.ENTER:this.menu.active&&(e=!0,n.preventDefault(),this.menu.select(n));break;case o.TAB:this.menu.active&&this.menu.select(n);break;case o.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(n),n.preventDefault());break;default:i=!0,this._searchTimeout(n)}},keypress:function(s){if(e)return e=!1,(!this.isMultiLine||this.menu.element.is(":visible"))&&s.preventDefault(),void 0;if(!i){var n=t.ui.keyCode;switch(s.keyCode){case n.PAGE_UP:this._move("previousPage",s);break;case n.PAGE_DOWN:this._move("nextPage",s);break;case n.UP:this._keyEvent("previous",s);break;case n.DOWN:this._keyEvent("next",s)}}},input:function(t){return s?(s=!1,t.preventDefault(),void 0):(this._searchTimeout(t),void 0)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){return this.cancelBlur?(delete this.cancelBlur,void 0):(clearTimeout(this.searching),this.close(t),this._change(t),void 0)}}),this._initSource(),this.menu=t("<ul>").appendTo(this._appendTo()).menu({role:null}).hide().menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(e){e.preventDefault(),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,this.element[0]!==t.ui.safeActiveElement(this.document[0])&&this.element.trigger("focus")})},menufocus:function(e,i){var s,n;return this.isNewMenu&&(this.isNewMenu=!1,e.originalEvent&&/^mouse/.test(e.originalEvent.type))?(this.menu.blur(),this.document.one("mousemove",function(){t(e.target).trigger(e.originalEvent)}),void 0):(n=i.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",e,{item:n})&&e.originalEvent&&/^key/.test(e.originalEvent.type)&&this._value(n.value),s=i.item.attr("aria-label")||n.value,s&&t.trim(s).length&&(this.liveRegion.children().hide(),t("<div>").text(s).appendTo(this.liveRegion)),void 0)},menuselect:function(e,i){var s=i.item.data("ui-autocomplete-item"),n=this.previous;this.element[0]!==t.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=n,this._delay(function(){this.previous=n,this.selectedItem=s})),!1!==this._trigger("select",e,{item:s})&&this._value(s.value),this.term=this._value(),this.close(e),this.selectedItem=s}}),this.liveRegion=t("<div>",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(e){var i=this.menu.element[0];return e.target===this.element[0]||e.target===i||t.contains(i,e.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var e=this.options.appendTo;return e&&(e=e.jquery||e.nodeType?t(e):this.document.find(e).eq(0)),e&&e[0]||(e=this.element.closest(".ui-front, dialog")),e.length||(e=this.document[0].body),e},_initSource:function(){var e,i,s=this;t.isArray(this.options.source)?(e=this.options.source,this.source=function(i,s){s(t.ui.autocomplete.filter(e,i.term))}):"string"==typeof this.options.source?(i=this.options.source,this.source=function(e,n){s.xhr&&s.xhr.abort(),s.xhr=t.ajax({url:i,data:e,dataType:"json",success:function(t){n(t)},error:function(){n([])}})}):this.source=this.options.source},_searchTimeout:function(t){clearTimeout(this.searching),this.searching=this._delay(function(){var e=this.term===this._value(),i=this.menu.element.is(":visible"),s=t.altKey||t.ctrlKey||t.metaKey||t.shiftKey;(!e||e&&!i&&!s)&&(this.selectedItem=null,this.search(null,t))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length<this.options.minLength?this.close(e):this._trigger("search",e)!==!1?this._search(t):void 0},_search:function(t){this.pending++,this._addClass("ui-autocomplete-loading"),this.cancelSearch=!1,this.source({term:t},this._response())},_response:function(){var e=++this.requestIndex;return t.proxy(function(t){e===this.requestIndex&&this.__response(t),this.pending--,this.pending||this._removeClass("ui-autocomplete-loading")},this)},__response:function(t){t&&(t=this._normalize(t)),this._trigger("response",null,{content:t}),!this.options.disabled&&t&&t.length&&!this.cancelSearch?(this._suggest(t),this._trigger("open")):this._close()},close:function(t){this.cancelSearch=!0,this._close(t)},_close:function(t){this._off(this.document,"mousedown"),this.menu.element.is(":visible")&&(this.menu.element.hide(),this.menu.blur(),this.isNewMenu=!0,this._trigger("close",t))},_change:function(t){this.previous!==this._value()&&this._trigger("change",t,{item:this.selectedItem})},_normalize:function(e){return e.length&&e[0].label&&e[0].value?e:t.map(e,function(e){return"string"==typeof e?{label:e,value:e}:t.extend({},e,{label:e.label||e.value,value:e.value||e.label})})},_suggest:function(e){var i=this.menu.element.empty();this._renderMenu(i,e),this.isNewMenu=!0,this.menu.refresh(),i.show(),this._resizeMenu(),i.position(t.extend({of:this.element},this.options.position)),this.options.autoFocus&&this.menu.next(),this._on(this.document,{mousedown:"_closeOnClickOutside"})},_resizeMenu:function(){var t=this.menu.element;t.outerWidth(Math.max(t.width("").outerWidth()+1,this.element.outerWidth()))},_renderMenu:function(e,i){var s=this;t.each(i,function(t,i){s._renderItemData(e,i)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-autocomplete-item",e)},_renderItem:function(e,i){return t("<li>").append(t("<div>").text(i.label)).appendTo(e)},_move:function(t,e){return this.menu.element.is(":visible")?this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),this.menu.blur(),void 0):(this.menu[t](e),void 0):(this.search(null,e),void 0)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){(!this.isMultiLine||this.menu.element.is(":visible"))&&(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),t.extend(t.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(e,i){var s=RegExp(t.ui.autocomplete.escapeRegex(i),"i");return t.grep(e,function(t){return s.test(t.label||t.value||t)})}}),t.widget("ui.autocomplete",t.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(t>1?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(e){var i;this._superApply(arguments),this.options.disabled||this.cancelSearch||(i=e&&e.length?this.options.messages.results(e.length):this.options.messages.noResults,this.liveRegion.children().hide(),t("<div>").text(i).appendTo(this.liveRegion))}}),t.ui.autocomplete;var g=/ui-corner-([a-z]){2,6}/g;t.widget("ui.controlgroup",{version:"1.12.1",defaultElement:"<div>",options:{direction:"horizontal",disabled:null,onlyVisible:!0,items:{button:"input[type=button], input[type=submit], input[type=reset], button, a",controlgroupLabel:".ui-controlgroup-label",checkboxradio:"input[type='checkbox'], input[type='radio']",selectmenu:"select",spinner:".ui-spinner-input"}},_create:function(){this._enhance()},_enhance:function(){this.element.attr("role","toolbar"),this.refresh()},_destroy:function(){this._callChildMethod("destroy"),this.childWidgets.removeData("ui-controlgroup-data"),this.element.removeAttr("role"),this.options.items.controlgroupLabel&&this.element.find(this.options.items.controlgroupLabel).find(".ui-controlgroup-label-contents").contents().unwrap()},_initWidgets:function(){var e=this,i=[];t.each(this.options.items,function(s,n){var o,a={};return n?"controlgroupLabel"===s?(o=e.element.find(n),o.each(function(){var e=t(this);e.children(".ui-controlgroup-label-contents").length||e.contents().wrapAll("<span class='ui-controlgroup-label-contents'></span>")}),e._addClass(o,null,"ui-widget ui-widget-content ui-state-default"),i=i.concat(o.get()),void 0):(t.fn[s]&&(a=e["_"+s+"Options"]?e["_"+s+"Options"]("middle"):{classes:{}},e.element.find(n).each(function(){var n=t(this),o=n[s]("instance"),r=t.widget.extend({},a);if("button"!==s||!n.parent(".ui-spinner").length){o||(o=n[s]()[s]("instance")),o&&(r.classes=e._resolveClassesValues(r.classes,o)),n[s](r);var h=n[s]("widget");t.data(h[0],"ui-controlgroup-data",o?o:n[s]("instance")),i.push(h[0])}})),void 0):void 0}),this.childWidgets=t(t.unique(i)),this._addClass(this.childWidgets,"ui-controlgroup-item")},_callChildMethod:function(e){this.childWidgets.each(function(){var i=t(this),s=i.data("ui-controlgroup-data");s&&s[e]&&s[e]()})},_updateCornerClass:function(t,e){var i="ui-corner-top ui-corner-bottom ui-corner-left ui-corner-right ui-corner-all",s=this._buildSimpleOptions(e,"label").classes.label;this._removeClass(t,null,i),this._addClass(t,null,s)},_buildSimpleOptions:function(t,e){var i="vertical"===this.options.direction,s={classes:{}};return s.classes[e]={middle:"",first:"ui-corner-"+(i?"top":"left"),last:"ui-corner-"+(i?"bottom":"right"),only:"ui-corner-all"}[t],s},_spinnerOptions:function(t){var e=this._buildSimpleOptions(t,"ui-spinner");return e.classes["ui-spinner-up"]="",e.classes["ui-spinner-down"]="",e},_buttonOptions:function(t){return this._buildSimpleOptions(t,"ui-button")},_checkboxradioOptions:function(t){return this._buildSimpleOptions(t,"ui-checkboxradio-label")},_selectmenuOptions:function(t){var e="vertical"===this.options.direction;return{width:e?"auto":!1,classes:{middle:{"ui-selectmenu-button-open":"","ui-selectmenu-button-closed":""},first:{"ui-selectmenu-button-open":"ui-corner-"+(e?"top":"tl"),"ui-selectmenu-button-closed":"ui-corner-"+(e?"top":"left")},last:{"ui-selectmenu-button-open":e?"":"ui-corner-tr","ui-selectmenu-button-closed":"ui-corner-"+(e?"bottom":"right")},only:{"ui-selectmenu-button-open":"ui-corner-top","ui-selectmenu-button-closed":"ui-corner-all"}}[t]}},_resolveClassesValues:function(e,i){var s={};return t.each(e,function(n){var o=i.options.classes[n]||"";o=t.trim(o.replace(g,"")),s[n]=(o+" "+e[n]).replace(/\s+/g," ")}),s},_setOption:function(t,e){return"direction"===t&&this._removeClass("ui-controlgroup-"+this.options.direction),this._super(t,e),"disabled"===t?(this._callChildMethod(e?"disable":"enable"),void 0):(this.refresh(),void 0)},refresh:function(){var e,i=this;this._addClass("ui-controlgroup ui-controlgroup-"+this.options.direction),"horizontal"===this.options.direction&&this._addClass(null,"ui-helper-clearfix"),this._initWidgets(),e=this.childWidgets,this.options.onlyVisible&&(e=e.filter(":visible")),e.length&&(t.each(["first","last"],function(t,s){var n=e[s]().data("ui-controlgroup-data");if(n&&i["_"+n.widgetName+"Options"]){var o=i["_"+n.widgetName+"Options"](1===e.length?"only":s);o.classes=i._resolveClassesValues(o.classes,n),n.element[n.widgetName](o)}else i._updateCornerClass(e[s](),s)}),this._callChildMethod("refresh"))}}),t.widget("ui.checkboxradio",[t.ui.formResetMixin,{version:"1.12.1",options:{disabled:null,label:null,icon:!0,classes:{"ui-checkboxradio-label":"ui-corner-all","ui-checkboxradio-icon":"ui-corner-all"}},_getCreateOptions:function(){var e,i,s=this,n=this._super()||{};return this._readType(),i=this.element.labels(),this.label=t(i[i.length-1]),this.label.length||t.error("No label found for checkboxradio widget"),this.originalLabel="",this.label.contents().not(this.element[0]).each(function(){s.originalLabel+=3===this.nodeType?t(this).text():this.outerHTML}),this.originalLabel&&(n.label=this.originalLabel),e=this.element[0].disabled,null!=e&&(n.disabled=e),n},_create:function(){var t=this.element[0].checked;this._bindFormResetHandler(),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled),this._setOption("disabled",this.options.disabled),this._addClass("ui-checkboxradio","ui-helper-hidden-accessible"),this._addClass(this.label,"ui-checkboxradio-label","ui-button ui-widget"),"radio"===this.type&&this._addClass(this.label,"ui-checkboxradio-radio-label"),this.options.label&&this.options.label!==this.originalLabel?this._updateLabel():this.originalLabel&&(this.options.label=this.originalLabel),this._enhance(),t&&(this._addClass(this.label,"ui-checkboxradio-checked","ui-state-active"),this.icon&&this._addClass(this.icon,null,"ui-state-hover")),this._on({change:"_toggleClasses",focus:function(){this._addClass(this.label,null,"ui-state-focus ui-visual-focus")},blur:function(){this._removeClass(this.label,null,"ui-state-focus ui-visual-focus")}})},_readType:function(){var e=this.element[0].nodeName.toLowerCase();this.type=this.element[0].type,"input"===e&&/radio|checkbox/.test(this.type)||t.error("Can't create checkboxradio on element.nodeName="+e+" and element.type="+this.type)},_enhance:function(){this._updateIcon(this.element[0].checked)},widget:function(){return this.label},_getRadioGroup:function(){var e,i=this.element[0].name,s="input[name='"+t.ui.escapeSelector(i)+"']";return i?(e=this.form.length?t(this.form[0].elements).filter(s):t(s).filter(function(){return 0===t(this).form().length}),e.not(this.element)):t([])},_toggleClasses:function(){var e=this.element[0].checked;this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",e),this.options.icon&&"checkbox"===this.type&&this._toggleClass(this.icon,null,"ui-icon-check ui-state-checked",e)._toggleClass(this.icon,null,"ui-icon-blank",!e),"radio"===this.type&&this._getRadioGroup().each(function(){var e=t(this).checkboxradio("instance");e&&e._removeClass(e.label,"ui-checkboxradio-checked","ui-state-active")})},_destroy:function(){this._unbindFormResetHandler(),this.icon&&(this.icon.remove(),this.iconSpace.remove())},_setOption:function(t,e){return"label"!==t||e?(this._super(t,e),"disabled"===t?(this._toggleClass(this.label,null,"ui-state-disabled",e),this.element[0].disabled=e,void 0):(this.refresh(),void 0)):void 0},_updateIcon:function(e){var i="ui-icon ui-icon-background ";this.options.icon?(this.icon||(this.icon=t("<span>"),this.iconSpace=t("<span> </span>"),this._addClass(this.iconSpace,"ui-checkboxradio-icon-space")),"checkbox"===this.type?(i+=e?"ui-icon-check ui-state-checked":"ui-icon-blank",this._removeClass(this.icon,null,e?"ui-icon-blank":"ui-icon-check")):i+="ui-icon-blank",this._addClass(this.icon,"ui-checkboxradio-icon",i),e||this._removeClass(this.icon,null,"ui-icon-check ui-state-checked"),this.icon.prependTo(this.label).after(this.iconSpace)):void 0!==this.icon&&(this.icon.remove(),this.iconSpace.remove(),delete this.icon)},_updateLabel:function(){var t=this.label.contents().not(this.element[0]);this.icon&&(t=t.not(this.icon[0])),this.iconSpace&&(t=t.not(this.iconSpace[0])),t.remove(),this.label.append(this.options.label)},refresh:function(){var t=this.element[0].checked,e=this.element[0].disabled;this._updateIcon(t),this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",t),null!==this.options.label&&this._updateLabel(),e!==this.options.disabled&&this._setOptions({disabled:e})}}]),t.ui.checkboxradio,t.widget("ui.button",{version:"1.12.1",defaultElement:"<button>",options:{classes:{"ui-button":"ui-corner-all"},disabled:null,icon:null,iconPosition:"beginning",label:null,showLabel:!0},_getCreateOptions:function(){var t,e=this._super()||{};return this.isInput=this.element.is("input"),t=this.element[0].disabled,null!=t&&(e.disabled=t),this.originalLabel=this.isInput?this.element.val():this.element.html(),this.originalLabel&&(e.label=this.originalLabel),e},_create:function(){!this.option.showLabel&!this.options.icon&&(this.options.showLabel=!0),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled||!1),this.hasTitle=!!this.element.attr("title"),this.options.label&&this.options.label!==this.originalLabel&&(this.isInput?this.element.val(this.options.label):this.element.html(this.options.label)),this._addClass("ui-button","ui-widget"),this._setOption("disabled",this.options.disabled),this._enhance(),this.element.is("a")&&this._on({keyup:function(e){e.keyCode===t.ui.keyCode.SPACE&&(e.preventDefault(),this.element[0].click?this.element[0].click():this.element.trigger("click"))}})},_enhance:function(){this.element.is("button")||this.element.attr("role","button"),this.options.icon&&(this._updateIcon("icon",this.options.icon),this._updateTooltip())},_updateTooltip:function(){this.title=this.element.attr("title"),this.options.showLabel||this.title||this.element.attr("title",this.options.label)},_updateIcon:function(e,i){var s="iconPosition"!==e,n=s?this.options.iconPosition:i,o="top"===n||"bottom"===n;this.icon?s&&this._removeClass(this.icon,null,this.options.icon):(this.icon=t("<span>"),this._addClass(this.icon,"ui-button-icon","ui-icon"),this.options.showLabel||this._addClass("ui-button-icon-only")),s&&this._addClass(this.icon,null,i),this._attachIcon(n),o?(this._addClass(this.icon,null,"ui-widget-icon-block"),this.iconSpace&&this.iconSpace.remove()):(this.iconSpace||(this.iconSpace=t("<span> </span>"),this._addClass(this.iconSpace,"ui-button-icon-space")),this._removeClass(this.icon,null,"ui-wiget-icon-block"),this._attachIconSpace(n))},_destroy:function(){this.element.removeAttr("role"),this.icon&&this.icon.remove(),this.iconSpace&&this.iconSpace.remove(),this.hasTitle||this.element.removeAttr("title")},_attachIconSpace:function(t){this.icon[/^(?:end|bottom)/.test(t)?"before":"after"](this.iconSpace)},_attachIcon:function(t){this.element[/^(?:end|bottom)/.test(t)?"append":"prepend"](this.icon)},_setOptions:function(t){var e=void 0===t.showLabel?this.options.showLabel:t.showLabel,i=void 0===t.icon?this.options.icon:t.icon;e||i||(t.showLabel=!0),this._super(t)},_setOption:function(t,e){"icon"===t&&(e?this._updateIcon(t,e):this.icon&&(this.icon.remove(),this.iconSpace&&this.iconSpace.remove())),"iconPosition"===t&&this._updateIcon(t,e),"showLabel"===t&&(this._toggleClass("ui-button-icon-only",null,!e),this._updateTooltip()),"label"===t&&(this.isInput?this.element.val(e):(this.element.html(e),this.icon&&(this._attachIcon(this.options.iconPosition),this._attachIconSpace(this.options.iconPosition)))),this._super(t,e),"disabled"===t&&(this._toggleClass(null,"ui-state-disabled",e),this.element[0].disabled=e,e&&this.element.blur())},refresh:function(){var t=this.element.is("input, button")?this.element[0].disabled:this.element.hasClass("ui-button-disabled");t!==this.options.disabled&&this._setOptions({disabled:t}),this._updateTooltip()}}),t.uiBackCompat!==!1&&(t.widget("ui.button",t.ui.button,{options:{text:!0,icons:{primary:null,secondary:null}},_create:function(){this.options.showLabel&&!this.options.text&&(this.options.showLabel=this.options.text),!this.options.showLabel&&this.options.text&&(this.options.text=this.options.showLabel),this.options.icon||!this.options.icons.primary&&!this.options.icons.secondary?this.options.icon&&(this.options.icons.primary=this.options.icon):this.options.icons.primary?this.options.icon=this.options.icons.primary:(this.options.icon=this.options.icons.secondary,this.options.iconPosition="end"),this._super()},_setOption:function(t,e){return"text"===t?(this._super("showLabel",e),void 0):("showLabel"===t&&(this.options.text=e),"icon"===t&&(this.options.icons.primary=e),"icons"===t&&(e.primary?(this._super("icon",e.primary),this._super("iconPosition","beginning")):e.secondary&&(this._super("icon",e.secondary),this._super("iconPosition","end"))),this._superApply(arguments),void 0)}}),t.fn.button=function(e){return function(){return!this.length||this.length&&"INPUT"!==this[0].tagName||this.length&&"INPUT"===this[0].tagName&&"checkbox"!==this.attr("type")&&"radio"!==this.attr("type")?e.apply(this,arguments):(t.ui.checkboxradio||t.error("Checkboxradio widget missing"),0===arguments.length?this.checkboxradio({icon:!1}):this.checkboxradio.apply(this,arguments))}}(t.fn.button),t.fn.buttonset=function(){return t.ui.controlgroup||t.error("Controlgroup widget missing"),"option"===arguments[0]&&"items"===arguments[1]&&arguments[2]?this.controlgroup.apply(this,[arguments[0],"items.button",arguments[2]]):"option"===arguments[0]&&"items"===arguments[1]?this.controlgroup.apply(this,[arguments[0],"items.button"]):("object"==typeof arguments[0]&&arguments[0].items&&(arguments[0].items={button:arguments[0].items}),this.controlgroup.apply(this,arguments))}),t.ui.button,t.extend(t.ui,{datepicker:{version:"1.12.1"}});var m;t.extend(s.prototype,{markerClassName:"hasDatepicker",maxRows:4,_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(t){return a(this._defaults,t||{}),this},_attachDatepicker:function(e,i){var s,n,o;s=e.nodeName.toLowerCase(),n="div"===s||"span"===s,e.id||(this.uuid+=1,e.id="dp"+this.uuid),o=this._newInst(t(e),n),o.settings=t.extend({},i||{}),"input"===s?this._connectDatepicker(e,o):n&&this._inlineDatepicker(e,o)},_newInst:function(e,i){var s=e[0].id.replace(/([^A-Za-z0-9_\-])/g,"\\\\$1");return{id:s,input:e,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:i,dpDiv:i?n(t("<div class='"+this._inlineClass+" ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>")):this.dpDiv}},_connectDatepicker:function(e,i){var s=t(e);i.append=t([]),i.trigger=t([]),s.hasClass(this.markerClassName)||(this._attachments(s,i),s.addClass(this.markerClassName).on("keydown",this._doKeyDown).on("keypress",this._doKeyPress).on("keyup",this._doKeyUp),this._autoSize(i),t.data(e,"datepicker",i),i.settings.disabled&&this._disableDatepicker(e))},_attachments:function(e,i){var s,n,o,a=this._get(i,"appendText"),r=this._get(i,"isRTL");i.append&&i.append.remove(),a&&(i.append=t("<span class='"+this._appendClass+"'>"+a+"</span>"),e[r?"before":"after"](i.append)),e.off("focus",this._showDatepicker),i.trigger&&i.trigger.remove(),s=this._get(i,"showOn"),("focus"===s||"both"===s)&&e.on("focus",this._showDatepicker),("button"===s||"both"===s)&&(n=this._get(i,"buttonText"),o=this._get(i,"buttonImage"),i.trigger=t(this._get(i,"buttonImageOnly")?t("<img/>").addClass(this._triggerClass).attr({src:o,alt:n,title:n}):t("<button type='button'></button>").addClass(this._triggerClass).html(o?t("<img/>").attr({src:o,alt:n,title:n}):n)),e[r?"before":"after"](i.trigger),i.trigger.on("click",function(){return t.datepicker._datepickerShowing&&t.datepicker._lastInput===e[0]?t.datepicker._hideDatepicker():t.datepicker._datepickerShowing&&t.datepicker._lastInput!==e[0]?(t.datepicker._hideDatepicker(),t.datepicker._showDatepicker(e[0])):t.datepicker._showDatepicker(e[0]),!1}))},_autoSize:function(t){if(this._get(t,"autoSize")&&!t.inline){var e,i,s,n,o=new Date(2009,11,20),a=this._get(t,"dateFormat");a.match(/[DM]/)&&(e=function(t){for(i=0,s=0,n=0;t.length>n;n++)t[n].length>i&&(i=t[n].length,s=n);return s},o.setMonth(e(this._get(t,a.match(/MM/)?"monthNames":"monthNamesShort"))),o.setDate(e(this._get(t,a.match(/DD/)?"dayNames":"dayNamesShort"))+20-o.getDay())),t.input.attr("size",this._formatDate(t,o).length)}},_inlineDatepicker:function(e,i){var s=t(e);s.hasClass(this.markerClassName)||(s.addClass(this.markerClassName).append(i.dpDiv),t.data(e,"datepicker",i),this._setDate(i,this._getDefaultDate(i),!0),this._updateDatepicker(i),this._updateAlternate(i),i.settings.disabled&&this._disableDatepicker(e),i.dpDiv.css("display","block"))},_dialogDatepicker:function(e,i,s,n,o){var r,h,l,c,u,d=this._dialogInst;return d||(this.uuid+=1,r="dp"+this.uuid,this._dialogInput=t("<input type='text' id='"+r+"' style='position: absolute; top: -100px; width: 0px;'/>"),this._dialogInput.on("keydown",this._doKeyDown),t("body").append(this._dialogInput),d=this._dialogInst=this._newInst(this._dialogInput,!1),d.settings={},t.data(this._dialogInput[0],"datepicker",d)),a(d.settings,n||{}),i=i&&i.constructor===Date?this._formatDate(d,i):i,this._dialogInput.val(i),this._pos=o?o.length?o:[o.pageX,o.pageY]:null,this._pos||(h=document.documentElement.clientWidth,l=document.documentElement.clientHeight,c=document.documentElement.scrollLeft||document.body.scrollLeft,u=document.documentElement.scrollTop||document.body.scrollTop,this._pos=[h/2-100+c,l/2-150+u]),this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),d.settings.onSelect=s,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),t.blockUI&&t.blockUI(this.dpDiv),t.data(this._dialogInput[0],"datepicker",d),this},_destroyDatepicker:function(e){var i,s=t(e),n=t.data(e,"datepicker");s.hasClass(this.markerClassName)&&(i=e.nodeName.toLowerCase(),t.removeData(e,"datepicker"),"input"===i?(n.append.remove(),n.trigger.remove(),s.removeClass(this.markerClassName).off("focus",this._showDatepicker).off("keydown",this._doKeyDown).off("keypress",this._doKeyPress).off("keyup",this._doKeyUp)):("div"===i||"span"===i)&&s.removeClass(this.markerClassName).empty(),m===n&&(m=null))},_enableDatepicker:function(e){var i,s,n=t(e),o=t.data(e,"datepicker");n.hasClass(this.markerClassName)&&(i=e.nodeName.toLowerCase(),"input"===i?(e.disabled=!1,o.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""})):("div"===i||"span"===i)&&(s=n.children("."+this._inlineClass),s.children().removeClass("ui-state-disabled"),s.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!1)),this._disabledInputs=t.map(this._disabledInputs,function(t){return t===e?null:t}))},_disableDatepicker:function(e){var i,s,n=t(e),o=t.data(e,"datepicker");n.hasClass(this.markerClassName)&&(i=e.nodeName.toLowerCase(),"input"===i?(e.disabled=!0,o.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"})):("div"===i||"span"===i)&&(s=n.children("."+this._inlineClass),s.children().addClass("ui-state-disabled"),s.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!0)),this._disabledInputs=t.map(this._disabledInputs,function(t){return t===e?null:t}),this._disabledInputs[this._disabledInputs.length]=e)},_isDisabledDatepicker:function(t){if(!t)return!1;for(var e=0;this._disabledInputs.length>e;e++)if(this._disabledInputs[e]===t)return!0;return!1},_getInst:function(e){try{return t.data(e,"datepicker")}catch(i){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(e,i,s){var n,o,r,h,l=this._getInst(e);return 2===arguments.length&&"string"==typeof i?"defaults"===i?t.extend({},t.datepicker._defaults):l?"all"===i?t.extend({},l.settings):this._get(l,i):null:(n=i||{},"string"==typeof i&&(n={},n[i]=s),l&&(this._curInst===l&&this._hideDatepicker(),o=this._getDateDatepicker(e,!0),r=this._getMinMaxDate(l,"min"),h=this._getMinMaxDate(l,"max"),a(l.settings,n),null!==r&&void 0!==n.dateFormat&&void 0===n.minDate&&(l.settings.minDate=this._formatDate(l,r)),null!==h&&void 0!==n.dateFormat&&void 0===n.maxDate&&(l.settings.maxDate=this._formatDate(l,h)),"disabled"in n&&(n.disabled?this._disableDatepicker(e):this._enableDatepicker(e)),this._attachments(t(e),l),this._autoSize(l),this._setDate(l,o),this._updateAlternate(l),this._updateDatepicker(l)),void 0)},_changeDatepicker:function(t,e,i){this._optionDatepicker(t,e,i)},_refreshDatepicker:function(t){var e=this._getInst(t);e&&this._updateDatepicker(e)},_setDateDatepicker:function(t,e){var i=this._getInst(t);i&&(this._setDate(i,e),this._updateDatepicker(i),this._updateAlternate(i))},_getDateDatepicker:function(t,e){var i=this._getInst(t);return i&&!i.inline&&this._setDateFromField(i,e),i?this._getDate(i):null},_doKeyDown:function(e){var i,s,n,o=t.datepicker._getInst(e.target),a=!0,r=o.dpDiv.is(".ui-datepicker-rtl");if(o._keyEvent=!0,t.datepicker._datepickerShowing)switch(e.keyCode){case 9:t.datepicker._hideDatepicker(),a=!1;break;case 13:return n=t("td."+t.datepicker._dayOverClass+":not(."+t.datepicker._currentClass+")",o.dpDiv),n[0]&&t.datepicker._selectDay(e.target,o.selectedMonth,o.selectedYear,n[0]),i=t.datepicker._get(o,"onSelect"),i?(s=t.datepicker._formatDate(o),i.apply(o.input?o.input[0]:null,[s,o])):t.datepicker._hideDatepicker(),!1;case 27:t.datepicker._hideDatepicker();break;case 33:t.datepicker._adjustDate(e.target,e.ctrlKey?-t.datepicker._get(o,"stepBigMonths"):-t.datepicker._get(o,"stepMonths"),"M");break;case 34:t.datepicker._adjustDate(e.target,e.ctrlKey?+t.datepicker._get(o,"stepBigMonths"):+t.datepicker._get(o,"stepMonths"),"M");break;case 35:(e.ctrlKey||e.metaKey)&&t.datepicker._clearDate(e.target),a=e.ctrlKey||e.metaKey;break;case 36:(e.ctrlKey||e.metaKey)&&t.datepicker._gotoToday(e.target),a=e.ctrlKey||e.metaKey;break;case 37:(e.ctrlKey||e.metaKey)&&t.datepicker._adjustDate(e.target,r?1:-1,"D"),a=e.ctrlKey||e.metaKey,e.originalEvent.altKey&&t.datepicker._adjustDate(e.target,e.ctrlKey?-t.datepicker._get(o,"stepBigMonths"):-t.datepicker._get(o,"stepMonths"),"M");break;case 38:(e.ctrlKey||e.metaKey)&&t.datepicker._adjustDate(e.target,-7,"D"),a=e.ctrlKey||e.metaKey;break;case 39:(e.ctrlKey||e.metaKey)&&t.datepicker._adjustDate(e.target,r?-1:1,"D"),a=e.ctrlKey||e.metaKey,e.originalEvent.altKey&&t.datepicker._adjustDate(e.target,e.ctrlKey?+t.datepicker._get(o,"stepBigMonths"):+t.datepicker._get(o,"stepMonths"),"M");break;case 40:(e.ctrlKey||e.metaKey)&&t.datepicker._adjustDate(e.target,7,"D"),a=e.ctrlKey||e.metaKey;break;default:a=!1}else 36===e.keyCode&&e.ctrlKey?t.datepicker._showDatepicker(this):a=!1;a&&(e.preventDefault(),e.stopPropagation())},_doKeyPress:function(e){var i,s,n=t.datepicker._getInst(e.target);return t.datepicker._get(n,"constrainInput")?(i=t.datepicker._possibleChars(t.datepicker._get(n,"dateFormat")),s=String.fromCharCode(null==e.charCode?e.keyCode:e.charCode),e.ctrlKey||e.metaKey||" ">s||!i||i.indexOf(s)>-1):void 0},_doKeyUp:function(e){var i,s=t.datepicker._getInst(e.target);if(s.input.val()!==s.lastVal)try{i=t.datepicker.parseDate(t.datepicker._get(s,"dateFormat"),s.input?s.input.val():null,t.datepicker._getFormatConfig(s)),i&&(t.datepicker._setDateFromField(s),t.datepicker._updateAlternate(s),t.datepicker._updateDatepicker(s))}catch(n){}return!0},_showDatepicker:function(e){if(e=e.target||e,"input"!==e.nodeName.toLowerCase()&&(e=t("input",e.parentNode)[0]),!t.datepicker._isDisabledDatepicker(e)&&t.datepicker._lastInput!==e){var s,n,o,r,h,l,c;s=t.datepicker._getInst(e),t.datepicker._curInst&&t.datepicker._curInst!==s&&(t.datepicker._curInst.dpDiv.stop(!0,!0),s&&t.datepicker._datepickerShowing&&t.datepicker._hideDatepicker(t.datepicker._curInst.input[0])),n=t.datepicker._get(s,"beforeShow"),o=n?n.apply(e,[e,s]):{},o!==!1&&(a(s.settings,o),s.lastVal=null,t.datepicker._lastInput=e,t.datepicker._setDateFromField(s),t.datepicker._inDialog&&(e.value=""),t.datepicker._pos||(t.datepicker._pos=t.datepicker._findPos(e),t.datepicker._pos[1]+=e.offsetHeight),r=!1,t(e).parents().each(function(){return r|="fixed"===t(this).css("position"),!r}),h={left:t.datepicker._pos[0],top:t.datepicker._pos[1]},t.datepicker._pos=null,s.dpDiv.empty(),s.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),t.datepicker._updateDatepicker(s),h=t.datepicker._checkOffset(s,h,r),s.dpDiv.css({position:t.datepicker._inDialog&&t.blockUI?"static":r?"fixed":"absolute",display:"none",left:h.left+"px",top:h.top+"px"}),s.inline||(l=t.datepicker._get(s,"showAnim"),c=t.datepicker._get(s,"duration"),s.dpDiv.css("z-index",i(t(e))+1),t.datepicker._datepickerShowing=!0,t.effects&&t.effects.effect[l]?s.dpDiv.show(l,t.datepicker._get(s,"showOptions"),c):s.dpDiv[l||"show"](l?c:null),t.datepicker._shouldFocusInput(s)&&s.input.trigger("focus"),t.datepicker._curInst=s))
@@ -12,4 +12,4 @@
     },disable:t.noop,enable:t.noop,close:function(e){var i=this;this._isOpen&&this._trigger("beforeClose",e)!==!1&&(this._isOpen=!1,this._focusedElement=null,this._destroyOverlay(),this._untrackInstance(),this.opener.filter(":focusable").trigger("focus").length||t.ui.safeBlur(t.ui.safeActiveElement(this.document[0])),this._hide(this.uiDialog,this.options.hide,function(){i._trigger("close",e)}))},isOpen:function(){return this._isOpen},moveToTop:function(){this._moveToTop()},_moveToTop:function(e,i){var s=!1,n=this.uiDialog.siblings(".ui-front:visible").map(function(){return+t(this).css("z-index")}).get(),o=Math.max.apply(null,n);return o>=+this.uiDialog.css("z-index")&&(this.uiDialog.css("z-index",o+1),s=!0),s&&!i&&this._trigger("focus",e),s},open:function(){var e=this;return this._isOpen?(this._moveToTop()&&this._focusTabbable(),void 0):(this._isOpen=!0,this.opener=t(t.ui.safeActiveElement(this.document[0])),this._size(),this._position(),this._createOverlay(),this._moveToTop(null,!0),this.overlay&&this.overlay.css("z-index",this.uiDialog.css("z-index")-1),this._show(this.uiDialog,this.options.show,function(){e._focusTabbable(),e._trigger("focus")}),this._makeFocusTarget(),this._trigger("open"),void 0)},_focusTabbable:function(){var t=this._focusedElement;t||(t=this.element.find("[autofocus]")),t.length||(t=this.element.find(":tabbable")),t.length||(t=this.uiDialogButtonPane.find(":tabbable")),t.length||(t=this.uiDialogTitlebarClose.filter(":tabbable")),t.length||(t=this.uiDialog),t.eq(0).trigger("focus")},_keepFocus:function(e){function i(){var e=t.ui.safeActiveElement(this.document[0]),i=this.uiDialog[0]===e||t.contains(this.uiDialog[0],e);i||this._focusTabbable()}e.preventDefault(),i.call(this),this._delay(i)},_createWrapper:function(){this.uiDialog=t("<div>").hide().attr({tabIndex:-1,role:"dialog"}).appendTo(this._appendTo()),this._addClass(this.uiDialog,"ui-dialog","ui-widget ui-widget-content ui-front"),this._on(this.uiDialog,{keydown:function(e){if(this.options.closeOnEscape&&!e.isDefaultPrevented()&&e.keyCode&&e.keyCode===t.ui.keyCode.ESCAPE)return e.preventDefault(),this.close(e),void 0;if(e.keyCode===t.ui.keyCode.TAB&&!e.isDefaultPrevented()){var i=this.uiDialog.find(":tabbable"),s=i.filter(":first"),n=i.filter(":last");e.target!==n[0]&&e.target!==this.uiDialog[0]||e.shiftKey?e.target!==s[0]&&e.target!==this.uiDialog[0]||!e.shiftKey||(this._delay(function(){n.trigger("focus")}),e.preventDefault()):(this._delay(function(){s.trigger("focus")}),e.preventDefault())}},mousedown:function(t){this._moveToTop(t)&&this._focusTabbable()}}),this.element.find("[aria-describedby]").length||this.uiDialog.attr({"aria-describedby":this.element.uniqueId().attr("id")})},_createTitlebar:function(){var e;this.uiDialogTitlebar=t("<div>"),this._addClass(this.uiDialogTitlebar,"ui-dialog-titlebar","ui-widget-header ui-helper-clearfix"),this._on(this.uiDialogTitlebar,{mousedown:function(e){t(e.target).closest(".ui-dialog-titlebar-close")||this.uiDialog.trigger("focus")}}),this.uiDialogTitlebarClose=t("<button type='button'></button>").button({label:t("<a>").text(this.options.closeText).html(),icon:"ui-icon-closethick",showLabel:!1}).appendTo(this.uiDialogTitlebar),this._addClass(this.uiDialogTitlebarClose,"ui-dialog-titlebar-close"),this._on(this.uiDialogTitlebarClose,{click:function(t){t.preventDefault(),this.close(t)}}),e=t("<span>").uniqueId().prependTo(this.uiDialogTitlebar),this._addClass(e,"ui-dialog-title"),this._title(e),this.uiDialogTitlebar.prependTo(this.uiDialog),this.uiDialog.attr({"aria-labelledby":e.attr("id")})},_title:function(t){this.options.title?t.text(this.options.title):t.html("&#160;")},_createButtonPane:function(){this.uiDialogButtonPane=t("<div>"),this._addClass(this.uiDialogButtonPane,"ui-dialog-buttonpane","ui-widget-content ui-helper-clearfix"),this.uiButtonSet=t("<div>").appendTo(this.uiDialogButtonPane),this._addClass(this.uiButtonSet,"ui-dialog-buttonset"),this._createButtons()},_createButtons:function(){var e=this,i=this.options.buttons;return this.uiDialogButtonPane.remove(),this.uiButtonSet.empty(),t.isEmptyObject(i)||t.isArray(i)&&!i.length?(this._removeClass(this.uiDialog,"ui-dialog-buttons"),void 0):(t.each(i,function(i,s){var n,o;s=t.isFunction(s)?{click:s,text:i}:s,s=t.extend({type:"button"},s),n=s.click,o={icon:s.icon,iconPosition:s.iconPosition,showLabel:s.showLabel,icons:s.icons,text:s.text},delete s.click,delete s.icon,delete s.iconPosition,delete s.showLabel,delete s.icons,"boolean"==typeof s.text&&delete s.text,t("<button></button>",s).button(o).appendTo(e.uiButtonSet).on("click",function(){n.apply(e.element[0],arguments)})}),this._addClass(this.uiDialog,"ui-dialog-buttons"),this.uiDialogButtonPane.appendTo(this.uiDialog),void 0)},_makeDraggable:function(){function e(t){return{position:t.position,offset:t.offset}}var i=this,s=this.options;this.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(s,n){i._addClass(t(this),"ui-dialog-dragging"),i._blockFrames(),i._trigger("dragStart",s,e(n))},drag:function(t,s){i._trigger("drag",t,e(s))},stop:function(n,o){var a=o.offset.left-i.document.scrollLeft(),r=o.offset.top-i.document.scrollTop();s.position={my:"left top",at:"left"+(a>=0?"+":"")+a+" "+"top"+(r>=0?"+":"")+r,of:i.window},i._removeClass(t(this),"ui-dialog-dragging"),i._unblockFrames(),i._trigger("dragStop",n,e(o))}})},_makeResizable:function(){function e(t){return{originalPosition:t.originalPosition,originalSize:t.originalSize,position:t.position,size:t.size}}var i=this,s=this.options,n=s.resizable,o=this.uiDialog.css("position"),a="string"==typeof n?n:"n,e,s,w,se,sw,ne,nw";this.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:this.element,maxWidth:s.maxWidth,maxHeight:s.maxHeight,minWidth:s.minWidth,minHeight:this._minHeight(),handles:a,start:function(s,n){i._addClass(t(this),"ui-dialog-resizing"),i._blockFrames(),i._trigger("resizeStart",s,e(n))},resize:function(t,s){i._trigger("resize",t,e(s))},stop:function(n,o){var a=i.uiDialog.offset(),r=a.left-i.document.scrollLeft(),h=a.top-i.document.scrollTop();s.height=i.uiDialog.height(),s.width=i.uiDialog.width(),s.position={my:"left top",at:"left"+(r>=0?"+":"")+r+" "+"top"+(h>=0?"+":"")+h,of:i.window},i._removeClass(t(this),"ui-dialog-resizing"),i._unblockFrames(),i._trigger("resizeStop",n,e(o))}}).css("position",o)},_trackFocus:function(){this._on(this.widget(),{focusin:function(e){this._makeFocusTarget(),this._focusedElement=t(e.target)}})},_makeFocusTarget:function(){this._untrackInstance(),this._trackingInstances().unshift(this)},_untrackInstance:function(){var e=this._trackingInstances(),i=t.inArray(this,e);-1!==i&&e.splice(i,1)},_trackingInstances:function(){var t=this.document.data("ui-dialog-instances");return t||(t=[],this.document.data("ui-dialog-instances",t)),t},_minHeight:function(){var t=this.options;return"auto"===t.height?t.minHeight:Math.min(t.minHeight,t.height)},_position:function(){var t=this.uiDialog.is(":visible");t||this.uiDialog.show(),this.uiDialog.position(this.options.position),t||this.uiDialog.hide()},_setOptions:function(e){var i=this,s=!1,n={};t.each(e,function(t,e){i._setOption(t,e),t in i.sizeRelatedOptions&&(s=!0),t in i.resizableRelatedOptions&&(n[t]=e)}),s&&(this._size(),this._position()),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option",n)},_setOption:function(e,i){var s,n,o=this.uiDialog;"disabled"!==e&&(this._super(e,i),"appendTo"===e&&this.uiDialog.appendTo(this._appendTo()),"buttons"===e&&this._createButtons(),"closeText"===e&&this.uiDialogTitlebarClose.button({label:t("<a>").text(""+this.options.closeText).html()}),"draggable"===e&&(s=o.is(":data(ui-draggable)"),s&&!i&&o.draggable("destroy"),!s&&i&&this._makeDraggable()),"position"===e&&this._position(),"resizable"===e&&(n=o.is(":data(ui-resizable)"),n&&!i&&o.resizable("destroy"),n&&"string"==typeof i&&o.resizable("option","handles",i),n||i===!1||this._makeResizable()),"title"===e&&this._title(this.uiDialogTitlebar.find(".ui-dialog-title")))},_size:function(){var t,e,i,s=this.options;this.element.show().css({width:"auto",minHeight:0,maxHeight:"none",height:0}),s.minWidth>s.width&&(s.width=s.minWidth),t=this.uiDialog.css({height:"auto",width:s.width}).outerHeight(),e=Math.max(0,s.minHeight-t),i="number"==typeof s.maxHeight?Math.max(0,s.maxHeight-t):"none","auto"===s.height?this.element.css({minHeight:e,maxHeight:i,height:"auto"}):this.element.height(Math.max(0,s.height-t)),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())},_blockFrames:function(){this.iframeBlocks=this.document.find("iframe").map(function(){var e=t(this);return t("<div>").css({position:"absolute",width:e.outerWidth(),height:e.outerHeight()}).appendTo(e.parent()).offset(e.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_allowInteraction:function(e){return t(e.target).closest(".ui-dialog").length?!0:!!t(e.target).closest(".ui-datepicker").length},_createOverlay:function(){if(this.options.modal){var e=!0;this._delay(function(){e=!1}),this.document.data("ui-dialog-overlays")||this._on(this.document,{focusin:function(t){e||this._allowInteraction(t)||(t.preventDefault(),this._trackingInstances()[0]._focusTabbable())}}),this.overlay=t("<div>").appendTo(this._appendTo()),this._addClass(this.overlay,null,"ui-widget-overlay ui-front"),this._on(this.overlay,{mousedown:"_keepFocus"}),this.document.data("ui-dialog-overlays",(this.document.data("ui-dialog-overlays")||0)+1)}},_destroyOverlay:function(){if(this.options.modal&&this.overlay){var t=this.document.data("ui-dialog-overlays")-1;t?this.document.data("ui-dialog-overlays",t):(this._off(this.document,"focusin"),this.document.removeData("ui-dialog-overlays")),this.overlay.remove(),this.overlay=null}}}),t.uiBackCompat!==!1&&t.widget("ui.dialog",t.ui.dialog,{options:{dialogClass:""},_createWrapper:function(){this._super(),this.uiDialog.addClass(this.options.dialogClass)},_setOption:function(t,e){"dialogClass"===t&&this.uiDialog.removeClass(this.options.dialogClass).addClass(e),this._superApply(arguments)}}),t.ui.dialog,t.widget("ui.droppable",{version:"1.12.1",widgetEventPrefix:"drop",options:{accept:"*",addClasses:!0,greedy:!1,scope:"default",tolerance:"intersect",activate:null,deactivate:null,drop:null,out:null,over:null},_create:function(){var e,i=this.options,s=i.accept;this.isover=!1,this.isout=!0,this.accept=t.isFunction(s)?s:function(t){return t.is(s)},this.proportions=function(){return arguments.length?(e=arguments[0],void 0):e?e:e={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight}},this._addToManager(i.scope),i.addClasses&&this._addClass("ui-droppable")},_addToManager:function(e){t.ui.ddmanager.droppables[e]=t.ui.ddmanager.droppables[e]||[],t.ui.ddmanager.droppables[e].push(this)},_splice:function(t){for(var e=0;t.length>e;e++)t[e]===this&&t.splice(e,1)},_destroy:function(){var e=t.ui.ddmanager.droppables[this.options.scope];this._splice(e)},_setOption:function(e,i){if("accept"===e)this.accept=t.isFunction(i)?i:function(t){return t.is(i)};else if("scope"===e){var s=t.ui.ddmanager.droppables[this.options.scope];this._splice(s),this._addToManager(i)}this._super(e,i)},_activate:function(e){var i=t.ui.ddmanager.current;this._addActiveClass(),i&&this._trigger("activate",e,this.ui(i))},_deactivate:function(e){var i=t.ui.ddmanager.current;this._removeActiveClass(),i&&this._trigger("deactivate",e,this.ui(i))},_over:function(e){var i=t.ui.ddmanager.current;i&&(i.currentItem||i.element)[0]!==this.element[0]&&this.accept.call(this.element[0],i.currentItem||i.element)&&(this._addHoverClass(),this._trigger("over",e,this.ui(i)))},_out:function(e){var i=t.ui.ddmanager.current;i&&(i.currentItem||i.element)[0]!==this.element[0]&&this.accept.call(this.element[0],i.currentItem||i.element)&&(this._removeHoverClass(),this._trigger("out",e,this.ui(i)))},_drop:function(e,i){var s=i||t.ui.ddmanager.current,n=!1;return s&&(s.currentItem||s.element)[0]!==this.element[0]?(this.element.find(":data(ui-droppable)").not(".ui-draggable-dragging").each(function(){var i=t(this).droppable("instance");return i.options.greedy&&!i.options.disabled&&i.options.scope===s.options.scope&&i.accept.call(i.element[0],s.currentItem||s.element)&&v(s,t.extend(i,{offset:i.element.offset()}),i.options.tolerance,e)?(n=!0,!1):void 0}),n?!1:this.accept.call(this.element[0],s.currentItem||s.element)?(this._removeActiveClass(),this._removeHoverClass(),this._trigger("drop",e,this.ui(s)),this.element):!1):!1},ui:function(t){return{draggable:t.currentItem||t.element,helper:t.helper,position:t.position,offset:t.positionAbs}},_addHoverClass:function(){this._addClass("ui-droppable-hover")},_removeHoverClass:function(){this._removeClass("ui-droppable-hover")},_addActiveClass:function(){this._addClass("ui-droppable-active")},_removeActiveClass:function(){this._removeClass("ui-droppable-active")}});var v=t.ui.intersect=function(){function t(t,e,i){return t>=e&&e+i>t}return function(e,i,s,n){if(!i.offset)return!1;var o=(e.positionAbs||e.position.absolute).left+e.margins.left,a=(e.positionAbs||e.position.absolute).top+e.margins.top,r=o+e.helperProportions.width,h=a+e.helperProportions.height,l=i.offset.left,c=i.offset.top,u=l+i.proportions().width,d=c+i.proportions().height;switch(s){case"fit":return o>=l&&u>=r&&a>=c&&d>=h;case"intersect":return o+e.helperProportions.width/2>l&&u>r-e.helperProportions.width/2&&a+e.helperProportions.height/2>c&&d>h-e.helperProportions.height/2;case"pointer":return t(n.pageY,c,i.proportions().height)&&t(n.pageX,l,i.proportions().width);case"touch":return(a>=c&&d>=a||h>=c&&d>=h||c>a&&h>d)&&(o>=l&&u>=o||r>=l&&u>=r||l>o&&r>u);default:return!1}}}();t.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(e,i){var s,n,o=t.ui.ddmanager.droppables[e.options.scope]||[],a=i?i.type:null,r=(e.currentItem||e.element).find(":data(ui-droppable)").addBack();t:for(s=0;o.length>s;s++)if(!(o[s].options.disabled||e&&!o[s].accept.call(o[s].element[0],e.currentItem||e.element))){for(n=0;r.length>n;n++)if(r[n]===o[s].element[0]){o[s].proportions().height=0;continue t}o[s].visible="none"!==o[s].element.css("display"),o[s].visible&&("mousedown"===a&&o[s]._activate.call(o[s],i),o[s].offset=o[s].element.offset(),o[s].proportions({width:o[s].element[0].offsetWidth,height:o[s].element[0].offsetHeight}))}},drop:function(e,i){var s=!1;return t.each((t.ui.ddmanager.droppables[e.options.scope]||[]).slice(),function(){this.options&&(!this.options.disabled&&this.visible&&v(e,this,this.options.tolerance,i)&&(s=this._drop.call(this,i)||s),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],e.currentItem||e.element)&&(this.isout=!0,this.isover=!1,this._deactivate.call(this,i)))}),s},dragStart:function(e,i){e.element.parentsUntil("body").on("scroll.droppable",function(){e.options.refreshPositions||t.ui.ddmanager.prepareOffsets(e,i)})},drag:function(e,i){e.options.refreshPositions&&t.ui.ddmanager.prepareOffsets(e,i),t.each(t.ui.ddmanager.droppables[e.options.scope]||[],function(){if(!this.options.disabled&&!this.greedyChild&&this.visible){var s,n,o,a=v(e,this,this.options.tolerance,i),r=!a&&this.isover?"isout":a&&!this.isover?"isover":null;r&&(this.options.greedy&&(n=this.options.scope,o=this.element.parents(":data(ui-droppable)").filter(function(){return t(this).droppable("instance").options.scope===n}),o.length&&(s=t(o[0]).droppable("instance"),s.greedyChild="isover"===r)),s&&"isover"===r&&(s.isover=!1,s.isout=!0,s._out.call(s,i)),this[r]=!0,this["isout"===r?"isover":"isout"]=!1,this["isover"===r?"_over":"_out"].call(this,i),s&&"isout"===r&&(s.isout=!1,s.isover=!0,s._over.call(s,i)))}})},dragStop:function(e,i){e.element.parentsUntil("body").off("scroll.droppable"),e.options.refreshPositions||t.ui.ddmanager.prepareOffsets(e,i)}},t.uiBackCompat!==!1&&t.widget("ui.droppable",t.ui.droppable,{options:{hoverClass:!1,activeClass:!1},_addActiveClass:function(){this._super(),this.options.activeClass&&this.element.addClass(this.options.activeClass)},_removeActiveClass:function(){this._super(),this.options.activeClass&&this.element.removeClass(this.options.activeClass)},_addHoverClass:function(){this._super(),this.options.hoverClass&&this.element.addClass(this.options.hoverClass)},_removeHoverClass:function(){this._super(),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass)}}),t.ui.droppable,t.widget("ui.progressbar",{version:"1.12.1",options:{classes:{"ui-progressbar":"ui-corner-all","ui-progressbar-value":"ui-corner-left","ui-progressbar-complete":"ui-corner-right"},max:100,value:0,change:null,complete:null},min:0,_create:function(){this.oldValue=this.options.value=this._constrainedValue(),this.element.attr({role:"progressbar","aria-valuemin":this.min}),this._addClass("ui-progressbar","ui-widget ui-widget-content"),this.valueDiv=t("<div>").appendTo(this.element),this._addClass(this.valueDiv,"ui-progressbar-value","ui-widget-header"),this._refreshValue()},_destroy:function(){this.element.removeAttr("role aria-valuemin aria-valuemax aria-valuenow"),this.valueDiv.remove()},value:function(t){return void 0===t?this.options.value:(this.options.value=this._constrainedValue(t),this._refreshValue(),void 0)},_constrainedValue:function(t){return void 0===t&&(t=this.options.value),this.indeterminate=t===!1,"number"!=typeof t&&(t=0),this.indeterminate?!1:Math.min(this.options.max,Math.max(this.min,t))},_setOptions:function(t){var e=t.value;delete t.value,this._super(t),this.options.value=this._constrainedValue(e),this._refreshValue()},_setOption:function(t,e){"max"===t&&(e=Math.max(this.min,e)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t)},_percentage:function(){return this.indeterminate?100:100*(this.options.value-this.min)/(this.options.max-this.min)},_refreshValue:function(){var e=this.options.value,i=this._percentage();this.valueDiv.toggle(this.indeterminate||e>this.min).width(i.toFixed(0)+"%"),this._toggleClass(this.valueDiv,"ui-progressbar-complete",null,e===this.options.max)._toggleClass("ui-progressbar-indeterminate",null,this.indeterminate),this.indeterminate?(this.element.removeAttr("aria-valuenow"),this.overlayDiv||(this.overlayDiv=t("<div>").appendTo(this.valueDiv),this._addClass(this.overlayDiv,"ui-progressbar-overlay"))):(this.element.attr({"aria-valuemax":this.options.max,"aria-valuenow":e}),this.overlayDiv&&(this.overlayDiv.remove(),this.overlayDiv=null)),this.oldValue!==e&&(this.oldValue=e,this._trigger("change")),e===this.options.max&&this._trigger("complete")}}),t.widget("ui.selectable",t.ui.mouse,{version:"1.12.1",options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch",selected:null,selecting:null,start:null,stop:null,unselected:null,unselecting:null},_create:function(){var e=this;this._addClass("ui-selectable"),this.dragged=!1,this.refresh=function(){e.elementPos=t(e.element[0]).offset(),e.selectees=t(e.options.filter,e.element[0]),e._addClass(e.selectees,"ui-selectee"),e.selectees.each(function(){var i=t(this),s=i.offset(),n={left:s.left-e.elementPos.left,top:s.top-e.elementPos.top};t.data(this,"selectable-item",{element:this,$element:i,left:n.left,top:n.top,right:n.left+i.outerWidth(),bottom:n.top+i.outerHeight(),startselected:!1,selected:i.hasClass("ui-selected"),selecting:i.hasClass("ui-selecting"),unselecting:i.hasClass("ui-unselecting")})})},this.refresh(),this._mouseInit(),this.helper=t("<div>"),this._addClass(this.helper,"ui-selectable-helper")},_destroy:function(){this.selectees.removeData("selectable-item"),this._mouseDestroy()},_mouseStart:function(e){var i=this,s=this.options;this.opos=[e.pageX,e.pageY],this.elementPos=t(this.element[0]).offset(),this.options.disabled||(this.selectees=t(s.filter,this.element[0]),this._trigger("start",e),t(s.appendTo).append(this.helper),this.helper.css({left:e.pageX,top:e.pageY,width:0,height:0}),s.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var s=t.data(this,"selectable-item");s.startselected=!0,e.metaKey||e.ctrlKey||(i._removeClass(s.$element,"ui-selected"),s.selected=!1,i._addClass(s.$element,"ui-unselecting"),s.unselecting=!0,i._trigger("unselecting",e,{unselecting:s.element}))}),t(e.target).parents().addBack().each(function(){var s,n=t.data(this,"selectable-item");return n?(s=!e.metaKey&&!e.ctrlKey||!n.$element.hasClass("ui-selected"),i._removeClass(n.$element,s?"ui-unselecting":"ui-selected")._addClass(n.$element,s?"ui-selecting":"ui-unselecting"),n.unselecting=!s,n.selecting=s,n.selected=s,s?i._trigger("selecting",e,{selecting:n.element}):i._trigger("unselecting",e,{unselecting:n.element}),!1):void 0}))},_mouseDrag:function(e){if(this.dragged=!0,!this.options.disabled){var i,s=this,n=this.options,o=this.opos[0],a=this.opos[1],r=e.pageX,h=e.pageY;return o>r&&(i=r,r=o,o=i),a>h&&(i=h,h=a,a=i),this.helper.css({left:o,top:a,width:r-o,height:h-a}),this.selectees.each(function(){var i=t.data(this,"selectable-item"),l=!1,c={};i&&i.element!==s.element[0]&&(c.left=i.left+s.elementPos.left,c.right=i.right+s.elementPos.left,c.top=i.top+s.elementPos.top,c.bottom=i.bottom+s.elementPos.top,"touch"===n.tolerance?l=!(c.left>r||o>c.right||c.top>h||a>c.bottom):"fit"===n.tolerance&&(l=c.left>o&&r>c.right&&c.top>a&&h>c.bottom),l?(i.selected&&(s._removeClass(i.$element,"ui-selected"),i.selected=!1),i.unselecting&&(s._removeClass(i.$element,"ui-unselecting"),i.unselecting=!1),i.selecting||(s._addClass(i.$element,"ui-selecting"),i.selecting=!0,s._trigger("selecting",e,{selecting:i.element}))):(i.selecting&&((e.metaKey||e.ctrlKey)&&i.startselected?(s._removeClass(i.$element,"ui-selecting"),i.selecting=!1,s._addClass(i.$element,"ui-selected"),i.selected=!0):(s._removeClass(i.$element,"ui-selecting"),i.selecting=!1,i.startselected&&(s._addClass(i.$element,"ui-unselecting"),i.unselecting=!0),s._trigger("unselecting",e,{unselecting:i.element}))),i.selected&&(e.metaKey||e.ctrlKey||i.startselected||(s._removeClass(i.$element,"ui-selected"),i.selected=!1,s._addClass(i.$element,"ui-unselecting"),i.unselecting=!0,s._trigger("unselecting",e,{unselecting:i.element})))))}),!1}},_mouseStop:function(e){var i=this;return this.dragged=!1,t(".ui-unselecting",this.element[0]).each(function(){var s=t.data(this,"selectable-item");i._removeClass(s.$element,"ui-unselecting"),s.unselecting=!1,s.startselected=!1,i._trigger("unselected",e,{unselected:s.element})}),t(".ui-selecting",this.element[0]).each(function(){var s=t.data(this,"selectable-item");i._removeClass(s.$element,"ui-selecting")._addClass(s.$element,"ui-selected"),s.selecting=!1,s.selected=!0,s.startselected=!0,i._trigger("selected",e,{selected:s.element})}),this._trigger("stop",e),this.helper.remove(),!1}}),t.widget("ui.selectmenu",[t.ui.formResetMixin,{version:"1.12.1",defaultElement:"<select>",options:{appendTo:null,classes:{"ui-selectmenu-button-open":"ui-corner-top","ui-selectmenu-button-closed":"ui-corner-all"},disabled:null,icons:{button:"ui-icon-triangle-1-s"},position:{my:"left top",at:"left bottom",collision:"none"},width:!1,change:null,close:null,focus:null,open:null,select:null},_create:function(){var e=this.element.uniqueId().attr("id");this.ids={element:e,button:e+"-button",menu:e+"-menu"},this._drawButton(),this._drawMenu(),this._bindFormResetHandler(),this._rendered=!1,this.menuItems=t()},_drawButton:function(){var e,i=this,s=this._parseOption(this.element.find("option:selected"),this.element[0].selectedIndex);this.labels=this.element.labels().attr("for",this.ids.button),this._on(this.labels,{click:function(t){this.button.focus(),t.preventDefault()}}),this.element.hide(),this.button=t("<span>",{tabindex:this.options.disabled?-1:0,id:this.ids.button,role:"combobox","aria-expanded":"false","aria-autocomplete":"list","aria-owns":this.ids.menu,"aria-haspopup":"true",title:this.element.attr("title")}).insertAfter(this.element),this._addClass(this.button,"ui-selectmenu-button ui-selectmenu-button-closed","ui-button ui-widget"),e=t("<span>").appendTo(this.button),this._addClass(e,"ui-selectmenu-icon","ui-icon "+this.options.icons.button),this.buttonItem=this._renderButtonItem(s).appendTo(this.button),this.options.width!==!1&&this._resizeButton(),this._on(this.button,this._buttonEvents),this.button.one("focusin",function(){i._rendered||i._refreshMenu()})},_drawMenu:function(){var e=this;this.menu=t("<ul>",{"aria-hidden":"true","aria-labelledby":this.ids.button,id:this.ids.menu}),this.menuWrap=t("<div>").append(this.menu),this._addClass(this.menuWrap,"ui-selectmenu-menu","ui-front"),this.menuWrap.appendTo(this._appendTo()),this.menuInstance=this.menu.menu({classes:{"ui-menu":"ui-corner-bottom"},role:"listbox",select:function(t,i){t.preventDefault(),e._setSelection(),e._select(i.item.data("ui-selectmenu-item"),t)},focus:function(t,i){var s=i.item.data("ui-selectmenu-item");null!=e.focusIndex&&s.index!==e.focusIndex&&(e._trigger("focus",t,{item:s}),e.isOpen||e._select(s,t)),e.focusIndex=s.index,e.button.attr("aria-activedescendant",e.menuItems.eq(s.index).attr("id"))}}).menu("instance"),this.menuInstance._off(this.menu,"mouseleave"),this.menuInstance._closeOnDocumentClick=function(){return!1},this.menuInstance._isDivider=function(){return!1}},refresh:function(){this._refreshMenu(),this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(this._getSelectedItem().data("ui-selectmenu-item")||{})),null===this.options.width&&this._resizeButton()},_refreshMenu:function(){var t,e=this.element.find("option");this.menu.empty(),this._parseOptions(e),this._renderMenu(this.menu,this.items),this.menuInstance.refresh(),this.menuItems=this.menu.find("li").not(".ui-selectmenu-optgroup").find(".ui-menu-item-wrapper"),this._rendered=!0,e.length&&(t=this._getSelectedItem(),this.menuInstance.focus(null,t),this._setAria(t.data("ui-selectmenu-item")),this._setOption("disabled",this.element.prop("disabled")))},open:function(t){this.options.disabled||(this._rendered?(this._removeClass(this.menu.find(".ui-state-active"),null,"ui-state-active"),this.menuInstance.focus(null,this._getSelectedItem())):this._refreshMenu(),this.menuItems.length&&(this.isOpen=!0,this._toggleAttr(),this._resizeMenu(),this._position(),this._on(this.document,this._documentClick),this._trigger("open",t)))},_position:function(){this.menuWrap.position(t.extend({of:this.button},this.options.position))},close:function(t){this.isOpen&&(this.isOpen=!1,this._toggleAttr(),this.range=null,this._off(this.document),this._trigger("close",t))},widget:function(){return this.button},menuWidget:function(){return this.menu},_renderButtonItem:function(e){var i=t("<span>");return this._setText(i,e.label),this._addClass(i,"ui-selectmenu-text"),i},_renderMenu:function(e,i){var s=this,n="";t.each(i,function(i,o){var a;o.optgroup!==n&&(a=t("<li>",{text:o.optgroup}),s._addClass(a,"ui-selectmenu-optgroup","ui-menu-divider"+(o.element.parent("optgroup").prop("disabled")?" ui-state-disabled":"")),a.appendTo(e),n=o.optgroup),s._renderItemData(e,o)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-selectmenu-item",e)},_renderItem:function(e,i){var s=t("<li>"),n=t("<div>",{title:i.element.attr("title")});return i.disabled&&this._addClass(s,null,"ui-state-disabled"),this._setText(n,i.label),s.append(n).appendTo(e)},_setText:function(t,e){e?t.text(e):t.html("&#160;")},_move:function(t,e){var i,s,n=".ui-menu-item";this.isOpen?i=this.menuItems.eq(this.focusIndex).parent("li"):(i=this.menuItems.eq(this.element[0].selectedIndex).parent("li"),n+=":not(.ui-state-disabled)"),s="first"===t||"last"===t?i["first"===t?"prevAll":"nextAll"](n).eq(-1):i[t+"All"](n).eq(0),s.length&&this.menuInstance.focus(e,s)},_getSelectedItem:function(){return this.menuItems.eq(this.element[0].selectedIndex).parent("li")},_toggle:function(t){this[this.isOpen?"close":"open"](t)},_setSelection:function(){var t;this.range&&(window.getSelection?(t=window.getSelection(),t.removeAllRanges(),t.addRange(this.range)):this.range.select(),this.button.focus())},_documentClick:{mousedown:function(e){this.isOpen&&(t(e.target).closest(".ui-selectmenu-menu, #"+t.ui.escapeSelector(this.ids.button)).length||this.close(e))}},_buttonEvents:{mousedown:function(){var t;window.getSelection?(t=window.getSelection(),t.rangeCount&&(this.range=t.getRangeAt(0))):this.range=document.selection.createRange()},click:function(t){this._setSelection(),this._toggle(t)},keydown:function(e){var i=!0;switch(e.keyCode){case t.ui.keyCode.TAB:case t.ui.keyCode.ESCAPE:this.close(e),i=!1;break;case t.ui.keyCode.ENTER:this.isOpen&&this._selectFocusedItem(e);break;case t.ui.keyCode.UP:e.altKey?this._toggle(e):this._move("prev",e);break;case t.ui.keyCode.DOWN:e.altKey?this._toggle(e):this._move("next",e);break;case t.ui.keyCode.SPACE:this.isOpen?this._selectFocusedItem(e):this._toggle(e);break;case t.ui.keyCode.LEFT:this._move("prev",e);break;case t.ui.keyCode.RIGHT:this._move("next",e);break;case t.ui.keyCode.HOME:case t.ui.keyCode.PAGE_UP:this._move("first",e);break;case t.ui.keyCode.END:case t.ui.keyCode.PAGE_DOWN:this._move("last",e);break;default:this.menu.trigger(e),i=!1}i&&e.preventDefault()}},_selectFocusedItem:function(t){var e=this.menuItems.eq(this.focusIndex).parent("li");e.hasClass("ui-state-disabled")||this._select(e.data("ui-selectmenu-item"),t)},_select:function(t,e){var i=this.element[0].selectedIndex;this.element[0].selectedIndex=t.index,this.buttonItem.replaceWith(this.buttonItem=this._renderButtonItem(t)),this._setAria(t),this._trigger("select",e,{item:t}),t.index!==i&&this._trigger("change",e,{item:t}),this.close(e)},_setAria:function(t){var e=this.menuItems.eq(t.index).attr("id");this.button.attr({"aria-labelledby":e,"aria-activedescendant":e}),this.menu.attr("aria-activedescendant",e)},_setOption:function(t,e){if("icons"===t){var i=this.button.find("span.ui-icon");this._removeClass(i,null,this.options.icons.button)._addClass(i,null,e.button)}this._super(t,e),"appendTo"===t&&this.menuWrap.appendTo(this._appendTo()),"width"===t&&this._resizeButton()},_setOptionDisabled:function(t){this._super(t),this.menuInstance.option("disabled",t),this.button.attr("aria-disabled",t),this._toggleClass(this.button,null,"ui-state-disabled",t),this.element.prop("disabled",t),t?(this.button.attr("tabindex",-1),this.close()):this.button.attr("tabindex",0)},_appendTo:function(){var e=this.options.appendTo;return e&&(e=e.jquery||e.nodeType?t(e):this.document.find(e).eq(0)),e&&e[0]||(e=this.element.closest(".ui-front, dialog")),e.length||(e=this.document[0].body),e},_toggleAttr:function(){this.button.attr("aria-expanded",this.isOpen),this._removeClass(this.button,"ui-selectmenu-button-"+(this.isOpen?"closed":"open"))._addClass(this.button,"ui-selectmenu-button-"+(this.isOpen?"open":"closed"))._toggleClass(this.menuWrap,"ui-selectmenu-open",null,this.isOpen),this.menu.attr("aria-hidden",!this.isOpen)},_resizeButton:function(){var t=this.options.width;return t===!1?(this.button.css("width",""),void 0):(null===t&&(t=this.element.show().outerWidth(),this.element.hide()),this.button.outerWidth(t),void 0)},_resizeMenu:function(){this.menu.outerWidth(Math.max(this.button.outerWidth(),this.menu.width("").outerWidth()+1))},_getCreateOptions:function(){var t=this._super();return t.disabled=this.element.prop("disabled"),t},_parseOptions:function(e){var i=this,s=[];e.each(function(e,n){s.push(i._parseOption(t(n),e))}),this.items=s},_parseOption:function(t,e){var i=t.parent("optgroup");return{element:t,index:e,value:t.val(),label:t.text(),optgroup:i.attr("label")||"",disabled:i.prop("disabled")||t.prop("disabled")}},_destroy:function(){this._unbindFormResetHandler(),this.menuWrap.remove(),this.button.remove(),this.element.show(),this.element.removeUniqueId(),this.labels.attr("for",this.ids.element)}}]),t.widget("ui.slider",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"slide",options:{animate:!1,classes:{"ui-slider":"ui-corner-all","ui-slider-handle":"ui-corner-all","ui-slider-range":"ui-corner-all ui-widget-header"},distance:0,max:100,min:0,orientation:"horizontal",range:!1,step:1,value:0,values:null,change:null,slide:null,start:null,stop:null},numPages:5,_create:function(){this._keySliding=!1,this._mouseSliding=!1,this._animateOff=!0,this._handleIndex=null,this._detectOrientation(),this._mouseInit(),this._calculateNewMax(),this._addClass("ui-slider ui-slider-"+this.orientation,"ui-widget ui-widget-content"),this._refresh(),this._animateOff=!1
     },_refresh:function(){this._createRange(),this._createHandles(),this._setupEvents(),this._refreshValue()},_createHandles:function(){var e,i,s=this.options,n=this.element.find(".ui-slider-handle"),o="<span tabindex='0'></span>",a=[];for(i=s.values&&s.values.length||1,n.length>i&&(n.slice(i).remove(),n=n.slice(0,i)),e=n.length;i>e;e++)a.push(o);this.handles=n.add(t(a.join("")).appendTo(this.element)),this._addClass(this.handles,"ui-slider-handle","ui-state-default"),this.handle=this.handles.eq(0),this.handles.each(function(e){t(this).data("ui-slider-handle-index",e).attr("tabIndex",0)})},_createRange:function(){var e=this.options;e.range?(e.range===!0&&(e.values?e.values.length&&2!==e.values.length?e.values=[e.values[0],e.values[0]]:t.isArray(e.values)&&(e.values=e.values.slice(0)):e.values=[this._valueMin(),this._valueMin()]),this.range&&this.range.length?(this._removeClass(this.range,"ui-slider-range-min ui-slider-range-max"),this.range.css({left:"",bottom:""})):(this.range=t("<div>").appendTo(this.element),this._addClass(this.range,"ui-slider-range")),("min"===e.range||"max"===e.range)&&this._addClass(this.range,"ui-slider-range-"+e.range)):(this.range&&this.range.remove(),this.range=null)},_setupEvents:function(){this._off(this.handles),this._on(this.handles,this._handleEvents),this._hoverable(this.handles),this._focusable(this.handles)},_destroy:function(){this.handles.remove(),this.range&&this.range.remove(),this._mouseDestroy()},_mouseCapture:function(e){var i,s,n,o,a,r,h,l,c=this,u=this.options;return u.disabled?!1:(this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()},this.elementOffset=this.element.offset(),i={x:e.pageX,y:e.pageY},s=this._normValueFromMouse(i),n=this._valueMax()-this._valueMin()+1,this.handles.each(function(e){var i=Math.abs(s-c.values(e));(n>i||n===i&&(e===c._lastChangedValue||c.values(e)===u.min))&&(n=i,o=t(this),a=e)}),r=this._start(e,a),r===!1?!1:(this._mouseSliding=!0,this._handleIndex=a,this._addClass(o,null,"ui-state-active"),o.trigger("focus"),h=o.offset(),l=!t(e.target).parents().addBack().is(".ui-slider-handle"),this._clickOffset=l?{left:0,top:0}:{left:e.pageX-h.left-o.width()/2,top:e.pageY-h.top-o.height()/2-(parseInt(o.css("borderTopWidth"),10)||0)-(parseInt(o.css("borderBottomWidth"),10)||0)+(parseInt(o.css("marginTop"),10)||0)},this.handles.hasClass("ui-state-hover")||this._slide(e,a,s),this._animateOff=!0,!0))},_mouseStart:function(){return!0},_mouseDrag:function(t){var e={x:t.pageX,y:t.pageY},i=this._normValueFromMouse(e);return this._slide(t,this._handleIndex,i),!1},_mouseStop:function(t){return this._removeClass(this.handles,null,"ui-state-active"),this._mouseSliding=!1,this._stop(t,this._handleIndex),this._change(t,this._handleIndex),this._handleIndex=null,this._clickOffset=null,this._animateOff=!1,!1},_detectOrientation:function(){this.orientation="vertical"===this.options.orientation?"vertical":"horizontal"},_normValueFromMouse:function(t){var e,i,s,n,o;return"horizontal"===this.orientation?(e=this.elementSize.width,i=t.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)):(e=this.elementSize.height,i=t.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)),s=i/e,s>1&&(s=1),0>s&&(s=0),"vertical"===this.orientation&&(s=1-s),n=this._valueMax()-this._valueMin(),o=this._valueMin()+s*n,this._trimAlignValue(o)},_uiHash:function(t,e,i){var s={handle:this.handles[t],handleIndex:t,value:void 0!==e?e:this.value()};return this._hasMultipleValues()&&(s.value=void 0!==e?e:this.values(t),s.values=i||this.values()),s},_hasMultipleValues:function(){return this.options.values&&this.options.values.length},_start:function(t,e){return this._trigger("start",t,this._uiHash(e))},_slide:function(t,e,i){var s,n,o=this.value(),a=this.values();this._hasMultipleValues()&&(n=this.values(e?0:1),o=this.values(e),2===this.options.values.length&&this.options.range===!0&&(i=0===e?Math.min(n,i):Math.max(n,i)),a[e]=i),i!==o&&(s=this._trigger("slide",t,this._uiHash(e,i,a)),s!==!1&&(this._hasMultipleValues()?this.values(e,i):this.value(i)))},_stop:function(t,e){this._trigger("stop",t,this._uiHash(e))},_change:function(t,e){this._keySliding||this._mouseSliding||(this._lastChangedValue=e,this._trigger("change",t,this._uiHash(e)))},value:function(t){return arguments.length?(this.options.value=this._trimAlignValue(t),this._refreshValue(),this._change(null,0),void 0):this._value()},values:function(e,i){var s,n,o;if(arguments.length>1)return this.options.values[e]=this._trimAlignValue(i),this._refreshValue(),this._change(null,e),void 0;if(!arguments.length)return this._values();if(!t.isArray(arguments[0]))return this._hasMultipleValues()?this._values(e):this.value();for(s=this.options.values,n=arguments[0],o=0;s.length>o;o+=1)s[o]=this._trimAlignValue(n[o]),this._change(null,o);this._refreshValue()},_setOption:function(e,i){var s,n=0;switch("range"===e&&this.options.range===!0&&("min"===i?(this.options.value=this._values(0),this.options.values=null):"max"===i&&(this.options.value=this._values(this.options.values.length-1),this.options.values=null)),t.isArray(this.options.values)&&(n=this.options.values.length),this._super(e,i),e){case"orientation":this._detectOrientation(),this._removeClass("ui-slider-horizontal ui-slider-vertical")._addClass("ui-slider-"+this.orientation),this._refreshValue(),this.options.range&&this._refreshRange(i),this.handles.css("horizontal"===i?"bottom":"left","");break;case"value":this._animateOff=!0,this._refreshValue(),this._change(null,0),this._animateOff=!1;break;case"values":for(this._animateOff=!0,this._refreshValue(),s=n-1;s>=0;s--)this._change(null,s);this._animateOff=!1;break;case"step":case"min":case"max":this._animateOff=!0,this._calculateNewMax(),this._refreshValue(),this._animateOff=!1;break;case"range":this._animateOff=!0,this._refresh(),this._animateOff=!1}},_setOptionDisabled:function(t){this._super(t),this._toggleClass(null,"ui-state-disabled",!!t)},_value:function(){var t=this.options.value;return t=this._trimAlignValue(t)},_values:function(t){var e,i,s;if(arguments.length)return e=this.options.values[t],e=this._trimAlignValue(e);if(this._hasMultipleValues()){for(i=this.options.values.slice(),s=0;i.length>s;s+=1)i[s]=this._trimAlignValue(i[s]);return i}return[]},_trimAlignValue:function(t){if(this._valueMin()>=t)return this._valueMin();if(t>=this._valueMax())return this._valueMax();var e=this.options.step>0?this.options.step:1,i=(t-this._valueMin())%e,s=t-i;return 2*Math.abs(i)>=e&&(s+=i>0?e:-e),parseFloat(s.toFixed(5))},_calculateNewMax:function(){var t=this.options.max,e=this._valueMin(),i=this.options.step,s=Math.round((t-e)/i)*i;t=s+e,t>this.options.max&&(t-=i),this.max=parseFloat(t.toFixed(this._precision()))},_precision:function(){var t=this._precisionOf(this.options.step);return null!==this.options.min&&(t=Math.max(t,this._precisionOf(this.options.min))),t},_precisionOf:function(t){var e=""+t,i=e.indexOf(".");return-1===i?0:e.length-i-1},_valueMin:function(){return this.options.min},_valueMax:function(){return this.max},_refreshRange:function(t){"vertical"===t&&this.range.css({width:"",left:""}),"horizontal"===t&&this.range.css({height:"",bottom:""})},_refreshValue:function(){var e,i,s,n,o,a=this.options.range,r=this.options,h=this,l=this._animateOff?!1:r.animate,c={};this._hasMultipleValues()?this.handles.each(function(s){i=100*((h.values(s)-h._valueMin())/(h._valueMax()-h._valueMin())),c["horizontal"===h.orientation?"left":"bottom"]=i+"%",t(this).stop(1,1)[l?"animate":"css"](c,r.animate),h.options.range===!0&&("horizontal"===h.orientation?(0===s&&h.range.stop(1,1)[l?"animate":"css"]({left:i+"%"},r.animate),1===s&&h.range[l?"animate":"css"]({width:i-e+"%"},{queue:!1,duration:r.animate})):(0===s&&h.range.stop(1,1)[l?"animate":"css"]({bottom:i+"%"},r.animate),1===s&&h.range[l?"animate":"css"]({height:i-e+"%"},{queue:!1,duration:r.animate}))),e=i}):(s=this.value(),n=this._valueMin(),o=this._valueMax(),i=o!==n?100*((s-n)/(o-n)):0,c["horizontal"===this.orientation?"left":"bottom"]=i+"%",this.handle.stop(1,1)[l?"animate":"css"](c,r.animate),"min"===a&&"horizontal"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({width:i+"%"},r.animate),"max"===a&&"horizontal"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({width:100-i+"%"},r.animate),"min"===a&&"vertical"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({height:i+"%"},r.animate),"max"===a&&"vertical"===this.orientation&&this.range.stop(1,1)[l?"animate":"css"]({height:100-i+"%"},r.animate))},_handleEvents:{keydown:function(e){var i,s,n,o,a=t(e.target).data("ui-slider-handle-index");switch(e.keyCode){case t.ui.keyCode.HOME:case t.ui.keyCode.END:case t.ui.keyCode.PAGE_UP:case t.ui.keyCode.PAGE_DOWN:case t.ui.keyCode.UP:case t.ui.keyCode.RIGHT:case t.ui.keyCode.DOWN:case t.ui.keyCode.LEFT:if(e.preventDefault(),!this._keySliding&&(this._keySliding=!0,this._addClass(t(e.target),null,"ui-state-active"),i=this._start(e,a),i===!1))return}switch(o=this.options.step,s=n=this._hasMultipleValues()?this.values(a):this.value(),e.keyCode){case t.ui.keyCode.HOME:n=this._valueMin();break;case t.ui.keyCode.END:n=this._valueMax();break;case t.ui.keyCode.PAGE_UP:n=this._trimAlignValue(s+(this._valueMax()-this._valueMin())/this.numPages);break;case t.ui.keyCode.PAGE_DOWN:n=this._trimAlignValue(s-(this._valueMax()-this._valueMin())/this.numPages);break;case t.ui.keyCode.UP:case t.ui.keyCode.RIGHT:if(s===this._valueMax())return;n=this._trimAlignValue(s+o);break;case t.ui.keyCode.DOWN:case t.ui.keyCode.LEFT:if(s===this._valueMin())return;n=this._trimAlignValue(s-o)}this._slide(e,a,n)},keyup:function(e){var i=t(e.target).data("ui-slider-handle-index");this._keySliding&&(this._keySliding=!1,this._stop(e,i),this._change(e,i),this._removeClass(t(e.target),null,"ui-state-active"))}}}),t.widget("ui.sortable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"sort",ready:!1,options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3,activate:null,beforeStop:null,change:null,deactivate:null,out:null,over:null,receive:null,remove:null,sort:null,start:null,stop:null,update:null},_isOverAxis:function(t,e,i){return t>=e&&e+i>t},_isFloating:function(t){return/left|right/.test(t.css("float"))||/inline|table-cell/.test(t.css("display"))},_create:function(){this.containerCache={},this._addClass("ui-sortable"),this.refresh(),this.offset=this.element.offset(),this._mouseInit(),this._setHandleClassName(),this.ready=!0},_setOption:function(t,e){this._super(t,e),"handle"===t&&this._setHandleClassName()},_setHandleClassName:function(){var e=this;this._removeClass(this.element.find(".ui-sortable-handle"),"ui-sortable-handle"),t.each(this.items,function(){e._addClass(this.instance.options.handle?this.item.find(this.instance.options.handle):this.item,"ui-sortable-handle")})},_destroy:function(){this._mouseDestroy();for(var t=this.items.length-1;t>=0;t--)this.items[t].item.removeData(this.widgetName+"-item");return this},_mouseCapture:function(e,i){var s=null,n=!1,o=this;return this.reverting?!1:this.options.disabled||"static"===this.options.type?!1:(this._refreshItems(e),t(e.target).parents().each(function(){return t.data(this,o.widgetName+"-item")===o?(s=t(this),!1):void 0}),t.data(e.target,o.widgetName+"-item")===o&&(s=t(e.target)),s?!this.options.handle||i||(t(this.options.handle,s).find("*").addBack().each(function(){this===e.target&&(n=!0)}),n)?(this.currentItem=s,this._removeCurrentsFromItems(),!0):!1:!1)},_mouseStart:function(e,i,s){var n,o,a=this.options;if(this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(e),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},t.extend(this.offset,{click:{left:e.pageX-this.offset.left,top:e.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),this.originalPosition=this._generatePosition(e),this.originalPageX=e.pageX,this.originalPageY=e.pageY,a.cursorAt&&this._adjustOffsetFromHelper(a.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!==this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),a.containment&&this._setContainment(),a.cursor&&"auto"!==a.cursor&&(o=this.document.find("body"),this.storedCursor=o.css("cursor"),o.css("cursor",a.cursor),this.storedStylesheet=t("<style>*{ cursor: "+a.cursor+" !important; }</style>").appendTo(o)),a.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",a.opacity)),a.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",a.zIndex)),this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",e,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions(),!s)for(n=this.containers.length-1;n>=0;n--)this.containers[n]._trigger("activate",e,this._uiHash(this));return t.ui.ddmanager&&(t.ui.ddmanager.current=this),t.ui.ddmanager&&!a.dropBehaviour&&t.ui.ddmanager.prepareOffsets(this,e),this.dragging=!0,this._addClass(this.helper,"ui-sortable-helper"),this._mouseDrag(e),!0},_mouseDrag:function(e){var i,s,n,o,a=this.options,r=!1;for(this.position=this._generatePosition(e),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs),this.options.scroll&&(this.scrollParent[0]!==this.document[0]&&"HTML"!==this.scrollParent[0].tagName?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-e.pageY<a.scrollSensitivity?this.scrollParent[0].scrollTop=r=this.scrollParent[0].scrollTop+a.scrollSpeed:e.pageY-this.overflowOffset.top<a.scrollSensitivity&&(this.scrollParent[0].scrollTop=r=this.scrollParent[0].scrollTop-a.scrollSpeed),this.overflowOffset.left+this.scrollParent[0].offsetWidth-e.pageX<a.scrollSensitivity?this.scrollParent[0].scrollLeft=r=this.scrollParent[0].scrollLeft+a.scrollSpeed:e.pageX-this.overflowOffset.left<a.scrollSensitivity&&(this.scrollParent[0].scrollLeft=r=this.scrollParent[0].scrollLeft-a.scrollSpeed)):(e.pageY-this.document.scrollTop()<a.scrollSensitivity?r=this.document.scrollTop(this.document.scrollTop()-a.scrollSpeed):this.window.height()-(e.pageY-this.document.scrollTop())<a.scrollSensitivity&&(r=this.document.scrollTop(this.document.scrollTop()+a.scrollSpeed)),e.pageX-this.document.scrollLeft()<a.scrollSensitivity?r=this.document.scrollLeft(this.document.scrollLeft()-a.scrollSpeed):this.window.width()-(e.pageX-this.document.scrollLeft())<a.scrollSensitivity&&(r=this.document.scrollLeft(this.document.scrollLeft()+a.scrollSpeed))),r!==!1&&t.ui.ddmanager&&!a.dropBehaviour&&t.ui.ddmanager.prepareOffsets(this,e)),this.positionAbs=this._convertPositionTo("absolute"),this.options.axis&&"y"===this.options.axis||(this.helper[0].style.left=this.position.left+"px"),this.options.axis&&"x"===this.options.axis||(this.helper[0].style.top=this.position.top+"px"),i=this.items.length-1;i>=0;i--)if(s=this.items[i],n=s.item[0],o=this._intersectsWithPointer(s),o&&s.instance===this.currentContainer&&n!==this.currentItem[0]&&this.placeholder[1===o?"next":"prev"]()[0]!==n&&!t.contains(this.placeholder[0],n)&&("semi-dynamic"===this.options.type?!t.contains(this.element[0],n):!0)){if(this.direction=1===o?"down":"up","pointer"!==this.options.tolerance&&!this._intersectsWithSides(s))break;this._rearrange(e,s),this._trigger("change",e,this._uiHash());break}return this._contactContainers(e),t.ui.ddmanager&&t.ui.ddmanager.drag(this,e),this._trigger("sort",e,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(e,i){if(e){if(t.ui.ddmanager&&!this.options.dropBehaviour&&t.ui.ddmanager.drop(this,e),this.options.revert){var s=this,n=this.placeholder.offset(),o=this.options.axis,a={};o&&"x"!==o||(a.left=n.left-this.offset.parent.left-this.margins.left+(this.offsetParent[0]===this.document[0].body?0:this.offsetParent[0].scrollLeft)),o&&"y"!==o||(a.top=n.top-this.offset.parent.top-this.margins.top+(this.offsetParent[0]===this.document[0].body?0:this.offsetParent[0].scrollTop)),this.reverting=!0,t(this.helper).animate(a,parseInt(this.options.revert,10)||500,function(){s._clear(e)})}else this._clear(e,i);return!1}},cancel:function(){if(this.dragging){this._mouseUp(new t.Event("mouseup",{target:null})),"original"===this.options.helper?(this.currentItem.css(this._storedCSS),this._removeClass(this.currentItem,"ui-sortable-helper")):this.currentItem.show();for(var e=this.containers.length-1;e>=0;e--)this.containers[e]._trigger("deactivate",null,this._uiHash(this)),this.containers[e].containerCache.over&&(this.containers[e]._trigger("out",null,this._uiHash(this)),this.containers[e].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),"original"!==this.options.helper&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),t.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?t(this.domPosition.prev).after(this.currentItem):t(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(e){var i=this._getItemsAsjQuery(e&&e.connected),s=[];return e=e||{},t(i).each(function(){var i=(t(e.item||this).attr(e.attribute||"id")||"").match(e.expression||/(.+)[\-=_](.+)/);i&&s.push((e.key||i[1]+"[]")+"="+(e.key&&e.expression?i[1]:i[2]))}),!s.length&&e.key&&s.push(e.key+"="),s.join("&")},toArray:function(e){var i=this._getItemsAsjQuery(e&&e.connected),s=[];return e=e||{},i.each(function(){s.push(t(e.item||this).attr(e.attribute||"id")||"")}),s},_intersectsWith:function(t){var e=this.positionAbs.left,i=e+this.helperProportions.width,s=this.positionAbs.top,n=s+this.helperProportions.height,o=t.left,a=o+t.width,r=t.top,h=r+t.height,l=this.offset.click.top,c=this.offset.click.left,u="x"===this.options.axis||s+l>r&&h>s+l,d="y"===this.options.axis||e+c>o&&a>e+c,p=u&&d;return"pointer"===this.options.tolerance||this.options.forcePointerForContainers||"pointer"!==this.options.tolerance&&this.helperProportions[this.floating?"width":"height"]>t[this.floating?"width":"height"]?p:e+this.helperProportions.width/2>o&&a>i-this.helperProportions.width/2&&s+this.helperProportions.height/2>r&&h>n-this.helperProportions.height/2},_intersectsWithPointer:function(t){var e,i,s="x"===this.options.axis||this._isOverAxis(this.positionAbs.top+this.offset.click.top,t.top,t.height),n="y"===this.options.axis||this._isOverAxis(this.positionAbs.left+this.offset.click.left,t.left,t.width),o=s&&n;return o?(e=this._getDragVerticalDirection(),i=this._getDragHorizontalDirection(),this.floating?"right"===i||"down"===e?2:1:e&&("down"===e?2:1)):!1},_intersectsWithSides:function(t){var e=this._isOverAxis(this.positionAbs.top+this.offset.click.top,t.top+t.height/2,t.height),i=this._isOverAxis(this.positionAbs.left+this.offset.click.left,t.left+t.width/2,t.width),s=this._getDragVerticalDirection(),n=this._getDragHorizontalDirection();return this.floating&&n?"right"===n&&i||"left"===n&&!i:s&&("down"===s&&e||"up"===s&&!e)},_getDragVerticalDirection:function(){var t=this.positionAbs.top-this.lastPositionAbs.top;return 0!==t&&(t>0?"down":"up")},_getDragHorizontalDirection:function(){var t=this.positionAbs.left-this.lastPositionAbs.left;return 0!==t&&(t>0?"right":"left")},refresh:function(t){return this._refreshItems(t),this._setHandleClassName(),this.refreshPositions(),this},_connectWith:function(){var t=this.options;return t.connectWith.constructor===String?[t.connectWith]:t.connectWith},_getItemsAsjQuery:function(e){function i(){r.push(this)}var s,n,o,a,r=[],h=[],l=this._connectWith();if(l&&e)for(s=l.length-1;s>=0;s--)for(o=t(l[s],this.document[0]),n=o.length-1;n>=0;n--)a=t.data(o[n],this.widgetFullName),a&&a!==this&&!a.options.disabled&&h.push([t.isFunction(a.options.items)?a.options.items.call(a.element):t(a.options.items,a.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),a]);for(h.push([t.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):t(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]),s=h.length-1;s>=0;s--)h[s][0].each(i);return t(r)},_removeCurrentsFromItems:function(){var e=this.currentItem.find(":data("+this.widgetName+"-item)");this.items=t.grep(this.items,function(t){for(var i=0;e.length>i;i++)if(e[i]===t.item[0])return!1;return!0})},_refreshItems:function(e){this.items=[],this.containers=[this];var i,s,n,o,a,r,h,l,c=this.items,u=[[t.isFunction(this.options.items)?this.options.items.call(this.element[0],e,{item:this.currentItem}):t(this.options.items,this.element),this]],d=this._connectWith();if(d&&this.ready)for(i=d.length-1;i>=0;i--)for(n=t(d[i],this.document[0]),s=n.length-1;s>=0;s--)o=t.data(n[s],this.widgetFullName),o&&o!==this&&!o.options.disabled&&(u.push([t.isFunction(o.options.items)?o.options.items.call(o.element[0],e,{item:this.currentItem}):t(o.options.items,o.element),o]),this.containers.push(o));for(i=u.length-1;i>=0;i--)for(a=u[i][1],r=u[i][0],s=0,l=r.length;l>s;s++)h=t(r[s]),h.data(this.widgetName+"-item",a),c.push({item:h,instance:a,width:0,height:0,left:0,top:0})},refreshPositions:function(e){this.floating=this.items.length?"x"===this.options.axis||this._isFloating(this.items[0].item):!1,this.offsetParent&&this.helper&&(this.offset.parent=this._getParentOffset());var i,s,n,o;for(i=this.items.length-1;i>=0;i--)s=this.items[i],s.instance!==this.currentContainer&&this.currentContainer&&s.item[0]!==this.currentItem[0]||(n=this.options.toleranceElement?t(this.options.toleranceElement,s.item):s.item,e||(s.width=n.outerWidth(),s.height=n.outerHeight()),o=n.offset(),s.left=o.left,s.top=o.top);if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(i=this.containers.length-1;i>=0;i--)o=this.containers[i].element.offset(),this.containers[i].containerCache.left=o.left,this.containers[i].containerCache.top=o.top,this.containers[i].containerCache.width=this.containers[i].element.outerWidth(),this.containers[i].containerCache.height=this.containers[i].element.outerHeight();return this},_createPlaceholder:function(e){e=e||this;var i,s=e.options;s.placeholder&&s.placeholder.constructor!==String||(i=s.placeholder,s.placeholder={element:function(){var s=e.currentItem[0].nodeName.toLowerCase(),n=t("<"+s+">",e.document[0]);return e._addClass(n,"ui-sortable-placeholder",i||e.currentItem[0].className)._removeClass(n,"ui-sortable-helper"),"tbody"===s?e._createTrPlaceholder(e.currentItem.find("tr").eq(0),t("<tr>",e.document[0]).appendTo(n)):"tr"===s?e._createTrPlaceholder(e.currentItem,n):"img"===s&&n.attr("src",e.currentItem.attr("src")),i||n.css("visibility","hidden"),n},update:function(t,n){(!i||s.forcePlaceholderSize)&&(n.height()||n.height(e.currentItem.innerHeight()-parseInt(e.currentItem.css("paddingTop")||0,10)-parseInt(e.currentItem.css("paddingBottom")||0,10)),n.width()||n.width(e.currentItem.innerWidth()-parseInt(e.currentItem.css("paddingLeft")||0,10)-parseInt(e.currentItem.css("paddingRight")||0,10)))}}),e.placeholder=t(s.placeholder.element.call(e.element,e.currentItem)),e.currentItem.after(e.placeholder),s.placeholder.update(e,e.placeholder)},_createTrPlaceholder:function(e,i){var s=this;e.children().each(function(){t("<td>&#160;</td>",s.document[0]).attr("colspan",t(this).attr("colspan")||1).appendTo(i)})},_contactContainers:function(e){var i,s,n,o,a,r,h,l,c,u,d=null,p=null;for(i=this.containers.length-1;i>=0;i--)if(!t.contains(this.currentItem[0],this.containers[i].element[0]))if(this._intersectsWith(this.containers[i].containerCache)){if(d&&t.contains(this.containers[i].element[0],d.element[0]))continue;d=this.containers[i],p=i}else this.containers[i].containerCache.over&&(this.containers[i]._trigger("out",e,this._uiHash(this)),this.containers[i].containerCache.over=0);if(d)if(1===this.containers.length)this.containers[p].containerCache.over||(this.containers[p]._trigger("over",e,this._uiHash(this)),this.containers[p].containerCache.over=1);else{for(n=1e4,o=null,c=d.floating||this._isFloating(this.currentItem),a=c?"left":"top",r=c?"width":"height",u=c?"pageX":"pageY",s=this.items.length-1;s>=0;s--)t.contains(this.containers[p].element[0],this.items[s].item[0])&&this.items[s].item[0]!==this.currentItem[0]&&(h=this.items[s].item.offset()[a],l=!1,e[u]-h>this.items[s][r]/2&&(l=!0),n>Math.abs(e[u]-h)&&(n=Math.abs(e[u]-h),o=this.items[s],this.direction=l?"up":"down"));if(!o&&!this.options.dropOnEmpty)return;if(this.currentContainer===this.containers[p])return this.currentContainer.containerCache.over||(this.containers[p]._trigger("over",e,this._uiHash()),this.currentContainer.containerCache.over=1),void 0;o?this._rearrange(e,o,null,!0):this._rearrange(e,null,this.containers[p].element,!0),this._trigger("change",e,this._uiHash()),this.containers[p]._trigger("change",e,this._uiHash(this)),this.currentContainer=this.containers[p],this.options.placeholder.update(this.currentContainer,this.placeholder),this.containers[p]._trigger("over",e,this._uiHash(this)),this.containers[p].containerCache.over=1}},_createHelper:function(e){var i=this.options,s=t.isFunction(i.helper)?t(i.helper.apply(this.element[0],[e,this.currentItem])):"clone"===i.helper?this.currentItem.clone():this.currentItem;return s.parents("body").length||t("parent"!==i.appendTo?i.appendTo:this.currentItem[0].parentNode)[0].appendChild(s[0]),s[0]===this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),(!s[0].style.width||i.forceHelperSize)&&s.width(this.currentItem.width()),(!s[0].style.height||i.forceHelperSize)&&s.height(this.currentItem.height()),s},_adjustOffsetFromHelper:function(e){"string"==typeof e&&(e=e.split(" ")),t.isArray(e)&&(e={left:+e[0],top:+e[1]||0}),"left"in e&&(this.offset.click.left=e.left+this.margins.left),"right"in e&&(this.offset.click.left=this.helperProportions.width-e.right+this.margins.left),"top"in e&&(this.offset.click.top=e.top+this.margins.top),"bottom"in e&&(this.offset.click.top=this.helperProportions.height-e.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var e=this.offsetParent.offset();return"absolute"===this.cssPosition&&this.scrollParent[0]!==this.document[0]&&t.contains(this.scrollParent[0],this.offsetParent[0])&&(e.left+=this.scrollParent.scrollLeft(),e.top+=this.scrollParent.scrollTop()),(this.offsetParent[0]===this.document[0].body||this.offsetParent[0].tagName&&"html"===this.offsetParent[0].tagName.toLowerCase()&&t.ui.ie)&&(e={top:0,left:0}),{top:e.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:e.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"===this.cssPosition){var t=this.currentItem.position();return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:t.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var e,i,s,n=this.options;"parent"===n.containment&&(n.containment=this.helper[0].parentNode),("document"===n.containment||"window"===n.containment)&&(this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,"document"===n.containment?this.document.width():this.window.width()-this.helperProportions.width-this.margins.left,("document"===n.containment?this.document.height()||document.body.parentNode.scrollHeight:this.window.height()||this.document[0].body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]),/^(document|window|parent)$/.test(n.containment)||(e=t(n.containment)[0],i=t(n.containment).offset(),s="hidden"!==t(e).css("overflow"),this.containment=[i.left+(parseInt(t(e).css("borderLeftWidth"),10)||0)+(parseInt(t(e).css("paddingLeft"),10)||0)-this.margins.left,i.top+(parseInt(t(e).css("borderTopWidth"),10)||0)+(parseInt(t(e).css("paddingTop"),10)||0)-this.margins.top,i.left+(s?Math.max(e.scrollWidth,e.offsetWidth):e.offsetWidth)-(parseInt(t(e).css("borderLeftWidth"),10)||0)-(parseInt(t(e).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,i.top+(s?Math.max(e.scrollHeight,e.offsetHeight):e.offsetHeight)-(parseInt(t(e).css("borderTopWidth"),10)||0)-(parseInt(t(e).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top])},_convertPositionTo:function(e,i){i||(i=this.position);var s="absolute"===e?1:-1,n="absolute"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&t.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,o=/(html|body)/i.test(n[0].tagName);return{top:i.top+this.offset.relative.top*s+this.offset.parent.top*s-("fixed"===this.cssPosition?-this.scrollParent.scrollTop():o?0:n.scrollTop())*s,left:i.left+this.offset.relative.left*s+this.offset.parent.left*s-("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():o?0:n.scrollLeft())*s}},_generatePosition:function(e){var i,s,n=this.options,o=e.pageX,a=e.pageY,r="absolute"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&t.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,h=/(html|body)/i.test(r[0].tagName);return"relative"!==this.cssPosition||this.scrollParent[0]!==this.document[0]&&this.scrollParent[0]!==this.offsetParent[0]||(this.offset.relative=this._getRelativeOffset()),this.originalPosition&&(this.containment&&(e.pageX-this.offset.click.left<this.containment[0]&&(o=this.containment[0]+this.offset.click.left),e.pageY-this.offset.click.top<this.containment[1]&&(a=this.containment[1]+this.offset.click.top),e.pageX-this.offset.click.left>this.containment[2]&&(o=this.containment[2]+this.offset.click.left),e.pageY-this.offset.click.top>this.containment[3]&&(a=this.containment[3]+this.offset.click.top)),n.grid&&(i=this.originalPageY+Math.round((a-this.originalPageY)/n.grid[1])*n.grid[1],a=this.containment?i-this.offset.click.top>=this.containment[1]&&i-this.offset.click.top<=this.containment[3]?i:i-this.offset.click.top>=this.containment[1]?i-n.grid[1]:i+n.grid[1]:i,s=this.originalPageX+Math.round((o-this.originalPageX)/n.grid[0])*n.grid[0],o=this.containment?s-this.offset.click.left>=this.containment[0]&&s-this.offset.click.left<=this.containment[2]?s:s-this.offset.click.left>=this.containment[0]?s-n.grid[0]:s+n.grid[0]:s)),{top:a-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.scrollParent.scrollTop():h?0:r.scrollTop()),left:o-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():h?0:r.scrollLeft())}},_rearrange:function(t,e,i,s){i?i[0].appendChild(this.placeholder[0]):e.item[0].parentNode.insertBefore(this.placeholder[0],"down"===this.direction?e.item[0]:e.item[0].nextSibling),this.counter=this.counter?++this.counter:1;var n=this.counter;
     this._delay(function(){n===this.counter&&this.refreshPositions(!s)})},_clear:function(t,e){function i(t,e,i){return function(s){i._trigger(t,s,e._uiHash(e))}}this.reverting=!1;var s,n=[];if(!this._noFinalSort&&this.currentItem.parent().length&&this.placeholder.before(this.currentItem),this._noFinalSort=null,this.helper[0]===this.currentItem[0]){for(s in this._storedCSS)("auto"===this._storedCSS[s]||"static"===this._storedCSS[s])&&(this._storedCSS[s]="");this.currentItem.css(this._storedCSS),this._removeClass(this.currentItem,"ui-sortable-helper")}else this.currentItem.show();for(this.fromOutside&&!e&&n.push(function(t){this._trigger("receive",t,this._uiHash(this.fromOutside))}),!this.fromOutside&&this.domPosition.prev===this.currentItem.prev().not(".ui-sortable-helper")[0]&&this.domPosition.parent===this.currentItem.parent()[0]||e||n.push(function(t){this._trigger("update",t,this._uiHash())}),this!==this.currentContainer&&(e||(n.push(function(t){this._trigger("remove",t,this._uiHash())}),n.push(function(t){return function(e){t._trigger("receive",e,this._uiHash(this))}}.call(this,this.currentContainer)),n.push(function(t){return function(e){t._trigger("update",e,this._uiHash(this))}}.call(this,this.currentContainer)))),s=this.containers.length-1;s>=0;s--)e||n.push(i("deactivate",this,this.containers[s])),this.containers[s].containerCache.over&&(n.push(i("out",this,this.containers[s])),this.containers[s].containerCache.over=0);if(this.storedCursor&&(this.document.find("body").css("cursor",this.storedCursor),this.storedStylesheet.remove()),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex","auto"===this._storedZIndex?"":this._storedZIndex),this.dragging=!1,e||this._trigger("beforeStop",t,this._uiHash()),this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.cancelHelperRemoval||(this.helper[0]!==this.currentItem[0]&&this.helper.remove(),this.helper=null),!e){for(s=0;n.length>s;s++)n[s].call(this,t);this._trigger("stop",t,this._uiHash())}return this.fromOutside=!1,!this.cancelHelperRemoval},_trigger:function(){t.Widget.prototype._trigger.apply(this,arguments)===!1&&this.cancel()},_uiHash:function(e){var i=e||this;return{helper:i.helper,placeholder:i.placeholder||t([]),position:i.position,originalPosition:i.originalPosition,offset:i.positionAbs,item:i.currentItem,sender:e?e.element:null}}}),t.widget("ui.spinner",{version:"1.12.1",defaultElement:"<input>",widgetEventPrefix:"spin",options:{classes:{"ui-spinner":"ui-corner-all","ui-spinner-down":"ui-corner-br","ui-spinner-up":"ui-corner-tr"},culture:null,icons:{down:"ui-icon-triangle-1-s",up:"ui-icon-triangle-1-n"},incremental:!0,max:null,min:null,numberFormat:null,page:10,step:1,change:null,spin:null,start:null,stop:null},_create:function(){this._setOption("max",this.options.max),this._setOption("min",this.options.min),this._setOption("step",this.options.step),""!==this.value()&&this._value(this.element.val(),!0),this._draw(),this._on(this._events),this._refresh(),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_getCreateOptions:function(){var e=this._super(),i=this.element;return t.each(["min","max","step"],function(t,s){var n=i.attr(s);null!=n&&n.length&&(e[s]=n)}),e},_events:{keydown:function(t){this._start(t)&&this._keydown(t)&&t.preventDefault()},keyup:"_stop",focus:function(){this.previous=this.element.val()},blur:function(t){return this.cancelBlur?(delete this.cancelBlur,void 0):(this._stop(),this._refresh(),this.previous!==this.element.val()&&this._trigger("change",t),void 0)},mousewheel:function(t,e){if(e){if(!this.spinning&&!this._start(t))return!1;this._spin((e>0?1:-1)*this.options.step,t),clearTimeout(this.mousewheelTimer),this.mousewheelTimer=this._delay(function(){this.spinning&&this._stop(t)},100),t.preventDefault()}},"mousedown .ui-spinner-button":function(e){function i(){var e=this.element[0]===t.ui.safeActiveElement(this.document[0]);e||(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s}))}var s;s=this.element[0]===t.ui.safeActiveElement(this.document[0])?this.previous:this.element.val(),e.preventDefault(),i.call(this),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,i.call(this)}),this._start(e)!==!1&&this._repeat(null,t(e.currentTarget).hasClass("ui-spinner-up")?1:-1,e)},"mouseup .ui-spinner-button":"_stop","mouseenter .ui-spinner-button":function(e){return t(e.currentTarget).hasClass("ui-state-active")?this._start(e)===!1?!1:(this._repeat(null,t(e.currentTarget).hasClass("ui-spinner-up")?1:-1,e),void 0):void 0},"mouseleave .ui-spinner-button":"_stop"},_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap("<span>").parent().append("<a></a><a></a>")},_draw:function(){this._enhance(),this._addClass(this.uiSpinner,"ui-spinner","ui-widget ui-widget-content"),this._addClass("ui-spinner-input"),this.element.attr("role","spinbutton"),this.buttons=this.uiSpinner.children("a").attr("tabIndex",-1).attr("aria-hidden",!0).button({classes:{"ui-button":""}}),this._removeClass(this.buttons,"ui-corner-all"),this._addClass(this.buttons.first(),"ui-spinner-button ui-spinner-up"),this._addClass(this.buttons.last(),"ui-spinner-button ui-spinner-down"),this.buttons.first().button({icon:this.options.icons.up,showLabel:!1}),this.buttons.last().button({icon:this.options.icons.down,showLabel:!1}),this.buttons.height()>Math.ceil(.5*this.uiSpinner.height())&&this.uiSpinner.height()>0&&this.uiSpinner.height(this.uiSpinner.height())},_keydown:function(e){var i=this.options,s=t.ui.keyCode;switch(e.keyCode){case s.UP:return this._repeat(null,1,e),!0;case s.DOWN:return this._repeat(null,-1,e),!0;case s.PAGE_UP:return this._repeat(null,i.page,e),!0;case s.PAGE_DOWN:return this._repeat(null,-i.page,e),!0}return!1},_start:function(t){return this.spinning||this._trigger("start",t)!==!1?(this.counter||(this.counter=1),this.spinning=!0,!0):!1},_repeat:function(t,e,i){t=t||500,clearTimeout(this.timer),this.timer=this._delay(function(){this._repeat(40,e,i)},t),this._spin(e*this.options.step,i)},_spin:function(t,e){var i=this.value()||0;this.counter||(this.counter=1),i=this._adjustValue(i+t*this._increment(this.counter)),this.spinning&&this._trigger("spin",e,{value:i})===!1||(this._value(i),this.counter++)},_increment:function(e){var i=this.options.incremental;return i?t.isFunction(i)?i(e):Math.floor(e*e*e/5e4-e*e/500+17*e/200+1):1},_precision:function(){var t=this._precisionOf(this.options.step);return null!==this.options.min&&(t=Math.max(t,this._precisionOf(this.options.min))),t},_precisionOf:function(t){var e=""+t,i=e.indexOf(".");return-1===i?0:e.length-i-1},_adjustValue:function(t){var e,i,s=this.options;return e=null!==s.min?s.min:0,i=t-e,i=Math.round(i/s.step)*s.step,t=e+i,t=parseFloat(t.toFixed(this._precision())),null!==s.max&&t>s.max?s.max:null!==s.min&&s.min>t?s.min:t},_stop:function(t){this.spinning&&(clearTimeout(this.timer),clearTimeout(this.mousewheelTimer),this.counter=0,this.spinning=!1,this._trigger("stop",t))},_setOption:function(t,e){var i,s,n;return"culture"===t||"numberFormat"===t?(i=this._parse(this.element.val()),this.options[t]=e,this.element.val(this._format(i)),void 0):(("max"===t||"min"===t||"step"===t)&&"string"==typeof e&&(e=this._parse(e)),"icons"===t&&(s=this.buttons.first().find(".ui-icon"),this._removeClass(s,null,this.options.icons.up),this._addClass(s,null,e.up),n=this.buttons.last().find(".ui-icon"),this._removeClass(n,null,this.options.icons.down),this._addClass(n,null,e.down)),this._super(t,e),void 0)},_setOptionDisabled:function(t){this._super(t),this._toggleClass(this.uiSpinner,null,"ui-state-disabled",!!t),this.element.prop("disabled",!!t),this.buttons.button(t?"disable":"enable")},_setOptions:r(function(t){this._super(t)}),_parse:function(t){return"string"==typeof t&&""!==t&&(t=window.Globalize&&this.options.numberFormat?Globalize.parseFloat(t,10,this.options.culture):+t),""===t||isNaN(t)?null:t},_format:function(t){return""===t?"":window.Globalize&&this.options.numberFormat?Globalize.format(t,this.options.numberFormat,this.options.culture):t},_refresh:function(){this.element.attr({"aria-valuemin":this.options.min,"aria-valuemax":this.options.max,"aria-valuenow":this._parse(this.element.val())})},isValid:function(){var t=this.value();return null===t?!1:t===this._adjustValue(t)},_value:function(t,e){var i;""!==t&&(i=this._parse(t),null!==i&&(e||(i=this._adjustValue(i)),t=this._format(i))),this.element.val(t),this._refresh()},_destroy:function(){this.element.prop("disabled",!1).removeAttr("autocomplete role aria-valuemin aria-valuemax aria-valuenow"),this.uiSpinner.replaceWith(this.element)},stepUp:r(function(t){this._stepUp(t)}),_stepUp:function(t){this._start()&&(this._spin((t||1)*this.options.step),this._stop())},stepDown:r(function(t){this._stepDown(t)}),_stepDown:function(t){this._start()&&(this._spin((t||1)*-this.options.step),this._stop())},pageUp:r(function(t){this._stepUp((t||1)*this.options.page)}),pageDown:r(function(t){this._stepDown((t||1)*this.options.page)}),value:function(t){return arguments.length?(r(this._value).call(this,t),void 0):this._parse(this.element.val())},widget:function(){return this.uiSpinner}}),t.uiBackCompat!==!1&&t.widget("ui.spinner",t.ui.spinner,{_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap(this._uiSpinnerHtml()).parent().append(this._buttonHtml())},_uiSpinnerHtml:function(){return"<span>"},_buttonHtml:function(){return"<a></a><a></a>"}}),t.ui.spinner,t.widget("ui.tabs",{version:"1.12.1",delay:300,options:{active:null,classes:{"ui-tabs":"ui-corner-all","ui-tabs-nav":"ui-corner-all","ui-tabs-panel":"ui-corner-bottom","ui-tabs-tab":"ui-corner-top"},collapsible:!1,event:"click",heightStyle:"content",hide:null,show:null,activate:null,beforeActivate:null,beforeLoad:null,load:null},_isLocal:function(){var t=/#.*$/;return function(e){var i,s;i=e.href.replace(t,""),s=location.href.replace(t,"");try{i=decodeURIComponent(i)}catch(n){}try{s=decodeURIComponent(s)}catch(n){}return e.hash.length>1&&i===s}}(),_create:function(){var e=this,i=this.options;this.running=!1,this._addClass("ui-tabs","ui-widget ui-widget-content"),this._toggleClass("ui-tabs-collapsible",null,i.collapsible),this._processTabs(),i.active=this._initialActive(),t.isArray(i.disabled)&&(i.disabled=t.unique(i.disabled.concat(t.map(this.tabs.filter(".ui-state-disabled"),function(t){return e.tabs.index(t)}))).sort()),this.active=this.options.active!==!1&&this.anchors.length?this._findActive(i.active):t(),this._refresh(),this.active.length&&this.load(i.active)},_initialActive:function(){var e=this.options.active,i=this.options.collapsible,s=location.hash.substring(1);return null===e&&(s&&this.tabs.each(function(i,n){return t(n).attr("aria-controls")===s?(e=i,!1):void 0}),null===e&&(e=this.tabs.index(this.tabs.filter(".ui-tabs-active"))),(null===e||-1===e)&&(e=this.tabs.length?0:!1)),e!==!1&&(e=this.tabs.index(this.tabs.eq(e)),-1===e&&(e=i?!1:0)),!i&&e===!1&&this.anchors.length&&(e=0),e},_getCreateEventData:function(){return{tab:this.active,panel:this.active.length?this._getPanelForTab(this.active):t()}},_tabKeydown:function(e){var i=t(t.ui.safeActiveElement(this.document[0])).closest("li"),s=this.tabs.index(i),n=!0;if(!this._handlePageNav(e)){switch(e.keyCode){case t.ui.keyCode.RIGHT:case t.ui.keyCode.DOWN:s++;break;case t.ui.keyCode.UP:case t.ui.keyCode.LEFT:n=!1,s--;break;case t.ui.keyCode.END:s=this.anchors.length-1;break;case t.ui.keyCode.HOME:s=0;break;case t.ui.keyCode.SPACE:return e.preventDefault(),clearTimeout(this.activating),this._activate(s),void 0;case t.ui.keyCode.ENTER:return e.preventDefault(),clearTimeout(this.activating),this._activate(s===this.options.active?!1:s),void 0;default:return}e.preventDefault(),clearTimeout(this.activating),s=this._focusNextTab(s,n),e.ctrlKey||e.metaKey||(i.attr("aria-selected","false"),this.tabs.eq(s).attr("aria-selected","true"),this.activating=this._delay(function(){this.option("active",s)},this.delay))}},_panelKeydown:function(e){this._handlePageNav(e)||e.ctrlKey&&e.keyCode===t.ui.keyCode.UP&&(e.preventDefault(),this.active.trigger("focus"))},_handlePageNav:function(e){return e.altKey&&e.keyCode===t.ui.keyCode.PAGE_UP?(this._activate(this._focusNextTab(this.options.active-1,!1)),!0):e.altKey&&e.keyCode===t.ui.keyCode.PAGE_DOWN?(this._activate(this._focusNextTab(this.options.active+1,!0)),!0):void 0},_findNextTab:function(e,i){function s(){return e>n&&(e=0),0>e&&(e=n),e}for(var n=this.tabs.length-1;-1!==t.inArray(s(),this.options.disabled);)e=i?e+1:e-1;return e},_focusNextTab:function(t,e){return t=this._findNextTab(t,e),this.tabs.eq(t).trigger("focus"),t},_setOption:function(t,e){return"active"===t?(this._activate(e),void 0):(this._super(t,e),"collapsible"===t&&(this._toggleClass("ui-tabs-collapsible",null,e),e||this.options.active!==!1||this._activate(0)),"event"===t&&this._setupEvents(e),"heightStyle"===t&&this._setupHeightStyle(e),void 0)},_sanitizeSelector:function(t){return t?t.replace(/[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g,"\\$&"):""},refresh:function(){var e=this.options,i=this.tablist.children(":has(a[href])");e.disabled=t.map(i.filter(".ui-state-disabled"),function(t){return i.index(t)}),this._processTabs(),e.active!==!1&&this.anchors.length?this.active.length&&!t.contains(this.tablist[0],this.active[0])?this.tabs.length===e.disabled.length?(e.active=!1,this.active=t()):this._activate(this._findNextTab(Math.max(0,e.active-1),!1)):e.active=this.tabs.index(this.active):(e.active=!1,this.active=t()),this._refresh()},_refresh:function(){this._setOptionDisabled(this.options.disabled),this._setupEvents(this.options.event),this._setupHeightStyle(this.options.heightStyle),this.tabs.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}),this.panels.not(this._getPanelForTab(this.active)).hide().attr({"aria-hidden":"true"}),this.active.length?(this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}),this._addClass(this.active,"ui-tabs-active","ui-state-active"),this._getPanelForTab(this.active).show().attr({"aria-hidden":"false"})):this.tabs.eq(0).attr("tabIndex",0)},_processTabs:function(){var e=this,i=this.tabs,s=this.anchors,n=this.panels;this.tablist=this._getList().attr("role","tablist"),this._addClass(this.tablist,"ui-tabs-nav","ui-helper-reset ui-helper-clearfix ui-widget-header"),this.tablist.on("mousedown"+this.eventNamespace,"> li",function(e){t(this).is(".ui-state-disabled")&&e.preventDefault()}).on("focus"+this.eventNamespace,".ui-tabs-anchor",function(){t(this).closest("li").is(".ui-state-disabled")&&this.blur()}),this.tabs=this.tablist.find("> li:has(a[href])").attr({role:"tab",tabIndex:-1}),this._addClass(this.tabs,"ui-tabs-tab","ui-state-default"),this.anchors=this.tabs.map(function(){return t("a",this)[0]}).attr({role:"presentation",tabIndex:-1}),this._addClass(this.anchors,"ui-tabs-anchor"),this.panels=t(),this.anchors.each(function(i,s){var n,o,a,r=t(s).uniqueId().attr("id"),h=t(s).closest("li"),l=h.attr("aria-controls");e._isLocal(s)?(n=s.hash,a=n.substring(1),o=e.element.find(e._sanitizeSelector(n))):(a=h.attr("aria-controls")||t({}).uniqueId()[0].id,n="#"+a,o=e.element.find(n),o.length||(o=e._createPanel(a),o.insertAfter(e.panels[i-1]||e.tablist)),o.attr("aria-live","polite")),o.length&&(e.panels=e.panels.add(o)),l&&h.data("ui-tabs-aria-controls",l),h.attr({"aria-controls":a,"aria-labelledby":r}),o.attr("aria-labelledby",r)}),this.panels.attr("role","tabpanel"),this._addClass(this.panels,"ui-tabs-panel","ui-widget-content"),i&&(this._off(i.not(this.tabs)),this._off(s.not(this.anchors)),this._off(n.not(this.panels)))},_getList:function(){return this.tablist||this.element.find("ol, ul").eq(0)},_createPanel:function(e){return t("<div>").attr("id",e).data("ui-tabs-destroy",!0)},_setOptionDisabled:function(e){var i,s,n;for(t.isArray(e)&&(e.length?e.length===this.anchors.length&&(e=!0):e=!1),n=0;s=this.tabs[n];n++)i=t(s),e===!0||-1!==t.inArray(n,e)?(i.attr("aria-disabled","true"),this._addClass(i,null,"ui-state-disabled")):(i.removeAttr("aria-disabled"),this._removeClass(i,null,"ui-state-disabled"));this.options.disabled=e,this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,e===!0)},_setupEvents:function(e){var i={};e&&t.each(e.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.anchors.add(this.tabs).add(this.panels)),this._on(!0,this.anchors,{click:function(t){t.preventDefault()}}),this._on(this.anchors,i),this._on(this.tabs,{keydown:"_tabKeydown"}),this._on(this.panels,{keydown:"_panelKeydown"}),this._focusable(this.tabs),this._hoverable(this.tabs)},_setupHeightStyle:function(e){var i,s=this.element.parent();"fill"===e?(i=s.height(),i-=this.element.outerHeight()-this.element.height(),this.element.siblings(":visible").each(function(){var e=t(this),s=e.css("position");"absolute"!==s&&"fixed"!==s&&(i-=e.outerHeight(!0))}),this.element.children().not(this.panels).each(function(){i-=t(this).outerHeight(!0)}),this.panels.each(function(){t(this).height(Math.max(0,i-t(this).innerHeight()+t(this).height()))}).css("overflow","auto")):"auto"===e&&(i=0,this.panels.each(function(){i=Math.max(i,t(this).height("").height())}).height(i))},_eventHandler:function(e){var i=this.options,s=this.active,n=t(e.currentTarget),o=n.closest("li"),a=o[0]===s[0],r=a&&i.collapsible,h=r?t():this._getPanelForTab(o),l=s.length?this._getPanelForTab(s):t(),c={oldTab:s,oldPanel:l,newTab:r?t():o,newPanel:h};e.preventDefault(),o.hasClass("ui-state-disabled")||o.hasClass("ui-tabs-loading")||this.running||a&&!i.collapsible||this._trigger("beforeActivate",e,c)===!1||(i.active=r?!1:this.tabs.index(o),this.active=a?t():o,this.xhr&&this.xhr.abort(),l.length||h.length||t.error("jQuery UI Tabs: Mismatching fragment identifier."),h.length&&this.load(this.tabs.index(o),e),this._toggle(e,c))},_toggle:function(e,i){function s(){o.running=!1,o._trigger("activate",e,i)}function n(){o._addClass(i.newTab.closest("li"),"ui-tabs-active","ui-state-active"),a.length&&o.options.show?o._show(a,o.options.show,s):(a.show(),s())}var o=this,a=i.newPanel,r=i.oldPanel;this.running=!0,r.length&&this.options.hide?this._hide(r,this.options.hide,function(){o._removeClass(i.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),n()}):(this._removeClass(i.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),r.hide(),n()),r.attr("aria-hidden","true"),i.oldTab.attr({"aria-selected":"false","aria-expanded":"false"}),a.length&&r.length?i.oldTab.attr("tabIndex",-1):a.length&&this.tabs.filter(function(){return 0===t(this).attr("tabIndex")}).attr("tabIndex",-1),a.attr("aria-hidden","false"),i.newTab.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_activate:function(e){var i,s=this._findActive(e);s[0]!==this.active[0]&&(s.length||(s=this.active),i=s.find(".ui-tabs-anchor")[0],this._eventHandler({target:i,currentTarget:i,preventDefault:t.noop}))},_findActive:function(e){return e===!1?t():this.tabs.eq(e)},_getIndex:function(e){return"string"==typeof e&&(e=this.anchors.index(this.anchors.filter("[href$='"+t.ui.escapeSelector(e)+"']"))),e},_destroy:function(){this.xhr&&this.xhr.abort(),this.tablist.removeAttr("role").off(this.eventNamespace),this.anchors.removeAttr("role tabIndex").removeUniqueId(),this.tabs.add(this.panels).each(function(){t.data(this,"ui-tabs-destroy")?t(this).remove():t(this).removeAttr("role tabIndex aria-live aria-busy aria-selected aria-labelledby aria-hidden aria-expanded")}),this.tabs.each(function(){var e=t(this),i=e.data("ui-tabs-aria-controls");i?e.attr("aria-controls",i).removeData("ui-tabs-aria-controls"):e.removeAttr("aria-controls")}),this.panels.show(),"content"!==this.options.heightStyle&&this.panels.css("height","")},enable:function(e){var i=this.options.disabled;i!==!1&&(void 0===e?i=!1:(e=this._getIndex(e),i=t.isArray(i)?t.map(i,function(t){return t!==e?t:null}):t.map(this.tabs,function(t,i){return i!==e?i:null})),this._setOptionDisabled(i))},disable:function(e){var i=this.options.disabled;if(i!==!0){if(void 0===e)i=!0;else{if(e=this._getIndex(e),-1!==t.inArray(e,i))return;i=t.isArray(i)?t.merge([e],i).sort():[e]}this._setOptionDisabled(i)}},load:function(e,i){e=this._getIndex(e);var s=this,n=this.tabs.eq(e),o=n.find(".ui-tabs-anchor"),a=this._getPanelForTab(n),r={tab:n,panel:a},h=function(t,e){"abort"===e&&s.panels.stop(!1,!0),s._removeClass(n,"ui-tabs-loading"),a.removeAttr("aria-busy"),t===s.xhr&&delete s.xhr};this._isLocal(o[0])||(this.xhr=t.ajax(this._ajaxSettings(o,i,r)),this.xhr&&"canceled"!==this.xhr.statusText&&(this._addClass(n,"ui-tabs-loading"),a.attr("aria-busy","true"),this.xhr.done(function(t,e,n){setTimeout(function(){a.html(t),s._trigger("load",i,r),h(n,e)},1)}).fail(function(t,e){setTimeout(function(){h(t,e)},1)})))},_ajaxSettings:function(e,i,s){var n=this;return{url:e.attr("href").replace(/#.*$/,""),beforeSend:function(e,o){return n._trigger("beforeLoad",i,t.extend({jqXHR:e,ajaxSettings:o},s))}}},_getPanelForTab:function(e){var i=t(e).attr("aria-controls");return this.element.find(this._sanitizeSelector("#"+i))}}),t.uiBackCompat!==!1&&t.widget("ui.tabs",t.ui.tabs,{_processTabs:function(){this._superApply(arguments),this._addClass(this.tabs,"ui-tab")}}),t.ui.tabs,t.widget("ui.tooltip",{version:"1.12.1",options:{classes:{"ui-tooltip":"ui-corner-all ui-widget-shadow"},content:function(){var e=t(this).attr("title")||"";return t("<a>").text(e).html()},hide:!0,items:"[title]:not([disabled])",position:{my:"left top+15",at:"left bottom",collision:"flipfit flip"},show:!0,track:!1,close:null,open:null},_addDescribedBy:function(e,i){var s=(e.attr("aria-describedby")||"").split(/\s+/);s.push(i),e.data("ui-tooltip-id",i).attr("aria-describedby",t.trim(s.join(" ")))},_removeDescribedBy:function(e){var i=e.data("ui-tooltip-id"),s=(e.attr("aria-describedby")||"").split(/\s+/),n=t.inArray(i,s);-1!==n&&s.splice(n,1),e.removeData("ui-tooltip-id"),s=t.trim(s.join(" ")),s?e.attr("aria-describedby",s):e.removeAttr("aria-describedby")},_create:function(){this._on({mouseover:"open",focusin:"open"}),this.tooltips={},this.parents={},this.liveRegion=t("<div>").attr({role:"log","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this.disabledTitles=t([])},_setOption:function(e,i){var s=this;this._super(e,i),"content"===e&&t.each(this.tooltips,function(t,e){s._updateContent(e.element)})},_setOptionDisabled:function(t){this[t?"_disable":"_enable"]()},_disable:function(){var e=this;t.each(this.tooltips,function(i,s){var n=t.Event("blur");n.target=n.currentTarget=s.element[0],e.close(n,!0)}),this.disabledTitles=this.disabledTitles.add(this.element.find(this.options.items).addBack().filter(function(){var e=t(this);return e.is("[title]")?e.data("ui-tooltip-title",e.attr("title")).removeAttr("title"):void 0}))},_enable:function(){this.disabledTitles.each(function(){var e=t(this);e.data("ui-tooltip-title")&&e.attr("title",e.data("ui-tooltip-title"))}),this.disabledTitles=t([])},open:function(e){var i=this,s=t(e?e.target:this.element).closest(this.options.items);s.length&&!s.data("ui-tooltip-id")&&(s.attr("title")&&s.data("ui-tooltip-title",s.attr("title")),s.data("ui-tooltip-open",!0),e&&"mouseover"===e.type&&s.parents().each(function(){var e,s=t(this);s.data("ui-tooltip-open")&&(e=t.Event("blur"),e.target=e.currentTarget=this,i.close(e,!0)),s.attr("title")&&(s.uniqueId(),i.parents[this.id]={element:this,title:s.attr("title")},s.attr("title",""))}),this._registerCloseHandlers(e,s),this._updateContent(s,e))},_updateContent:function(t,e){var i,s=this.options.content,n=this,o=e?e.type:null;return"string"==typeof s||s.nodeType||s.jquery?this._open(e,t,s):(i=s.call(t[0],function(i){n._delay(function(){t.data("ui-tooltip-open")&&(e&&(e.type=o),this._open(e,t,i))})}),i&&this._open(e,t,i),void 0)},_open:function(e,i,s){function n(t){l.of=t,a.is(":hidden")||a.position(l)}var o,a,r,h,l=t.extend({},this.options.position);if(s){if(o=this._find(i))return o.tooltip.find(".ui-tooltip-content").html(s),void 0;i.is("[title]")&&(e&&"mouseover"===e.type?i.attr("title",""):i.removeAttr("title")),o=this._tooltip(i),a=o.tooltip,this._addDescribedBy(i,a.attr("id")),a.find(".ui-tooltip-content").html(s),this.liveRegion.children().hide(),h=t("<div>").html(a.find(".ui-tooltip-content").html()),h.removeAttr("name").find("[name]").removeAttr("name"),h.removeAttr("id").find("[id]").removeAttr("id"),h.appendTo(this.liveRegion),this.options.track&&e&&/^mouse/.test(e.type)?(this._on(this.document,{mousemove:n}),n(e)):a.position(t.extend({of:i},this.options.position)),a.hide(),this._show(a,this.options.show),this.options.track&&this.options.show&&this.options.show.delay&&(r=this.delayedShow=setInterval(function(){a.is(":visible")&&(n(l.of),clearInterval(r))},t.fx.interval)),this._trigger("open",e,{tooltip:a})}},_registerCloseHandlers:function(e,i){var s={keyup:function(e){if(e.keyCode===t.ui.keyCode.ESCAPE){var s=t.Event(e);s.currentTarget=i[0],this.close(s,!0)}}};i[0]!==this.element[0]&&(s.remove=function(){this._removeTooltip(this._find(i).tooltip)}),e&&"mouseover"!==e.type||(s.mouseleave="close"),e&&"focusin"!==e.type||(s.focusout="close"),this._on(!0,i,s)},close:function(e){var i,s=this,n=t(e?e.currentTarget:this.element),o=this._find(n);return o?(i=o.tooltip,o.closing||(clearInterval(this.delayedShow),n.data("ui-tooltip-title")&&!n.attr("title")&&n.attr("title",n.data("ui-tooltip-title")),this._removeDescribedBy(n),o.hiding=!0,i.stop(!0),this._hide(i,this.options.hide,function(){s._removeTooltip(t(this))}),n.removeData("ui-tooltip-open"),this._off(n,"mouseleave focusout keyup"),n[0]!==this.element[0]&&this._off(n,"remove"),this._off(this.document,"mousemove"),e&&"mouseleave"===e.type&&t.each(this.parents,function(e,i){t(i.element).attr("title",i.title),delete s.parents[e]}),o.closing=!0,this._trigger("close",e,{tooltip:i}),o.hiding||(o.closing=!1)),void 0):(n.removeData("ui-tooltip-open"),void 0)},_tooltip:function(e){var i=t("<div>").attr("role","tooltip"),s=t("<div>").appendTo(i),n=i.uniqueId().attr("id");return this._addClass(s,"ui-tooltip-content"),this._addClass(i,"ui-tooltip","ui-widget ui-widget-content"),i.appendTo(this._appendTo(e)),this.tooltips[n]={element:e,tooltip:i}},_find:function(t){var e=t.data("ui-tooltip-id");return e?this.tooltips[e]:null},_removeTooltip:function(t){t.remove(),delete this.tooltips[t.attr("id")]},_appendTo:function(t){var e=t.closest(".ui-front, dialog");return e.length||(e=this.document[0].body),e},_destroy:function(){var e=this;t.each(this.tooltips,function(i,s){var n=t.Event("blur"),o=s.element;n.target=n.currentTarget=o[0],e.close(n,!0),t("#"+i).remove(),o.data("ui-tooltip-title")&&(o.attr("title")||o.attr("title",o.data("ui-tooltip-title")),o.removeData("ui-tooltip-title"))}),this.liveRegion.remove()}}),t.uiBackCompat!==!1&&t.widget("ui.tooltip",t.ui.tooltip,{options:{tooltipClass:null},_tooltip:function(){var t=this._superApply(arguments);return this.options.tooltipClass&&t.tooltip.addClass(this.options.tooltipClass),t}}),t.ui.tooltip});
-    }).call(window, window);    
\ No newline at end of file
+    }).call(window, window);
\ No newline at end of file
diff --git a/src/002-config/fc-js-init.js b/src/002-config/fc-js-init.js
index ddc82db7712e2c964754f0d0f5e5a9d89066abb7..1e53f5b290ce1f863f6491486185bc04e73da730 100644
--- a/src/002-config/fc-js-init.js
+++ b/src/002-config/fc-js-init.js
@@ -32,3 +32,4 @@ App.Facilities = {
     Arcade: {},
     HGSuite: {}
 };
+App.SF = {};
diff --git a/src/SecExp/authorityReport.tw b/src/SecExp/authorityReport.tw
index ae6298716aca5f98e32400e9e7c3f447d319fd55..8f4498c59ddb4faebc698122c5b9d4701d5b31ef 100644
--- a/src/SecExp/authorityReport.tw
+++ b/src/SecExp/authorityReport.tw
@@ -120,10 +120,10 @@ Your authority is
 <</if>>
 
 <<if $arcologies[0].FSRestart >= 90>>
-	The arcology's society is extremely stratified. The reliance on the societal elite by the lower classes greatly increases your reputation.
+	The arcology's society is extremely stratified. The reliance on the Societal Elite by the lower classes greatly increases your reputation.
 	<<set _authGrowth += $arcologies[0].FSRestart>>
 <<elseif $arcologies[0].FSRestart >= 50>>
-	The arcology's society is very stratified. The reliance on the societal elite by the lower classes increases your reputation.
+	The arcology's society is very stratified. The reliance on the Societal Elite by the lower classes increases your reputation.
 	<<set _authGrowth += $arcologies[0].FSRestart>>
 <</if>>
 
diff --git a/src/SecExp/rebellionEvents.tw b/src/SecExp/rebellionEvents.tw
index eb77eb6b76d0c2589299b163f6c3227798918e00..93f752e2bc7bdec4de08538cdd6f97f9ef4ac872 100644
--- a/src/SecExp/rebellionEvents.tw
+++ b/src/SecExp/rebellionEvents.tw
@@ -72,9 +72,9 @@
 <<case 4>>
 	<<set _rand = random(0,6)>>
 	<<if _rand == 0>>
-		This week a citizen refused to pay rent, claiming ideological opposition to the arcology's owner policies. He was quickly dealt with, but his words might not have fallen silent yet.
+		This week a citizen refused to pay rent, claiming ideological opposition to the arcology's ownership policies. He was quickly dealt with, but his words might not have fallen silent yet.
 	<<elseif _rand == 1>>
-		This week books of unknown origin and dangerous content were found in the possession of several citizens. They were mostly sociopolitical treaties, making it clear that the intent of the ones responsible was to fan the fire of rebellion. Most of them were bought and archived, but a few are still circling between the citizens of the arcology.
+		This week books of unknown origin and dangerous content were found in the possession of several citizens. They were mostly sociopolitical treaties, making it clear that the intent of the ones responsible was to fan the fire of rebellion. Most of them were bought and archived, but a few are still circling amongst the citizens of the arcology.
 	<<elseif _rand == 2>>
 		This week a citizen was caught giving refuge to other citizens, who would be liable to be enslaved because of their debts. The situation was quickly resolved, but the misplaced generosity of that citizen might have inflamed a few souls.
 	<<elseif _rand == 3>>
diff --git a/src/SecExp/rebellionGenerator.tw b/src/SecExp/rebellionGenerator.tw
index 648da686e4c336bb729b5c630ff689d1453b6005..f25ca458c8a11bc05cda270cb4d3587a657318f4 100644
--- a/src/SecExp/rebellionGenerator.tw
+++ b/src/SecExp/rebellionGenerator.tw
@@ -6,57 +6,80 @@
 
 <strong>Slaves security analysis:</strong>
 <<if $authority <= 3000>>
-	Your very low authority allows slaves to think too freely.<<set _slave += 30>>
+	Your very low authority allows slaves to think too freely.
+	<<set _slave += 30>>
 <<elseif $authority <= 6000>>
-	Your low authority allows slaves to think too freely.<<set _slave += 25>>
+	Your low authority allows slaves to think too freely.
+	<<set _slave += 25>>
 <<elseif $authority <= 9000>>
-	Your moderate authority allows slaves to think a bit too freely.<<set _slave += 20>>
+	Your moderate authority allows slaves to think a bit too freely.
+	<<set _slave += 20>>
 <<elseif $authority <= 12000>>
-	Your good authority does not allow slaves to think too freely.<<set _slave += 15>>
+	Your good authority does not allow slaves to think too freely.
+	<<set _slave += 15>>
 <<elseif $authority <= 15000>>
-	Your high authority does not allow slaves to think too freely.<<set _slave += 10>>
+	Your high authority does not allow slaves to think too freely.
+	<<set _slave += 10>>
 <<elseif $authority <= 18000>>
-	Your very high authority does not allow slaves to think too freely.<<set _slave += 5>>
+	Your very high authority does not allow slaves to think too freely.
+	<<set _slave += 5>>
 <<else>>
-	Your absolute authority does not allow slaves to have a single free thought.<<set _slave += 1>>
+	Your absolute authority does not allow slaves to have a single free thought.
+	<<set _slave += 1>>
 <</if>>
 <<if _CSratio <= 0.4>>
-	There are a lot more slaves than citizens, making some doubt their masters are strong enough to stop them.<<set _slave += 30>>
+	There are a lot more slaves than citizens, making some doubt their masters are strong enough to stop them.
+	<<set _slave += 30>>
 <<elseif _CSratio <= 0.6>>
-	There are a lot more slaves than citizens, making some doubt their masters are strong enough to stop them.<<set _slave += 25>>
+	There are a lot more slaves than citizens, making some doubt their masters are strong enough to stop them.
+	<<set _slave += 25>>
 <<elseif _CSratio <= 0.8>>
-	There are more slaves than citizens, making some doubt their masters are strong enough to stop them.<<set _slave += 20>>
+	There are more slaves than citizens, making some doubt their masters are strong enough to stop them.
+	<<set _slave += 20>>
 <<elseif _CSratio <= 1>>
-	There are more slaves than citizens, making some doubt their masters are strong enough to stop them.<<set _slave += 15>>
+	There are more slaves than citizens, making some doubt their masters are strong enough to stop them.
+	<<set _slave += 15>>
 <<elseif _CSratio <= 1.5>>
-	There are fewer slaves than citizens, making some doubt they would be strong enough to defeat their masters.<<set _slave += 10>>
+	There are fewer slaves than citizens, making some doubt they would be strong enough to defeat their masters.
+	<<set _slave += 10>>
 <<elseif _CSratio >= 3>>
-	There are fewer slaves than citizens, making some doubt they would be strong enough to defeat their masters.<<set _slave -= 5>>
+	There are fewer slaves than citizens, making some doubt they would be strong enough to defeat their masters.
+	<<set _slave -= 5>>
 <<else>>
-	Citizen and slave population is sufficiently balanced not to cause problems either way.<<set _slave -= 1>>
+	Citizen and slave population is sufficiently balanced not to cause problems either way.
+	<<set _slave -= 1>>
 <</if>>
 <<if $security <= 10>>
-	The very low security of the arcology leaves free space for slaves to organize and agitate.<<set _slave += 30>>
+	The very low security of the arcology leaves free space for slaves to organize and agitate.
+	<<set _slave += 30>>
 <<elseif $security <= 30>>
-	The low security of the arcology leaves free space for slaves to organize and agitate.<<set _slave += 20>>
+	The low security of the arcology leaves free space for slaves to organize and agitate.
+	<<set _slave += 20>>
 <<elseif $security <= 60>>
-	The moderate security of the arcology does not allow free space for slaves to organize and agitate.<<set _slave += 10>>
+	The moderate security of the arcology does not allow free space for slaves to organize and agitate.
+	<<set _slave += 10>>
 <<elseif $security >= 90>>
-	The high security of the arcology does not allow free space for slaves to organize and agitate.<<set _slave -= 5>>
+	The high security of the arcology does not allow free space for slaves to organize and agitate.
+	<<set _slave -= 5>>
 <<else>>
-	The high security of the arcology does not allow free space for slaves to organize and agitate.<<set _slave -= 1>>
+	The high security of the arcology does not allow free space for slaves to organize and agitate.
+	<<set _slave -= 1>>
 <</if>>
 <<if $arcologies[0].FSDegradationist != "unset">>
-	Many slaves are so disgusted by your degradationist society, that are willing to rise up against their masters to escape.<<set _slave += 30>>
+	Many slaves are so disgusted by your degradationist society, that are willing to rise up against their masters to escape.
+	<<set _slave += 30>>
 <<elseif $arcologies[0].FSPaternalist != "unset">>
-	Many slaves are content to live in your paternalist society.<<set _slave -= 5>>
+	Many slaves are content to live in your paternalist society.
+	<<set _slave -= 5>>
 <<else>>
 	<<set _slave += 5>>
 <</if>>
 <<if $arcologies[0].FSRestart != "unset">>
-	Many slaves are worried by your eugenics projects and some are pushed towards radicalization.<<set _slave += 30>>
+	Many slaves are worried by your eugenics projects and some are pushed towards radicalization.
+	<<set _slave += 30>>
 <<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-	Many slaves are pleasantly happy of your repopulation effort, affording them the freedom to reproduce.<<set _slave -= 5>>
+	Many slaves are pleasantly happy of your repopulation effort, affording them the freedom to reproduce.
+	<<set _slave -= 5>>
 <<else>>
 	<<set _slave += 5>>
 <</if>>
@@ -64,64 +87,84 @@
 <br>
 <strong>Citizens security analysis:</strong>
 <<if $authority <= 3000>>
-	Your very low authority allows your citizens to think too freely.<<set _citizen += 30>>
+	Your very low authority allows your citizens to think too freely.
+	<<set _citizen += 30>>
 <<elseif $authority <= 6000>>
-	Your very low authority allows your citizens to think too freely.<<set _citizen += 25>>
+	Your very low authority allows your citizens to think too freely.
+	<<set _citizen += 25>>
 <<elseif $authority <= 9000>>
-	Your moderate authority allows your citizens to think a bit too freely.<<set _citizen += 20>>
+	Your moderate authority allows your citizens to think a bit too freely.
+	<<set _citizen += 20>>
 <<elseif $authority <= 12000>>
-	Your good authority does not allow your citizens to think too freely.<<set _citizen += 15>>
+	Your good authority does not allow your citizens to think too freely.
+	<<set _citizen += 15>>
 <<elseif $authority <= 15000>>
-	Your high authority does not allow your citizens to think too freely.<<set _citizen += 10>>
+	Your high authority does not allow your citizens to think too freely.
+	<<set _citizen += 10>>
 <<elseif $authority <= 18000>>
-	Your very high authority does not allow your citizens to think too freely.<<set _citizen += 5>>
+	Your very high authority does not allow your citizens to think too freely.
+	<<set _citizen += 5>>
 <<else>>
-	Your absolute authority does not allow your citizens to have a single free thought.<<set _citizen += 1>>
+	Your absolute authority does not allow your citizens to have a single free thought.
+	<<set _citizen += 1>>
 <</if>>
 <<if $crime >= 90>>
-	The very high crime level of the arcology breeds extreme discontent between your citizens.<<set _citizen += 30>>
+	The very high crime level of the arcology breeds extreme discontent between your citizens.
+	<<set _citizen += 30>>
 <<elseif $crime >= 60>>
-	The high crime level of the arcology breeds high discontent between your citizens.<<set _citizen += 15>>
+	The high crime level of the arcology breeds high discontent between your citizens.
+	<<set _citizen += 15>>
 <<elseif $crime >= 30>>
-	The low crime level of the arcology leaves your citizens happy and satisfied.<<set _citizen += 5>>
+	The low crime level of the arcology leaves your citizens happy and satisfied.
+	<<set _citizen += 5>>
 <<else>>
-	The very low crime level of the arcology leaves your citizens happy and satisfied.<<set _citizen -= 5>>
+	The very low crime level of the arcology leaves your citizens happy and satisfied.
+	<<set _citizen -= 5>>
 <</if>>
 <<if $militiaFounded == 1>>
 	<<if ($arcologies[0].FSRomanRevivalist == "unset" && $arcologies[0].FSAztecRevivalist == "unset" && $arcologies[0].FSEgyptianRevivalist == "unset" && $arcologies[0].FSEdoRevivalist == "unset" && $arcologies[0].FSArabianRevivalist == "unset" && $arcologies[0].FSChineseRevivalist == "unset")>>
 		<<if $militarizedSociety == 1>>
-			Many of your citizens are offended by your extreme militarization of the arcology's society.<<set _citizen += 20>>
+			Many of your citizens are offended by your extreme militarization of the arcology's society.
+			<<set _citizen += 20>>
 		<<elseif $militaryService == 1>>
-			Many of your citizens are offended by your militarization of the arcology's society.<<set _citizen += 15>>
+			Many of your citizens are offended by your militarization of the arcology's society.
+			<<set _citizen += 15>>
 		<<else>>
 			<<set _citizen += 10>>
 		<</if>>
 	<<else>>
 		<<if $militarizedSociety == 1>>
-			Some of your citizens are offended by your extreme militarization of the arcology's society<<set _citizen += 10>>
+			Some of your citizens are offended by your extreme militarization of the arcology's society.
+			<<set _citizen += 10>>
 		<<elseif $militaryService == 1>>
-			Some of your citizens are offended by your militarization of the arcology's society<<set _citizen += 5>>
+			Some of your citizens are offended by your militarization of the arcology's society.
+			<<set _citizen += 5>>
 		<<else>>
 			<<set _citizen -= 5>>
 		<</if>>
 	<</if>>
 <</if>>
 <<if $arcologies[0].FSNull != "unset">>
-	Many of your more conservative citizens do not enjoy the cultural freedom you afford the residents of the arcology.<<set _citizen += either(20,30)>>
+	Many of your more conservative citizens do not enjoy the cultural freedom you afford the residents of the arcology.
+	<<set _citizen += either(20,30)>>
 <</if>>
 <<if $arcologies[0].FSRestart != "unset">>
 	<<if _CSratio > 2>>
-		Your citizens are not happy with the noticeable lack of slaves compared to their numbers.<<set _citizen += 20>>
+		Your citizens are not happy with the noticeable lack of slaves compared to their numbers.
+		<<set _citizen += 20>>
 	<<elseif _CSratio > 1>>
-		Your citizens are not happy with the lack of slaves compared to their numbers.<<set _citizen += 15>>
+		Your citizens are not happy with the lack of slaves compared to their numbers.
+		<<set _citizen += 15>>
 	<<elseif _CSratio < 0.5>>
 		<<set _citizen -= 5>>
 	<</if>>
 <<elseif $arcologies[0].FSRepopulationFocus != "unset">>
 	<<if _CSratio < 0.5>>
-		Your citizens are not happy about being outbred by the slaves of the arcology.<<set _citizen += 20>>
+		Your citizens are not happy about being outbred by the slaves of the arcology.
+		<<set _citizen += 20>>
 	<<elseif _CSratio < 1>>
-		Your citizens are not happy about being outbred by the slaves of the arcology.<<set _citizen += 15>>
+		Your citizens are not happy about being outbred by the slaves of the arcology.
+		<<set _citizen += 15>>
 	<<elseif _CSratio > 1.4>>
 		<<set _citizen += 5>>
 	<</if>>
diff --git a/src/SecExp/riotControlCenter.tw b/src/SecExp/riotControlCenter.tw
index aef13c679bbdae7aaa395a987718de6706b1c995..7da10870a70ae9b71dd8708fdae0c5963f47f078 100644
--- a/src/SecExp/riotControlCenter.tw
+++ b/src/SecExp/riotControlCenter.tw
@@ -207,7 +207,7 @@ The riot control center opens its guarded doors to you. The great chamber inside
 <</if>>
 
 <<if $SF.Toggle && $SF.Active >= 1>>
-	<<if $SFSupportLevel >= 4 && !$SFGear && $SF.Squad.Armoury >= 8>> <<= Count()>>
+	<<if $SFSupportLevel >= 4 && !$SFGear && $SF.Squad.Armoury >= 8>> <<= App.SF.Count()>>
 		<br><br> <<link "Give the riot unit access to the combat armor suits of $SF.Lower.""riotControlCenter">> <<set $SFGear = 1,$riotUpkeep += 15000,cashX(forceNeg(Math.ceil(500000*_Env*(1.15+($SF.Squad.Armoury/10)))), "capEx")>> <</link>>
 		<br>//Costs <<print cashFormat(Math.ceil(500000*_Env*(1.15+($SF.Squad.Armoury/10))))>>
 	<<else>>
diff --git a/src/SecExp/tradeReport.tw b/src/SecExp/tradeReport.tw
index b6ae33a0b61bbc5e2cffcf0fdf9d026ccad26d9e..eaefe588a9ce1d3ae9411e62aa33fe54dcfe53d8 100644
--- a/src/SecExp/tradeReport.tw
+++ b/src/SecExp/tradeReport.tw
@@ -53,11 +53,12 @@
 	Your high reputation attracts trade from all over the world.
 <</if>>
 
+<<setAssistantPronouns>>
 <<if $assistantPower == 1>>
-	Thanks to the computing power available to her, $assistantName is able to guide the commercial development of the arcology to greater levels.
+	Thanks to the computing power available to _himA, $assistantName is able to guide the commercial development of the arcology to greater levels.
 	<<set _tradeChange++>>
 <<elseif $assistantPower == 2>>
-	Thanks to the incredible computing power available to her, $assistantName is able to guide the commercial development of the arcology to greater levels.
+	Thanks to the incredible computing power available to _himA, $assistantName is able to guide the commercial development of the arcology to greater levels.
 	<<set _tradeChange += 2>>
 <</if>>
 
diff --git a/src/SecExp/weaponsManufacturing.tw b/src/SecExp/weaponsManufacturing.tw
index c48d2e98a1771251addde53762037d43c9ade0ed..cb2a130ffb8ca70e0c29aca2a21c2081c2b30533 100644
--- a/src/SecExp/weaponsManufacturing.tw
+++ b/src/SecExp/weaponsManufacturing.tw
@@ -35,21 +35,21 @@ You own <<print num($menials)>> free menial slaves. This manufacturing complex c
 <<set _menialPrice = menialSlaveCost()>>
 <<set _bulkMax = $PopCap-$menials-$fuckdolls-$menialBioreactors>>
 <<if $cash > _menialPrice>>
-<<if _bulkMax > 0 || $menials+$fuckdolls+$menialBioreactors == 0>>
-	<br>
-	[[Buy|weaponsManufacturing][$menials+=1,$menialSupplyFactor-=1,cashX(forceNeg(_menialPrice), "menialTransfer")]]
-	<<if $cash > (menialSlaveCost(10))*10>>
-		[[(x10)|weaponsManufacturing][$menials+=10,$menialSupplyFactor-=10,cashX(forceNeg((menialSlaveCost(10))*10), "menialTransfer")]]
-	<</if>>
-	<<if $cash > (menialSlaveCost(100))*100>>
-		[[(x100)|weaponsManufacturing][$menials+=100,$menialSupplyFactor-=100,cashX(forceNeg((menialSlaveCost(100))*100), "menialTransfer")]]
-	<</if>>
-	<<if $cash > (_menialPrice+1)*2>>
-		<<set _menialBulkPremium = Math.trunc(1 + Math.clamp($cash/_menialPrice,0,_bulkMax)/400)>>
-		[[(max)|weaponsManufacturing][$menials+=Math.trunc(Math.clamp($cash/(_menialPrice+_menialBulkPremium),0,_bulkMax)),$menialSupplyFactor-=Math.trunc(Math.clamp($cash/(_menialPrice+_menialBulkPremium),0,_bulkMax)),cashX(forceNeg(Math.trunc(Math.clamp($cash/(_menialPrice+_menialBulkPremium),0,_bulkMax)*(_menialPrice+_menialBulkPremium))), "menialTransfer")]]
+	<<if _bulkMax > 0 || $menials+$fuckdolls+$menialBioreactors == 0>>
+		<br>
+		[[Buy|weaponsManufacturing][$menials+=1,$menialSupplyFactor-=1,cashX(forceNeg(_menialPrice), "menialTransfer")]]
+		<<if $cash > (menialSlaveCost(10))*10>>
+			[[(x10)|weaponsManufacturing][$menials+=10,$menialSupplyFactor-=10,cashX(forceNeg((menialSlaveCost(10))*10), "menialTransfer")]]
+		<</if>>
+		<<if $cash > (menialSlaveCost(100))*100>>
+			[[(x100)|weaponsManufacturing][$menials+=100,$menialSupplyFactor-=100,cashX(forceNeg((menialSlaveCost(100))*100), "menialTransfer")]]
+		<</if>>
+		<<if $cash > (_menialPrice+1)*2>>
+			<<set _menialBulkPremium = Math.trunc(1 + Math.clamp($cash/_menialPrice,0,_bulkMax)/400)>>
+			[[(max)|weaponsManufacturing][$menials+=Math.trunc(Math.clamp($cash/(_menialPrice+_menialBulkPremium),0,_bulkMax)),$menialSupplyFactor-=Math.trunc(Math.clamp($cash/(_menialPrice+_menialBulkPremium),0,_bulkMax)),cashX(forceNeg(Math.trunc(Math.clamp($cash/(_menialPrice+_menialBulkPremium),0,_bulkMax)*(_menialPrice+_menialBulkPremium))), "menialTransfer")]]
+		<</if>>
+		//Bulk transactions may require offering a premium.//
 	<</if>>
-	//Bulk transactions may require offering a premium.//
-<</if>>
 <</if>>
 
 <<if $weapMenials < 500>>
diff --git a/src/SpecialForce/CheatEdit.tw b/src/SpecialForce/CheatEdit.tw
index bde6d74be40d382fe513127e423fa4c873bbff70..2abf6d88bba52a9d0182e5b0e21def4624b50cce 100644
--- a/src/SpecialForce/CheatEdit.tw
+++ b/src/SpecialForce/CheatEdit.tw
@@ -1,7 +1,7 @@
 :: CheatEdit [nobr]
 
 <<set $nextButton = "Back to $SF.Lower's Firebase", $nextLink = "Firebase", $returnTo = "Firebase">>
-<<= Count()>>__Upgrades__: $SF.Size/_max(<<print ($SF.Size/_max).toFixed(2)>>%)
+<<= App.SF.Count()>>__Upgrades__: $SF.Size/_max(<<print ($SF.Size/_max).toFixed(2)>>%)
 <br><br>''Firebase:'' <<textbox "$SF.Squad.Firebase" $SF.Squad.Firebase "CheatEdit">>/_FU
 <br>''Armory:'' <<textbox "$SF.Squad.Armoury" $SF.Squad.Armoury "CheatEdit">>/_AU
 <br>''Drug Lab:'' <<textbox "$SF.Squad.Drugs" $SF.Squad.Drugs "CheatEdit">>/_DrugsU
diff --git a/src/SpecialForce/ColonelSexDec.tw b/src/SpecialForce/ColonelSexDec.tw
index ebf24f073575910c99a84e5238e2352786741ccb..8ed3b8a6392af87e4083643f77bc470aef0583ae 100644
--- a/src/SpecialForce/ColonelSexDec.tw
+++ b/src/SpecialForce/ColonelSexDec.tw
@@ -3,18 +3,18 @@
 <<switch $SF.Colonel.Core>>
 <<case "shell shocked">>
 	<span id="result7">
-	The entire time it is obvious that The Colonel is reliving a horrible event.
-	<br><<link "Try to bring her back">>
-	<<replace "#result7">>
-	"You made an attempt to try to bring her back to the present."
-	<</replace>>
-	<</link>>
+		The entire time it is obvious that The Colonel is reliving a horrible event.
+		<br><<link "Try to bring her back">>
+			<<replace "#result7">>
+				"You made an attempt to try to bring her back to the present."
+			<</replace>>
+		<</link>>
 
-	<br><<link "Leave her be">>
-	<<replace "#result7">>
-	"It is probably better that she tries to deal with her demons alone."
-	<</replace>>
-	<</link>>
+		<br><<link "Leave her be">>
+			<<replace "#result7">>
+				"It is probably better that she tries to deal with her demons alone."
+			<</replace>>
+		<</link>>
 	</span>
 
 <<default>>
diff --git a/src/SpecialForce/Firebase.tw b/src/SpecialForce/Firebase.tw
index 59406c612b08fe8a874416b0ea171214b31e950e..841c32c17ed442b4d70af84b09c306d9bf534ada 100644
--- a/src/SpecialForce/Firebase.tw
+++ b/src/SpecialForce/Firebase.tw
@@ -1,169 +1,191 @@
 :: Firebase [nobr]
+<<= App.SF.Count()>>
+<<if $SF.FS.Tension > 100>> <<= App.SF.fsIntegration('BadOutcome')>>
+<<else>>
+ <<set _S=$SF.Squad>>
+	<<if $SF.tour === 0>>
+		<<switch _Env>> <<case 4>>
+				<<set _EnvCash2 = 450,_EnvCash3 = 200,_EnvCash4 = 100,_EnvProsp = 3>>
+			<<case 3>>
+				<<set _EnvCash2 = 500,_EnvCash3 = 250,_EnvCash4 = 150,_EnvProsp = 5>>
+			<<case 2>>
+				<<set _EnvCash2 = 550,_EnvCash3 = 300,_EnvCash4 = 200,_EnvProsp = 7>>
+		<</switch>> <<set $nextButton = "Back to Main",$nextLink = "Main",$returnTo = "Firebase">>
 
-<<if ndef $Tour>> <<set $Tour = 0>> <</if>> <<= Count()>> <<set _S=$SF.Squad>>
-<<if $Tour === 0>>
-	<<switch _Env>> <<case 4>>
-			<<set _EnvCash2 = 450,_EnvCash3 = 200,_EnvCash4 = 100,_EnvProsp = 3>>
-		<<case 3>>
-			<<set _EnvCash2 = 500,_EnvCash3 = 250,_EnvCash4 = 150,_EnvProsp = 5>>
-		<<case 2>>
-			<<set _EnvCash2 = 550,_EnvCash3 = 300,_EnvCash4 = 200,_EnvProsp = 7>>
-	<</switch>> <<set $nextButton = "Back to Main",$nextLink = "Main",$returnTo = "Firebase">>
+		<<if $cheatMode > 0>> [[Cheat edit|CheatEdit][]] <br> <</if>>
+		The firebase of $arcologies[0].name's <<textbox "$SF.Lower" $SF.Lower "Firebase">> is located in the lower levels, occupying unneeded warehouse space. It is not accessible to the general citizenry, but your personal elevator has express service to it. As you step off, two soldiers in combat armor manning the entry checkpoint tense before recognizing their Marshal and stepping aside with a sharp salute.<br>
 
-	<<if $cheatMode > 0>> [[Cheat edit|CheatEdit][]] <br> <</if>>
-	The firebase of $arcologies[0].name's <<textbox "$SF.Lower" $SF.Lower "Firebase">> is located in the lower levels, occupying unneeded warehouse space. It is not accessible to the general citizenry, but your personal elevator has express service to it. As you step off, two soldiers in combat armor manning the entry checkpoint tense before recognizing their Marshal and stepping aside with a sharp salute.<br>
+		<<if $SF.MercCon.CanAttend === 1>> The Colonel is away at her merc meetup, so <<print App.SF.SFC()>> will assist you.
+		<<else>>
+			You make your way to the operations center. The Colonel is
+			<<if random(1,100) > 25>>glancing between her tablet and the large wallscreen, occasionally taking notes or barking orders.
+			<<elseif random(1,100) > 25>>is handling a minor issue.<<else>>examining a table with a map of the surrounding area, planning maneuvers in the event of an attack.<</if>>
+			She notices your entrance and turns her attention to you.
+		<</if>>
 
-	<<if $SF.MercCon.CanAttend === 1>> The Colonel is away at her merc meetup, so <<print SFC()>> will assist you.
-	<<else>>
-		You make your way to the operations center. The Colonel is
-		<<if random(1,100) > 25>>glancing between her tablet and the large wallscreen, occasionally taking notes or barking orders.
-		<<elseif random(1,100) > 25>>is handling a minor issue.<<else>>examining a table with a map of the surrounding area, planning maneuvers in the event of an attack.<</if>>
-		She notices your entrance and turns her attention to you.
-	<</if>>
+		<<if $SF.Colonel.Core === "brazen">>
+				She gives a textbook salute. "<<= properTitle()>>, how can I help you?"
+		<<else>>
+			"Hey boss, what do you need?"
+		<</if>>
+		<<include "Upgrades">>
+		<<print App.SF.Interactions()>>
+		<<include "WC">>
 
-	<<if $SF.Colonel.Core === "brazen">>
-			She gives a textbook salute. "<<= properTitle()>>, how can I help you?"
-	<<else>>
-		"Hey boss, what do you need?"
-	<</if>>
-	<<include "Upgrades">>
-	<<print Interactions()>>
-	<<include "WC">>
+		<<if $SF.MercCon.CanAttend === -2 && ($SF.Colonel.Fun + $SF.Colonel.Talk < 1)>>
+			<br><br>Her expression changes as something jogs her memory. "Before we begin <<if $SF.Colonel.Core == "brazen">><<= properTitle()>><<else>>boss<</if>>, back when I was a merc me and a couple of my old friends would have a meetup every several months. Drinking, fucking, drugs... a little poker. It eventually grew into a whole thing, and now we bring our latest and greatest toys to show off, maybe make some money off selling the schematics. I'd like to continue going, for old times' sake."
+			<br>[[Grant leave|Firebase][$SF.MercCon.CanAttend = 1]]
+			<br>[[Request she remain on base|Firebase][$SF.MercCon.CanAttend = -3]]<br>
+		<</if>>
 
-	<<if $SF.MercCon.CanAttend === -2 && ($SF.Colonel.Fun + $SF.Colonel.Talk < 1)>>
-		<br><br>Her expression changes as something jogs her memory. "Before we begin <<if $SF.Colonel.Core == "brazen">><<= properTitle()>><<else>>boss<</if>>, back when I was a merc me and a couple of my old friends would have a meetup every several months. Drinking, fucking, drugs... a little poker. It eventually grew into a whole thing, and now we bring our latest and greatest toys to show off, maybe make some money off selling the schematics. I'd like to continue going, for old times' sake."
-		<br>[[Grant leave|Firebase][$SF.MercCon.CanAttend = 1]]
-		<br>[[Request she remain on base|Firebase][$SF.MercCon.CanAttend = -3]]<br>
-	<</if>>
+		<<if $SF.MercCon.History >= 1>>
+			<<if ((Math.trunc($week/24) === ($week/24)) && $SF.MercCon.CanAttend === -1)>>
+				<br><br>Her expression changes as something jogs her memory. "Before we begin <<if $SF.Colonel.Core == "brazen">><<= properTitle()>><<else>>boss<</if>>, that biannual merc meetup has come around again. You've already gave me leave to attend, but I just wanted to be sure I'm still clear to go."
+				<br>[[Grant leave.|Firebase][$SF.MercCon.CanAttend = 1]]
+				<br>[[Request she remain on site.|Firebase][$SF.MercCon.CanAttend = -1]]
+			<</if>>
+		<</if>>
 
-	<<if $SF.MercCon.History >= 1>>
-		<<if ((Math.trunc($week/24) === ($week/24)) && $SF.MercCon.CanAttend === -1)>>
-			<br><br>Her expression changes as something jogs her memory. "Before we begin <<if $SF.Colonel.Core == "brazen">><<= properTitle()>><<else>>boss<</if>>, that biannual merc meetup has come around again. You've already gave me leave to attend, but I just wanted to be sure I'm still clear to go."
-			<br>[[Grant leave.|Firebase][$SF.MercCon.CanAttend = 1]]
-			<br>[[Request she remain on site.|Firebase][$SF.MercCon.CanAttend = -1]]
+		<<if $SF.UC.Lock < 1>> <br>
+			<<switch $SF.UC.Assign>>
+			<<case 0>>
+				<br>No soldiers are working undercover. [[Full time assignment|Firebase][$SF.UC.Lock = 1]]
+				<br>[[Reassign soldiers|Firebase][$SF.UC.Assign = -1]]
+			<<case 1>>
+				<br>A small section of soldiers are working undercover. [[Full time assignment|Firebase][$SF.UC.Lock = 1]]
+				<br>[[Reassign soldiers|Firebase][$SF.UC.Assign = -1]]
+			<<case 2>>
+				<br>A large section of soldiers are working undercover. [[Full time assignment|Firebase][$SF.UC.Lock = 1]]
+				<br>[[Reassign soldiers|Firebase][$SF.UC.Assign = -1]]
+			<<default>>
+				<br>Would you like to assign soldiers to undercover duty?
+				<br>[[Do not assign soldiers to work undercover|Firebase][$SF.UC.Assign = 0]]
+				<br>[[Assign a small section of soldiers to work undercover|Firebase][$SF.UC.Assign = 1]]
+				<br>[[Assign a large section of soldiers to work undercover|Firebase][$SF.UC.Assign = 2]]
+			<</switch>>
+		<<else>>
+			<br> <<if $SF.UC.Assign < 1>>''Zero''<<elseif $SF.UC.Assign < 2>>A ''small'' section<<else>>A ''large'' section<</if>> of the special force is assigned to undercover work. [[Re-allocate the units|Firebase][$SF.UC.Lock = 0]]
 		<</if>>
-	<</if>>
 
-	<<if $SF.UC.Lock < 1>> <br>
-		<<switch $SF.UC.Assign>>
-		<<case 0>>
-			<br>No soldiers are working undercover. [[Full time assignment|Firebase][$SF.UC.Lock = 1]]
-			<br>[[Reassign soldiers|Firebase][$SF.UC.Assign = -1]]
-		<<case 1>>
-			<br>A small section of soldiers are working undercover. [[Full time assignment|Firebase][$SF.UC.Lock = 1]]
-			<br>[[Reassign soldiers|Firebase][$SF.UC.Assign = -1]]
-		<<case 2>>
-			<br>A large section of soldiers are working undercover. [[Full time assignment|Firebase][$SF.UC.Lock = 1]]
-			<br>[[Reassign soldiers|Firebase][$SF.UC.Assign = -1]]
-		<<default>>
-			<br>Would you like to assign soldiers to undercover duty?
-			<br>[[Do not assign soldiers to work undercover|Firebase][$SF.UC.Assign = 0]]
-			<br>[[Assign a small section of soldiers to work undercover|Firebase][$SF.UC.Assign = 1]]
-			<br>[[Assign a large section of soldiers to work undercover|Firebase][$SF.UC.Assign = 2]]
-		<</switch>>
-	<<else>>
-		<br> <<if $SF.UC.Assign < 1>>''Zero''<<elseif $SF.UC.Assign < 2>>A ''small'' section<<else>>A ''large'' section<</if>> of the special force is assigned to undercover work. [[Re-allocate the units|Firebase][$SF.UC.Lock = 0]]
-	<</if>>
+		<<if $SF.Squad.Firebase > 5 && $secExp > 0 && $SFSupportLevel >= 4 && $maxUnits === 16 && $readiness <= 10>>
+			<br><br>[[Provide the security force with their own section.|Firebase][$maxUnits += 4,$readiness = 10,cashX(forceNeg(Math.ceil((750000*(1.15+($SF.Size/1000))*(1.15+($SF.Squad.Firebase/10)))*_Env)), "capEx")]]
+			@@.red;<<print cashFormat(Math.ceil((750000*(1.15+($SF.Size/1000))*(1.15+($SF.Squad.Firebase/10)))*_Env))>>@@
+		<</if>>
+		<br>[[Tour the firebase|Firebase][$SF.tour = 1]]
+	<<else>> <br> <<set $nextButton = "Return to Operations", $nextLink = "Firebase", $SF.tour=0>>
+		<br>You continue towards the common area, the soldiers you pass, nod respectfully, salute, or bow slightly, as they please. You pass the briefing areas, the officers and sergeants of the force are conferring over planning tables and display screens regarding their upcoming deployments.
+		<br><br><div style="margin-left:2em">The commanders are
+		<<if $SF.Target === "recruit">>
+			viewing lists of potential recruits for $SF.Lower. Mainly mercenaries and old world soldiers who might be receptive to an offer of employment and residence within the arcology, in addition to some citizens of the arcology who wish to have some excitement in their lives.
+		<<elseif $SF.Target === "secure">>
+			reviewing maps of trade routes to the arcology as well as nearby merchant hubs, arranging their future deployments to best protect them and encourage business and trade.
+		<<else>>
+			reviewing maps of settlements and locations reported to have choice concentrations of material loot and potential slave stock, in preparation for their coming raids.
+		<</if>> </div>
+		<div style="margin-left:2em">
+		<<if $SF.ROE === "hold">>
+			There are posted (and very strict) guidelines for the use of force against non-citizen residents, forbidding the use of heavy weapons or indiscriminate fire.
+		<<elseif $SF.ROE === "limited">>
+			There are some guidelines posted regarding the use of force against non-citizens, forbidding general indiscriminate fire.
+		<<else>>
+			Guidelines regarding the use of force are completely absent from the deployment information screens. A note affixed to the screen, probably from a soldier, says: "Pop 'em if you see 'em — better than target practice!" Another one on top of that, from The Colonel, says: "Don't shoot the pretty ones, you fucking morons, or I'll kill you myself. They're worth good money or good for fun — do you idiots really want to have to fuck month-old stock?"
+		<</if>> </div>
+		<div style="margin-left:2em">
+		<<if $SF.Regs === "strict">>
+			On several screens, there are prominent warnings regarding the severe disciplinary procedures that will be taken against soldiers who commit crimes while on deployment.
+		<<elseif $SF.Regs === "some">>
+			On several screens, there are some minor warnings regarding the mild disciplinary procedures that may be taken against soldiers who commit especially severe crimes while on deployment.
+		<<else>>
+			There are no warnings or information regarding disciplinary procedures on any of the screens. Near one of them, a waste basket has been dragged over and a soldier has posted a note above it that says: "For old world Complaints and Warrants."
+		<</if>> </div>
+		<<= App.SF.fsIntegration('OptionsFlavourText',90)>>
 
-	<<if $SF.Squad.Firebase > 5 && $secExp > 0 && $SFSupportLevel >= 4 && $maxUnits === 16 && $readiness <= 10>>
-		<br><br>[[Provide the security force with their own section.|Firebase][$maxUnits += 4,$readiness = 10,cashX(forceNeg(Math.ceil((750000*(1.15+($SF.Size/1000))*(1.15+($SF.Squad.Firebase/10)))*_Env)), "capEx")]]
-		@@.red;<<print cashFormat(Math.ceil((750000*(1.15+($SF.Size/1000))*(1.15+($SF.Squad.Firebase/10)))*_Env))>>@@
-	<</if>>
-	<br>[[Tour the firebase|Firebase][$Tour = 1]]
-<<else>> <br> <<set $nextButton = "Return to Operations", $nextLink = "Firebase", $Tour=0>>
-	You continue towards the common area, the soldiers you pass, nod respectfully, salute, or bow slightly, as they please. You pass the briefing areas, the officers and sergeants of the force are conferring over planning tables and display screens regarding their upcoming deployments.
-	<br><br><div style="margin-left:2em">The commanders are
-	<<if $SF.Target === "recruit">>
-		viewing lists of potential recruits for $SF.Lower. Mainly mercenaries and old world soldiers who might be receptive to an offer of employment and residence within the arcology, in addition to some citizens of the arcology who wish to have some excitement in their lives.
-	<<elseif $SF.Target === "secure">>
-		reviewing maps of trade routes to the arcology as well as nearby merchant hubs, arranging their future deployments to best protect them and encourage business and trade.
-	<<else>>
-		reviewing maps of settlements and locations reported to have choice concentrations of material loot and potential slave stock, in preparation for their coming raids.
-	<</if>> </div>
-	<div style="margin-left:2em">
-	<<if $SF.ROE === "hold">>
-		There are posted (and very strict) guidelines for the use of force against non-citizen residents, forbidding the use of heavy weapons or indiscriminate fire.
-	<<elseif $SF.ROE === "limited">>
-		There are some guidelines posted regarding the use of force against non-citizens, forbidding general indiscriminate fire.
-	<<else>>
-		Guidelines regarding the use of force are completely absent from the deployment information screens. A note affixed to the screen, probably from a soldier, says: "Pop 'em if you see 'em — better than target practice!" Another one on top of that, from The Colonel, says: "Don't shoot the pretty ones, you fucking morons, or I'll kill you myself. They're worth good money or good for fun — do you idiots really want to have to fuck month-old stock?"
-	<</if>> </div>
-	<div style="margin-left:2em">
-	<<if $SF.Regs === "strict">>
-		On several screens, there are prominent warnings regarding the severe disciplinary procedures that will be taken against soldiers who commit crimes while on deployment.
-	<<elseif $SF.Regs === "some">>
-		On several screens, there are some minor warnings regarding the mild disciplinary procedures that may be taken against soldiers who commit especially severe crimes while on deployment.
-	<<else>>
-		There are no warnings or information regarding disciplinary procedures on any of the screens. Near one of them, a waste basket has been dragged over and a soldier has posted a note above it that says: "For old world Complaints and Warrants."
-	<</if>> </div>
+		<br>You arrive at the firebase's common area, a nest of bars, pleasure dens, public spaces, and other facilities catering to the soldiers' needs and giving them somewhere to spend their free time, since they do not mingle with your citizens on the higher levels or exit the arcology except on deployment. It is well-occupied by the soldiers not currently tasked with duties, and they respectfully move out of your way as you approach, clearing a path for you to move forward.
+		<<= App.SF.fsIntegration('OptionsFlavourText',50)>>
+		<<= App.SF.fsIntegration('OptionsFlavourText',5)>>
+		<<= App.SF.fsIntegration('OptionsFlavourText',10)>>
+		<br><br><div style="margin-left:2em">
+		The amenities are staffed by menial slaves, captured by the soldiers on their excursions. They are
+		<<if $SF.Depravity <= 0.3 && $SF.Colonel.Core === "kind">>
+			wearing plain jumpsuits and slim identification collars to set them apart from the soldiers, and look resigned but not fearful. The soldiers themselves socialize at the bars, in small groups around tables, and in the gambling parlors. Many of them can be seen entering or leaving the dens occupied by the sexual slaves they have acquired. Laughter from the carousing soldiers can be heard at all times. Small groups of slaves move freely between the plaza and their basic accommodations attached to the firebase.
+		<<elseif $SF.Depravity <= 0.6 && $SF.Colonel.Core === "kind">>
+			topless, wearing only utilitarian pants and leather collars to set them apart from the soldiers, and occasionally shoot fearful looks at the soldiers. The soldiers themselves socialize at the bars, or in large groups around tables, leering at and groping slaves of interest as they pass by. Many of them can be seen entering or leaving the dens occupied by the sexual slaves they have acquired, and often emerge only partially dressed, sometimes pulling half-naked slaves out with them.
+		<<elseif $SF.Depravity <= 0.9>>
+			topless, wearing only utilitarian shorts and steel collars to set them apart from the soldiers, and often shoot fearful looks at the soldiers. The soldiers themselves socialize at the bars, or in large groups around tables, leering at and heavily groping slaves of interest as they pass by. Many of them can be seen entering or leaving the dens occupied by the sexual slaves they have acquired, and often emerge stark naked, sometimes pulling naked slaves out with them for one last servicing in public. A few soldiers stagger around in drunken hazes or drugged-out stupors.
+		<<elseif $SF.Depravity <= 1.2>>
+			topless, wearing only a single undergarment and heavy steel collars to set them apart from the soldiers, and often shoot fearful looks at the soldiers. The soldiers occupy themselves primarily with sex, pulling slaves onto benches and fucking them hard in public. Many soldiers stagger around or lie passed out from drug and alcohol abuse.
+		<<elseif $SF.Depravity >= 1.5 && ($SF.Colonel.Core === "Warmonger" || $SF.Colonel.Core !== "Shell Shocked")>>
+			naked, and are wearing heavy shock collars to force obedience. Most are wild-eyed with fear or dull-eyed from mental collapse, and many others bear marks of abuse. Few of the slaves are here long-term, the depraved pleasures of the soldiers resulting in enormous turnover and loss of 'damaged' stock. The extreme libations of the soldiers are ever-present. Drunken soldiers stagger around everywhere, beating slaves too slow to get out of their way. Others lie sprawled out on the ground, rendered senseless from heavy drug abuse. Some walk around naked, and hold slaves down on the benches scattered around, raping or sodomizing them with their cocks or their personal strap-ons as they desire. In alcoves, some soldier-lover pairs fuck loudly, moaning in pleasure.
+			<<if random(1,100) <= 50>>
+				Off to the side, a group of soldiers brutally gangbang a very young slave girl, with one soldier buried balls-deep in her ass, another brutally sawing a barbed strap-on in and out of her pussy, and a third with his cock forced deep down her throat. The slave girl struggles and gags, desperate for breath or relief.
+			<<elseif random(1,100) > 50>>
+				Off to the side, a group of soldiers cackle amongst themselves as they take turns beating a very young slave girl with heavy batons. Sickening crunches can be heard from the screaming slave.
+			<<elseif random(1,100) > 75>>
+				Off to the side, still more soldiers crowd around an above-ground pit built from empty crates, gambling on slave gladiator fights. There's a drunken cheer as one of the fighters, a very young slave girl, straddles another one and smashes her face in with a blood-slick ammo crate. As she stands, shaking from fear and adrenaline, one of the soldiers laughs and throws a small incendiary grenade at her, changing the cheers to curses as the other soldiers jump away from the flaming, screeching slave.
+			<<else>>
+				Screams and cries of pain can be heard echoing around the area as the soldiers have their fun with their property.
+			<</if>>
+		<</if>> </div>
+		<<= App.SF.fsIntegration('OptionsFlavourText',15)>>
+		<<= App.SF.fsIntegration('OptionsFlavourText',20)>>
+		<<= App.SF.fsIntegration('OptionsFlavourText',25)>>
 
-	<br>You arrive at the firebase's common area, a nest of bars, pleasure dens, public spaces, and other facilities catering to the soldiers' needs and giving them somewhere to spend their free time, since they do not mingle with your citizens on the higher levels or exit the arcology except on deployment. It is well-occupied by the soldiers not currently tasked with duties, and they respectfully move out of your way as you approach, clearing a path for you to move forward.
-	<br><br><div style="margin-left:2em">
-	The amenities are staffed by menial slaves, captured by the soldiers on their excursions. They are
-	<<if $SF.Depravity <= 0.3 && $SF.Colonel.Core === "kind">>
-		wearing plain jumpsuits and slim identification collars to set them apart from the soldiers, and look resigned but not fearful. The soldiers themselves socialize at the bars, in small groups around tables, and in the gambling parlors. Many of them can be seen entering or leaving the dens occupied by the sexual slaves they have acquired. Laughter from the carousing soldiers can be heard at all times. Small groups of slaves move freely between the plaza and their basic accommodations attached to the firebase.
-	<<elseif $SF.Depravity <= 0.6 && $SF.Colonel.Core === "kind">>
-		topless, wearing only utilitarian pants and leather collars to set them apart from the soldiers, and occasionally shoot fearful looks at the soldiers. The soldiers themselves socialize at the bars, or in large groups around tables, leering at and groping slaves of interest as they pass by. Many of them can be seen entering or leaving the dens occupied by the sexual slaves they have acquired, and often emerge only partially dressed, sometimes pulling half-naked slaves out with them.
-	<<elseif $SF.Depravity <= 0.9>>
-		topless, wearing only utilitarian shorts and steel collars to set them apart from the soldiers, and often shoot fearful looks at the soldiers. The soldiers themselves socialize at the bars, or in large groups around tables, leering at and heavily groping slaves of interest as they pass by. Many of them can be seen entering or leaving the dens occupied by the sexual slaves they have acquired, and often emerge stark naked, sometimes pulling naked slaves out with them for one last servicing in public. A few soldiers stagger around in drunken hazes or drugged-out stupors.
-	<<elseif $SF.Depravity <= 1.2>>
-		topless, wearing only a single undergarment and heavy steel collars to set them apart from the soldiers, and often shoot fearful looks at the soldiers. The soldiers occupy themselves primarily with sex, pulling slaves onto benches and fucking them hard in public. Many soldiers stagger around or lie passed out from drug and alcohol abuse.
-	<<elseif $SF.Depravity >= 1.5 && ($SF.Colonel.Core === "Warmonger" || $SF.Colonel.Core !== "Shell Shocked")>>
-		naked, and are wearing heavy shock collars to force obedience. Most are wild-eyed with fear or dull-eyed from mental collapse, and many others bear marks of abuse. Few of the slaves are here long-term, the depraved pleasures of the soldiers resulting in enormous turnover and loss of 'damaged' stock. The extreme libations of the soldiers are ever-present. Drunken soldiers stagger around everywhere, beating slaves too slow to get out of their way. Others lie sprawled out on the ground, rendered senseless from heavy drug abuse. Some walk around naked, and hold slaves down on the benches scattered around, raping or sodomizing them with their cocks or their personal strap-ons as they desire. In alcoves, some soldier-lover pairs fuck loudly, moaning in pleasure.
-		<<if random(1,100) <= 50>>
-			Off to the side, a group of soldiers brutally gangbang a very young slave girl, with one soldier buried balls-deep in her ass, another brutally sawing a barbed strap-on in and out of her pussy, and a third with his cock forced deep down her throat. The slave girl struggles and gags, desperate for breath or relief.
-		<<elseif random(1,100) > 50>>
-			Off to the side, a group of soldiers cackle amongst themselves as they take turns beating a very young slave girl with heavy batons. Sickening crunches can be heard from the screaming slave.
-		<<elseif random(1,100) > 75>>
-			Off to the side, still more soldiers crowd around an above-ground pit built from empty crates, gambling on slave gladiator fights. There's a drunken cheer as one of the fighters, a very young slave girl, straddles another one and smashes her face in with a blood-slick ammo crate. As she stands, shaking from fear and adrenaline, one of the soldiers laughs and throws a small incendiary grenade at her, changing the cheers to curses as the other soldiers jump away from the flaming, screeching slave.
+		<br>In the middle of the common area is a pile of supply crates with a pavilion on top — The Colonel's personal throne and open quarters, the result of her preferring to live an extreme lifestyle amongst her soldiers rather than in her empty quarters on the upper levels. It's draped with the 'flag' of $SF.Lower, one of her inventions. Sprawled all around it is an immense quantity of; alcohol, hard drugs, clothes, electronic devices, huge amounts of cash, jewels and precious metals looted from the outside world.
+		<br><br><div style="margin-left:2em">
+		As you approach, The Colonel
+		<<if random(0,100) <= 50>>
+			raises a hand in greeting and nods. She is sprawled on a couch, wearing only her combat suit tank top and fingerless gloves. She's holding a near-empty bottle of strong liquor in her hand and you can see a naked slave girl kneeling on the floor between her legs. The Colonel has her legs wrapped tightly around the girl's head, forcing the girl to service her if she wants to breathe. The Colonel is close to her climax then suddenly tenses her lower body thus gripping the girl even tighter and throws her head back in ecstasy as she orgasms. She lets out a long breath finally releasing the girl, giving her a hard smack and shouting at her to fuck off.<br><br> The Colonel finishes off her bottle, tossing it over her shoulder then leaning back on the couch and spreading her legs wide. You look down briefly, falling into your habits of inspection. Her pussy is completely devoid of hair with heavy labia in with a very large and hard clit peaking out. Beads of moisture, the result of her excitation, are visible, and you can tell from long experience that she would be tight as a vise. You return your gaze to her face to find her smirking at you. "Like what you see, <<= App.SF.ColonelStatus()>>?" She waves her hand at the plaza around her, "So do they. But you're not here for pussy. You're here to talk business. So, what's up?"
+		<<elseif random(0,100) > 50>>
+			is in no condition initially to greet you. She's naked except for one sock that gives you a very good view of her muscled, taut body while lunging with her feet on the table and the rest on her couch. She is face-down in a drugged-out stupor in the middle of a wide variety of powders and pills. Perhaps sensing your approach, her head suddenly shoots up and looks at you with unfocused, bloodshot eyes. "Sorry, <<= App.SF.ColonelStatus()>>," she slurs, wiping her face and weakly holding up a hand. "Hold on a second, I need something to help me out here. Long fucking night." She struggles to sit on the couch and bending over the table, loudly snorts up some of the white powder on it. "Ahhh, fuck," she says, breathing heavily.<br><br> She shakes her head powerfully now looking at you, her eyes once again alert and piercing. "That's better," she says, leaning back on the couch and giving you another good view of her assets. "So, <<= App.SF.ColonelStatus()>>," she begins, "what brings you down here to our little clubhouse? I trust you're happy with how we've been handling things out there?" You nod. "Excellent", she laughs. "I have to say; it's nice to have a place like this while having some top-end gear and to be able to have fun out there without worrying about anyone coming back on us. Good fucking times." She laughs again. "So — I'm assuming you want something?"
+		<<elseif random(0,100) > 70 && $SF.Depravity >= 1.5 && $SF.Colonel.Core == "cruel">>
+			is relaxing on her couch stark naked, greeting you with a raised hand. Between her tightly clenched legs is a slave girl being forced to eat her out. "Hey, <<= App.SF.ColonelStatus()>>, what's —" she breaks off as a flash of pain crosses her features. "Fucking bitch!" she exclaims, pulling her legs away and punching the slave girl in the face. She pushes the girl to the ground, straddling her then begins hitting. You hear one crunch after another as The Colonel's powerful blows shatter the girl's face. She hisses from between clenched teeth, each word accompanied by a brutal punch. "How. Many. Fucking. Times. Have. I. Told. You. To. Watch. Your. Fucking. Teeth. On. My. Fucking. Clit!" She leans back, exhaling heavily. Before leaning back down to grip apply pressure onto the girl's neck with her powerful hands. Wordlessly, she increases the pressure and soon the girl begins to turn blue as she struggles to draw breath. Eventually her struggles weaken and then finally, end.<br><br> The Colonel relaxes her grip then wipes her brow, clearing away the sweat from her exertion. Finally rising from the girl's body, relaxing back on the couch and putting her feet back up on the table. "Sorry about that <<= App.SF.ColonelStatus()>>," she says, shrugging. "So many of these bitches we pick up from the outside don't understand that they have to behave." Shaking her head in frustration, "Now I need to find another one. But that's not your problem — you're here to talk business. So, what's up?"
 		<<else>>
-			Screams and cries of pain can be heard echoing around the area as the soldiers have their fun with their property.
+			is topless while reviewing the particulars of her unit on a tablet as you approach. She raises a hand in greeting. "Hey <<= App.SF.ColonelStatus()>>," she says, noticing you looking at her chest. She laughs. "Nice, aren't they? But they're not for you or them." She throws a thumb at the plaza around her. "You're down here for a reason, though. What can I do for you?"
+		<</if>> </div>
+		<<= App.SF.fsIntegration('OptionsFlavourText',40)>>
+		<<= App.SF.fsIntegration('OptionsFlavourText',-1)>>
+		<<= App.SF.fsIntegration('OptionsFlavourText')>>
+		<<if _S.Firebase === 10>>
+			<br>The echo of simulated gun fire and explosions can be heard from the state of the art killhouse.
+			The quite hum of fans keeping the faster and much more efficient custom network operational can be heard throughout the firebase.<br>
 		<</if>>
-	<</if>> </div>
 
-	<br>In the middle of the common area is a pile of supply crates with a pavilion on top — The Colonel's personal throne and open quarters, the result of her preferring to live an extreme lifestyle amongst her soldiers rather than in her empty quarters on the upper levels. It's draped with the 'flag' of $SF.Lower, one of her inventions. Sprawled all around it is an immense quantity of; alcohol, hard drugs, clothes, electronic devices, huge amounts of cash, jewels and precious metals looted from the outside world.
-	<br><br><div style="margin-left:2em">
-	As you approach, The Colonel
-	<<if random(0,100) <= 50>>
-		raises a hand in greeting and nods. She is sprawled on a couch, wearing only her combat suit tank top and fingerless gloves. She's holding a near-empty bottle of strong liquor in her hand and you can see a naked slave girl kneeling on the floor between her legs. The Colonel has her legs wrapped tightly around the girl's head, forcing the girl to service her if she wants to breathe. The Colonel is close to her climax then suddenly tenses her lower body thus gripping the girl even tighter and throws her head back in ecstasy as she orgasms. She lets out a long breath finally releasing the girl, giving her a hard smack and shouting at her to fuck off.<br><br> The Colonel finishes off her bottle, tossing it over her shoulder then leaning back on the couch and spreading her legs wide. You look down briefly, falling into your habits of inspection. Her pussy is completely devoid of hair with heavy labia in with a very large and hard clit peaking out. Beads of moisture, the result of her excitation, are visible, and you can tell from long experience that she would be tight as a vise. You return your gaze to her face to find her smirking at you. "Like what you see, <<= SFCR()>>?" She waves her hand at the plaza around her, "So do they. But you're not here for pussy. You're here to talk business. So, what's up?"
-	<<elseif random(0,100) > 50>>
-		is in no condition initially to greet you. She's naked except for one sock that gives you a very good view of her muscled, taut body while lunging with her feet on the table and the rest on her couch. She is face-down in a drugged-out stupor in the middle of a wide variety of powders and pills. Perhaps sensing your approach, her head suddenly shoots up and looks at you with unfocused, bloodshot eyes. "Sorry, <<= SFCR()>>," she slurs, wiping her face and weakly holding up a hand. "Hold on a second, I need something to help me out here. Long fucking night." She struggles to sit on the couch and bending over the table, loudly snorts up some of the white powder on it. "Ahhh, fuck," she says, breathing heavily.<br><br> She shakes her head powerfully now looking at you, her eyes once again alert and piercing. "That's better," she says, leaning back on the couch and giving you another good view of her assets. "So, <<= SFCR()>>," she begins, "what brings you down here to our little clubhouse? I trust you're happy with how we've been handling things out there?" You nod. "Excellent", she laughs. "I have to say; it's nice to have a place like this while having some top-end gear and to be able to have fun out there without worrying about anyone coming back on us. Good fucking times." She laughs again. "So — I'm assuming you want something?"
-	<<elseif random(0,100) > 70 && $SF.Depravity >= 1.5 && $SF.Colonel.Core == "cruel">>
-		is relaxing on her couch stark naked, greeting you with a raised hand. Between her tightly clenched legs is a slave girl being forced to eat her out. "Hey, <<= SFCR()>>, what's —" she breaks off as a flash of pain crosses her features. "Fucking bitch!" she exclaims, pulling her legs away and punching the slave girl in the face. She pushes the girl to the ground, straddling her then begins hitting. You hear one crunch after another as The Colonel's powerful blows shatter the girl's face. She hisses from between clenched teeth, each word accompanied by a brutal punch. "How. Many. Fucking. Times. Have. I. Told. You. To. Watch. Your. Fucking. Teeth. On. My. Fucking. Clit!" She leans back, exhaling heavily. Before leaning back down to grip apply pressure onto the girl's neck with her powerful hands. Wordlessly, she increases the pressure and soon the girl begins to turn blue as she struggles to draw breath. Eventually her struggles weaken and then finally, end.<br><br> The Colonel relaxes her grip then wipes her brow, clearing away the sweat from her exertion. Finally rising from the girl's body, relaxing back on the couch and putting her feet back up on the table. "Sorry about that <<= SFCR()>>," she says, shrugging. "So many of these bitches we pick up from the outside don't understand that they have to behave." Shaking her head in frustration, "Now I need to find another one. But that's not your problem — you're here to talk business. So, what's up?"
-	<<else>>
-		is topless while reviewing the particulars of her unit on a tablet as you approach. She raises a hand in greeting. "Hey <<= SFCR()>>," she says, noticing you looking at her chest. She laughs. "Nice, aren't they? But they're not for you or them." She throws a thumb at the plaza around her. "You're down here for a reason, though. What can I do for you?"
-	<</if>> </div>
-	<<if _S.Firebase === 10>>
-		<br>The echo of simulated gun fire and explosions can be heard from the state of the art killhouse.
-		The quite hum of fans keeping the faster and much more efficient custom network operational can be heard throughout the firebase.<br>
-	<</if>>
+		<br>__Current facilities status:__
+		<<= App.SF.UnitText('firebase')>> <<= App.SF.fsIntegration('OptionsFlavourText',30)>>
+			<<= App.SF.fsIntegration('OptionsFlavourText',80)>>
+			<<= App.SF.fsIntegration('OptionsFlavourText',85)>>
+		<<= App.SF.UnitText('troop')>>
+		<<= App.SF.UnitText('armory')>> <<= App.SF.fsIntegration('OptionsFlavourText',35)>>
+		<<= App.SF.UnitText('drugs')>> <<= App.SF.fsIntegration('OptionsFlavourText',45)>>
+		<<= App.SF.UnitText('UAV')>> <<= App.SF.fsIntegration('OptionsFlavourText',55)>>
 
-	<br>__Current facilities status:__
-	<<= UnitText('firebase')>> <<= UnitText('troop')>> <<= UnitText('armory')>>
-	<<= UnitText('drugs')>> <<= UnitText('UAV')>>
-
-	<<if _G > 0 && _S.Firebase >= 1>> <br><br>''Garage:''
-		<<if _S.AV+_S.TV > 0>> <br>&nbsp;''Vehicles:''
-			<<= UnitText('AV')>> <<= UnitText('TV')>>
+			<<if _G > 0 && _S.Firebase >= 1>> <br><br>''Garage:''
+				<<if _S.AV+_S.TV > 0>> <br>&nbsp;''Vehicles:''
+					<<= App.SF.UnitText('AV')>> <<= App.SF.UnitText('TV')>>
+				<</if>>
+				<<= App.SF.UnitText('PGT')>>
+				<<= App.SF.fsIntegration('OptionsFlavourText',60)>>
+				<<= App.SF.fsIntegration('OptionsFlavourText',65)>>
 		<</if>>
-		<<= UnitText('PGT')>>
-	<</if>>
 
-	<<if _S.Firebase >= 4>>
-		<<if _H > 0>> <br><br>''Hangar:''
-			<<if _S.AA+_S.TA > 0>> <br>&nbsp;''Airforce:''
-				<<= UnitText('AA')>> <<= UnitText('TA')>>
+		<<if _S.Firebase >= 4>>
+			<<if _H > 0>> <br><br>''Hangar:''
+				<<if _S.AA+_S.TA > 0>> <br>&nbsp;''Airforce:''
+					<<= App.SF.UnitText('AA')>> <<= App.SF.UnitText('TA')>>
+				<</if>>
+				<<= App.SF.UnitText('SP')>> <<= App.SF.UnitText('GunS')>>
 			<</if>>
-			<<= UnitText('SP')>> <<= UnitText('GunS')>>
+			<<= App.SF.fsIntegration('OptionsFlavourText',70)>>
+			<<= App.SF.fsIntegration('OptionsFlavourText',75)>>
 		<</if>>
-	<</if>>
-	<<if _T1 && _LB> 0>> <br><br>''Launch Bay:''
-		<<if $SF.Squad.Satellite.lv > 0>> <<= UnitText('sat')>>
-			<<if $SF.Squad.Satellite.InOrbit < 1>> <br>&nbsp;&nbsp;&nbsp;[[Launch it into geostationary orbit.|Firebase][$SF.Squad.Satellite.InOrbit=1]] //You <span class="red">cannot</span> upgrade the satellite once it has been launched.// <</if>>
+		<<if _T1 && _LB> 0>> <br><br>''Launch Bay:''
+			<<if $SF.Squad.Satellite.lv > 0>> <<= App.SF.UnitText('sat')>>
+				<<if $SF.Squad.Satellite.InOrbit < 1>> <br>&nbsp;&nbsp;&nbsp;[[Launch it into geostationary orbit.|Firebase][$SF.Squad.Satellite.InOrbit=1]] //You <span class='red'>cannot</span> upgrade the satellite once it has been launched.// <</if>>
+			<</if>>
+			<<= App.SF.UnitText('GR')>> <<= App.SF.UnitText('ms')>>
+		<</if>>
+		<<if _NY > 0>> <br><br>''Naval Yard:''
+			<<= App.SF.UnitText('AC')>> <<= App.SF.UnitText('Sub')>> <<= App.SF.UnitText('HAT')>>
 		<</if>>
-		<<= UnitText('GR')>> <<= UnitText('ms')>>
-	<</if>>
-	<<if _NY > 0>> <br><br>''Naval Yard:''
-		<<= UnitText('AC')>> <<= UnitText('Sub')>> <<= UnitText('HAT')>>
 	<</if>>
 <</if>>
\ No newline at end of file
diff --git a/src/SpecialForce/NamingColonel.tw b/src/SpecialForce/NamingColonel.tw
index c99d15deed53884ab93120b94ec16ffd0e3e0187..52b824280b3cffab8409299ce37df130246d6260 100644
--- a/src/SpecialForce/NamingColonel.tw
+++ b/src/SpecialForce/NamingColonel.tw
@@ -17,7 +17,7 @@
 	<br><br>You finally wrap up your speech, declaring yourself Marshal of the newly-formed <<textbox "$SF.Lower" $SF.Lower "Security Force Naming-Colonel">>
 	<br><br>You close the link to the communication system and read a message from your assistant that appeared during the last moments of your address. In consultation with major figures in the mercenary community, a suitable candidate for day-to-day command of the new unit has been found. Your instructions were to keep you in the dark about them so as to avoid prejudgment. They are waiting outside your office.
 	<br><br>[[Invite them inside|Security Force Naming-Colonel][$SF.IntroProgress = 1]]
-<<elseif $SF.IntroProgress < 2>> <<= SFNameCapsCheck()>>
+<<elseif $SF.IntroProgress < 2>> <<= App.SF.NameCapsCheck()>>
 	The figure that enters is not what you were expecting, given your previous experiences with the mercenary groups that work with the arcology owners of the Free Cities. Most mercenaries you've worked with have been grizzled stout men, veterans of the old world militaries that finally had too much and went private. Instead, a woman walks in.
 	<<if $SF.Colonel.Core === "">>
 		She strikes you as someone who is likely to be:
diff --git a/src/SpecialForce/Proposal.tw b/src/SpecialForce/Proposal.tw
index 7c9e478ca8aaa92406d640aeeef983f7e9f093b3..1fdf94d09bcca2ae2c323e9a99a9c30e59a4f04d 100644
--- a/src/SpecialForce/Proposal.tw
+++ b/src/SpecialForce/Proposal.tw
@@ -10,6 +10,6 @@ The Free Cities were founded on the principles of unrestrained anarcho-capitalis
 <<set _price = 20000>> <<if $PC.warfare >= 100>> <<set _price *= .5>>
 <<elseif $PC.warfare >= 50||$PC.career === "arcology owner">> <<set _price *= .75>> <</if>>
 <br><<link "Prepare for an announcement.""Security Force Naming-Colonel">> <<replace "#result">>
-	<<= SFInit()>> <<set $SF.Active = 1,$SF.IntroProgress = -1>> <<run cashX(forceNeg(_price), "specialForces")>>
+	<<= App.SF.Init()>> <<set $SF.IntroProgress = -1>> <<run cashX(-_price, "specialForces")>>
 <</replace>> <</link>><br>//Initial costs are @@.yellowgreen;<<print cashFormat(_price)>>@@ and upon establishment the force will have significant support costs until it is self-sufficient.//
 <br><<link "The current measures are enough.""RIE Eligibility Check">> <<replace "#result">> <<set $SF.Active = 0>> <</replace>> <</link>> </span>
\ No newline at end of file
diff --git a/src/SpecialForce/SpecialForce.js b/src/SpecialForce/SpecialForce.js
index a88da511caa1d2cf2918cb75d19e810b111dd624..d98610db201e8d43d8bcd1314ffaf0f62e2bb516 100644
--- a/src/SpecialForce/SpecialForce.js
+++ b/src/SpecialForce/SpecialForce.js
@@ -1,38 +1,41 @@
 // V=SugarCube.State.variables, T=SugarCube.State.temporary;
-window.Main = function() {
+App.SF.Init = function(input = '') {
 	const V = State.variables;
-	V.SF = {Toggle:V.SF.Toggle, Active:-1, Depravity:0, Size:0, Upgrade:0, Gift:0,
-		UC:{Assign:0, Lock:0, num:0}, ROE:"hold", Target:"recruit", Regs:"strict",
-		Caps:"The Special Force", Lower:"the special force", Subsidy:1, BadOutcome:""};
-	V.arcologies[0].SFRaid = 1; V.arcologies[0].SFRaidTarget = -1;
-};
-window.Squad = function() {
-	const V = State.variables;
-	V.SF.Squad = {Troops:40, Armoury:0, Firebase:0, AV:0, TV:0, Drones:0, Drugs:0,
-		PGT:0, AA:0, TA:0, SpacePlane:0, GunS:0, Satellite:{lv:0, InOrbit:0},
-		GiantRobot:0, MissileSilo:0, AircraftCarrier:0, Sub:0, HAT:0};
-};
-window.Colonel = function() {
-	const V = State.variables;
-	V.SF.Colonel = {Core:"", Talk:0, Fun:0, Status:0};
-};
-window.MercCon = function() {
-	const V = State.variables;
-	V.SF.MercCon = {History:0, CanAttend:-2, Income:0, Revenue:0, Menials:0,
-		TotalMenials:0, Mercs:0, TotalMercs:0};
-};
-window.Facility = function() {
-	const V = State.variables;
-	V.SF.Facility = {Toggle:0, Active:0, LC:0, Workers:0, Max:5,
-		Caps:"Special force support facility", Lower:"special force support facility",
-		Decoration:"standard", Speed:0, Upgrade:0, IDs:[]};
-};
-
-window.SFInit = function() {
-	Main(); Squad(); Colonel();
+	if (V.SF.Depravity === undefined) {
+		Object.assign(V.SF,
+		{
+			Depravity:0, Size:0, Upgrade:0, Gift:0,
+			UC:{Assign:0, Lock:0, num:0}, ROE:"hold", Target:"recruit", Regs:"strict",
+			Caps:"The Special Force", Lower:"the special force", Subsidy:1,
+			Squad:{
+				Troops:40, Armoury:0, Firebase:0, AV:0, TV:0, Drones:0, Drugs:0,
+				PGT:0, AA:0, TA:0, SpacePlane:0, GunS:0, Satellite:{lv:0, InOrbit:0},
+				GiantRobot:0, MissileSilo:0, AircraftCarrier:0, Sub:0, HAT:0
+			},
+			Colonel:{Core:"", Talk:0, Fun:0, Status:0},
+			MercCon:{
+				History:0, CanAttend:-2, Income:0, Revenue:0, Menials:0,
+				TotalMenials:0, Mercs:0, TotalMercs:0
+			}
+		});
+		//V.arcologies[0].SFRaid = 1; V.arcologies[0].SFRaidTarget = -1;
+	}
+	if (typeof V.SF.MercCon === "undefined") {
+		V.SF.MercCon = {
+			History:0, CanAttend:-2, Income:0, Revenue:0, Menials:0,
+			TotalMenials:0, Mercs:0, TotalMercs:0
+		};
+	}
+	/* if (typeof V.SF.Facility === "undefined") {
+		V.SF.Facility = {
+			Toggle:0, Active:0, LC:0, Workers:0, Max:5,
+			Caps:"Special force support facility", Lower:"special force support facility",
+			Decoration:"standard", Speed:0, Upgrade:0, IDs:[]
+		};
+	}*/
 };
 
-window.SFBC = function() {
+App.SF.BC = function() {
 	const V = State.variables;
 	function InitClean() {
 		delete V.SFMODToggle;
@@ -97,7 +100,7 @@ window.SFBC = function() {
 		delete V.securityForceHeavyTransport;
 	}
 
-	if (V.SF === undefined) {
+	if (typeof V.SF !== "object") {
 		if (V.securityForceEventSeen < 1) {
 			V.securityForceActive = -1;
 		} else {
@@ -119,13 +122,13 @@ window.SFBC = function() {
 				Caps:"The Special Force",
 				Lower:V.securityForceName,
 				Subsidy:V.SubsidyActive
-			});
-			MainClean(); SFNameCapsCheck();
+			}); MainClean(); App.SF.NameCapsCheck();
 
 			if (V.ColonelCore === undefined) V.ColonelCore = "";
 			if (V.ColonelDiscussion === undefined) V.ColonelDiscussion = 0;
 			if (V.ColonelSexed === undefined) V.ColonelSexed = 0;
-			V.SF.Colonel = {Core:V.ColonelCore,
+			V.SF.Colonel = {
+				Core:V.ColonelCore,
 				Talk:V.securityForceColonelToken,
 				Fun:V.securityForceColonelSexed,
 				Status:V.ColonelRelationship}; ColonelClean();
@@ -134,14 +137,15 @@ window.SFBC = function() {
 			if (V.TotalTradeShowIncome === undefined) V.TotalTradeShowIncome = 0;
 			if (V.TradeShowHelots === undefined) V.TradeShowHelots = 0;
 			if (V.TotalTradeShowHelots === undefined) V.TotalTradeShowHelots = 0;
-			V.SF.MercCon = {History:V.OverallTradeShowAttendance,
+			V.SF.MercCon = {
+				History:V.OverallTradeShowAttendance,
 				CanAttend:V.CurrentTradeShowAttendance,
 				Income:V.TradeShowIncome,
 				Revenue:V.TotalTradeShowIncome,
 				Menials:V.TradeShowHelots,
 				TotalMenials:V.TotalTradeShowHelots,
 				Mercs:0,
-				TotalMercs:0}; TradeShow();
+				TotalMercs:0}; TradeShowClean();
 			if (V.SF.MercCon.History > 0) V.SF.MercCon.CanAttend = 1;
 
 			if (V.securityForceHeavyBattleTank === undefined) V.securityForceHeavyBattleTank = 0;
@@ -173,29 +177,28 @@ window.SFBC = function() {
 				AircraftCarrier:V.securityForceAircraftCarrier,
 				Sub:V.securityForceSubmarine,
 				HAT:V.securityForceHeavyAmphibiousTransport
-			};
-			UnitsClean();
+			}; UnitsClean();
 		} else {
-			SFInit();
+			App.SF.Init();
 		}
-	} else {
+	} else if (typeof V.SF === "object" && V.SF.Toggle > 0) {
 		if (V.SF.MercCon && V.SF.MercCon.View) delete V.SF.MercCon.View;
-		if (V.SFUC > 0) V.SF.UC.num = V.SFUC; delete V.SFUC;
-		if (V.SF.Active === -1) SFInit();
-		if (V.SF.MWU) delete V.SF.MWU;
-		if (V.SpecOpsLock !== undefined) V.SF.SpecOpsLock = V.SpecOpsLock; delete V.SpecOpsLock;
 		if (V.SF.UC === undefined) {
 			if (V.SF.SpecOps !== undefined && V.SF.SpecOpsLock !== undefined) {
 				V.SF.UC = {Assign:V.SF.SpecOps, Lock:V.SF.SpecOpsLock};
-		delete V.SF.SpecOps; delete V.SF.SpecOpsLock;
-			} else if (V.SF.UC === {}) {
+				delete V.SF.SpecOps; delete V.SF.SpecOpsLock;
+			} else {
 				V.SF.UC = {Assign:0, Lock:0};
 			}
 		}
-		if (V.SF.U !== undefined) V.SF.Upgrade = V.SF.U; delete V.SF.U;
-		if (V.SF.WG !== undefined) V.SF.Gift = V.SF.WG; delete V.SF.WG;
+		if (V.SF.UC.num === undefined) V.SF.UC.num = V.SFUC || 0; delete V.SFUC;
+		if (V.SF.Active === -1) App.SF.Init();
+		if (V.SF.MWU) delete V.SF.MWU;
+		if (V.SpecOpsLock !== undefined) V.SF.SpecOpsLock = V.SpecOpsLock; delete V.SpecOpsLock;
+		if (V.SF.Upgrade === undefined) V.SF.Upgrade = V.SF.U || 0; delete V.SF.U;
+		if (V.SF.Gift === undefined) V.SF.Gift = V.SF.WG || 0; delete V.SF.WG;
 
-		if (V.SF.MercCon === undefined) MercCon();
+		if (V.SF.MercCon === undefined) App.SF.Init();
 		if (V.SF.MercCon.Helots !== undefined) {
 			V.SF.MercCon.Menials = V.SF.MercCon.Helots;
 			delete V.SF.MercCon.Helots;
@@ -214,7 +217,6 @@ window.SFBC = function() {
 			if (V.SFUnit.AT !== undefined) V.SFUnitTA = 0;
 			if (V.SFTradeShow !== undefined) V.SF.MercCon = V.SFTradeShow; delete V.SFTradeShow;
 			if (V.SFColonel !== undefined) V.SF.Colonel = V.SFColonel; delete V.SFColonel;
-			if (V.SF.BadOutcome === undefined) V.SF.BadOutcome = "";
 			if (V.SF.Squad.Satellite !== undefined && V.SatLaunched === undefined) {
 				V.SF.Squad.Sat = {lv:0, InOrbit:0};
 				V.SF.Squad.Satellite = V.SF.Squad.Sat;
@@ -225,247 +227,1075 @@ window.SFBC = function() {
 			V.SF.Squad.Sat = {lv:V.SF.Squad.Satellite, InOrbit:0};
 			V.SF.Squad.Satellite = V.SF.Squad.Sat; delete V.SF.Squad.Sat;
 		}
+		//if (V.SF.Facility === undefined) App.SF.Init();
+		if (V.SF.Squad.Satellite === undefined) V.SF.Squad.Satellite = {lv:0, InOrbit:0};
+		if (V.SF.FS === undefined) V.SF.FS = {Tension:-1};
 	}
 	InitClean(); MainClean(); ColonelClean(); TradeShowClean(); UnitsClean();
-	if (V.SF.Facility === undefined) Facility();
-	if (V.SF.Squad.Satellite === undefined) V.SF.Squad.Satellite = {lv:0, InOrbit:0};
 };
 
-window.SFReport = function() {
-	"use strict"; const V = State.variables, T = State.temporary, S = V.SF.Squad;
-	const target = 50000, baseLine = 5000; let profit = 0, upkeep = 0, income = 0;
-	let Multiplier = {action:1, troop:1, unit:1, depravity:1};
-	let FNG = 10, unitCap = 2500, Trade = 0.025;
-	let cost = {a:0.01, b:2.5}, NO = 1+(V.SF.Size/5), N1 = 1+(V.SF.Size/5);
+App.SF.fsIntegration = function(input = 'Menu', textDisplay = 100, text = `\n`) {
+	const Revivalisms = ['Roman_Revivalism', 'Aztec_Revivalism', 'Egyptian_Revivalism', 'Edo_Revivalism', 'Arabian_Revivalism', 'Chinese_Revivalism', 'Multiculturalism'], V = State.variables;
+	let FS_OPTIONS = ['Repopulation', 'Eugenics', 'Gender_radicalism', 'Gender_traditionalism', 'Paternalism', 'Degradationism', 'Body_Purism', 'Transformation_Fetishism', 'Youth_Preferentialism', 'Maturity_Preferentialism', 'Slimness_Enthusiasm', 'Asset_Expansionism', 'Slave_Pastoralism', 'Physical_Idealism', 'Hedonistic_Decadence', 'Chattel_Religionism'];
+	FS_OPTIONS = FS_OPTIONS.concat(Revivalisms);
 
-	V.SF.UC.num = 0; Count(); let r = ``, deaths = 0, SFD = V.SF.Depravity;
-	if (profit < 1) cost.a = 10; cost.b = 0.1; NO = 1; N1 = 0.1;
+	function validityTester() {
+		if (V.SF.FS['Repopulation'].lv > V.SF.FS['Eugenics'].lv) {
+			V.SF.FS['Eugenics'].vaildOption = 0;
+		} else if (V.SF.FS['Eugenics'].lv > V.SF.FS['Repopulation'].lv) {
+			V.SF.FS['Repopulation'].vaildOption = 0;
+		}
 
-	if (S.Troops > unitCap) S.Troops = unitCap;
-	if (S.Troops < 100) {
-		S.Troops += Math.ceil(jsRandom(2, 5));
-	} else {
-		if (V.SF.Target === "recruit") {
-			S.Troops -= Math.ceil(jsRandom(1*S.Troops/1000, 0));
-		} else if (V.SF.Target === "raiding") {
-			S.Troops -= Math.ceil(jsRandom(1.15*S.Troops/1000, -1.20*S.Troops/1000));
-		} else {
-			S.Troops -= Math.ceil(jsRandom(1.10*S.Troops/1000, -1.15*S.Troops/1000));
+		if (V.SF.FS['Gender_radicalism'].lv > V.SF.FS['Gender_traditionalism'].lv) {
+			V.SF.FS['Gender_traditionalism'].vaildOption = 0;
+		} else if (V.SF.FS['Gender_traditionalism'].lv > V.SF.FS['Gender_radicalism'].lv) {
+			V.SF.FS['Gender_radicalism'].vaildOption = 0;
+		}
+
+		if (V.SF.FS['Body_Purism'].lv > V.SF.FS['Transformation_Fetishism'].lv) {
+			V.SF.FS['Transformation_Fetishism'].vaildOption = 0;
+		} else if (V.SF.FS['Transformation_Fetishism'].lv > V.SF.FS['Body_Purism'].lv) {
+			V.SF.FS['Body_Purism'].vaildOption = 0;
+		}
+
+		if (V.SF.FS['Youth_Preferentialism'].lv > V.SF.FS['Maturity_Preferentialism'].lv) {
+			V.SF.FS['Maturity_Preferentialism'].vaildOption = 0;
+		} else if (V.SF.FS['Maturity_Preferentialism'].lv > V.SF.FS['Youth_Preferentialism'].lv) {
+			V.SF.FS['Youth_Preferentialism'].vaildOption = 0;
+		}
+
+		if (V.SF.FS['Slimness_Enthusiasm'].lv > V.SF.FS['Asset_Expansionism'].lv) {
+			V.SF.FS['Asset_Expansionism'].vaildOption = 0;
+		} else if (V.SF.FS['Asset_Expansionism'].lv > V.SF.FS['Slimness_Enthusiasm'].lv) {
+			V.SF.FS['Slimness_Enthusiasm'].vaildOption = 0;
 		}
+
+		let ChosenRevivalism; console.log(ChosenRevivalism);
+		for(let i= 0; i < Revivalisms.length; i++) {
+			if(V.SF.FS[Revivalisms[i]].lv > 0) ChosenRevivalism = V.SF.FS[Revivalisms[i]];
+		} console.log(ChosenRevivalism);
+		if (ChosenRevivalism) for(let i= 0; i < Revivalisms.length; i++) if (V.SF.FS[Revivalisms[i]] !== ChosenRevivalism) V.SF.FS[Revivalisms[i]].vaildOption = 0;
 	}
-	if (V.SF.UC.Assign > 0) {
-		if (V.SF.UC.Assign < 2) {
-			V.SF.UC.num = Math.ceil(S.Troops*0.01);
+
+	function OptionsMenu(selectedFS, fsIncrease = 5, cost = 150000) {
+		let InputText1 = ``, InputText0 = ``;
+		if (fsIncrease > 0) {
+			if (V.SF.FS[selectedFS].lv === 0) { InputText1 += `Foods`;
+			} else if (V.SF.FS[selectedFS].lv === 5) { InputText1 += `Media`;
+			} else if (V.SF.FS[selectedFS].lv === 10) { InputText1 += `Slaves`;
+			} else if (V.SF.FS[selectedFS].lv === 15) { InputText1 += `Slave Processing Cages decorations`;
+			} else if (V.SF.FS[selectedFS].lv === 20) { InputText1 += `Common Area decorations`;
+			} else if (V.SF.FS[selectedFS].lv === 25) { InputText1 += `Barracks decorations`;
+			} else if (V.SF.FS[selectedFS].lv === 30) { InputText1 += `Armory decorations`;
+			} else if (V.SF.FS[selectedFS].lv === 35) { InputText1 += `Command Center decorations`;
+			} else if (V.SF.FS[selectedFS].lv === 40) { InputText1 += `Drug Lab decorations`;
+			} else if (V.SF.FS[selectedFS].lv === 45) { InputText1 += `Personal Items`;
+			} else if (V.SF.FS[selectedFS].lv === 50) { InputText1 += `Drone Bay decorations`;
+			} else if (V.SF.FS[selectedFS].lv === 55) { InputText1 += `Garage decorations`;
+			} else if (V.SF.FS[selectedFS].lv === 60) { InputText1 += `Vehicle modifications`;
+			} else if (V.SF.FS[selectedFS].lv === 65) { InputText1 += `Hangar decorations`;
+			} else if (V.SF.FS[selectedFS].lv === 70) { InputText1 += `Aircraft modifications`;
+			} else if (V.SF.FS[selectedFS].lv === 75) { InputText1 += `Luxuries facilities`;
+			} else if (V.SF.FS[selectedFS].lv === 80) { InputText1 += `Perimeter decorations`;
+			} else if (V.SF.FS[selectedFS].lv === 85) { InputText1 += `Mandate FS-Roleplaying`;
+			} else if (V.SF.FS[selectedFS].lv === 90) { InputText1 += `Talk the Colonel into Compliance`; }
+		}
+
+		if (V.SF.FS[selectedFS].lv === 90) {
+			fsIncrease = 10; cost = 0;
+		} else if (fsIncrease === 0 ||V.SF.FS[selectedFS].lv === 85) {
+			cost = 250000;
+		} else if (V.SF.FS[selectedFS].lv >= 60 &&V.SF.FS[selectedFS].lv < 85) {
+			cost = 200000;
+		}else if (V.SF.FS[selectedFS].lv <= 10) {
+			cost = 50000;
+		}
+
+		switch(selectedFS) {
+			case 'Repopulation':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nRepopulation efforts: focus on mass breeding in order to repopulate the future world.`;
+				break;
+			case 'Eugenics':
+					if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nEugenics: rebuilding society using restrictive breeding programs reserved solely for society's finest. `;
+				break;
+			case 'Gender_radicalism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nGender radicalism: a radical redefinition of gender that identifies powerful people as male, and everyone else as female.`;
+				break;
+			case 'Gender_traditionalism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nGender traditionalism: a societal preference for feminine slaves and support for slave pregnancy. `;
+				break;
+			case 'Paternalism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nPaternalism: a vision of slave improvement, including slaves' health, mental well-being, and education. `;
+				break;
+			case 'Degradationism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nDegradationism: a belief that slaves are not human and should not be treated decently.`;
+				break;
+			case 'Body_Purism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nBody Purism: societal disapproval of implant surgery. `;
+				break;
+			case 'Transformation_Fetishism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nTransformation Fetishism: societal fetishization of implant surgery.`;
+				break;
+			case 'Youth_Preferentialism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nYouth Preferentialism: increased interest in girls just past their majority. `;
+				break;
+			case 'Maturity_Preferentialism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nMaturity Preferentialism: increased interest in mature slaves. `;
+				break;
+			case 'Slimness_Enthusiasm':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nSlimness Enthusiasm: a fashion for slaves with girlish figures.`;
+				break;
+			case 'Asset_Expansionism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nAsset Expansionism: societal hunger for huge assets of whatever origin.`;
+				break;
+			case 'Slave_Pastoralism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nSlave Pastoralism: societal acceptance of slave products like milk.`;
+				break;
+			case 'Physical_Idealism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nPhysical Idealism: societal reverence for the idealized human form, including height, health and muscle.`;
+				break;
+			case 'Hedonistic_Decadence':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nHedonistic Decadence: societal acceptance of overindulgence and immediate gratification. Be it food, drink, sex, drugs or whatever one's desire may be.`;
+				break;
+			case 'Chattel_Religionism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nChattel Religionism: a new strain of religion that emphasizes the slaveholding portions of religious history.`;
+				break;
+			case 'Roman_Revivalism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nRoman Revivalism: a vision of a new Rome.`;
+				break;
+			case 'Aztec_Revivalism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nAztec Revivalism: a vision of a new Aztec Empire.`;
+				break;
+			case 'Egyptian_Revivalism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nEgyptian Revivalism: a vision of a Pharaoh's Egypt.`;
+				break;
+			case 'Edo_Revivalism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nEdo Revivalism: a vision of Edo Japan.`;
+				break;
+			case 'Arabian_Revivalism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nArabian Revivalism: a vision of the Sultanate of old.`;
+				break;
+			case 'Chinese_Revivalism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nChinese Revivalism: a vision of ancient China.`;
+				break;
+			case 'Multiculturalism':
+				if (fsIncrease > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\nMulticulturalism: a commitment to allow your arcology's citizens cultural freedom.`;
+				break;
+		}
+
+		let var0 = 15, var1 = 0; if (V.SF.FS[selectedFS].gift > 0) var1 = 1;
+		if (fsIncrease > 0) {
+			InputText0 += `\n&nbsp;Smuggle in FS-optimized (${V.SF.FS[selectedFS].lv}%): `;
 		} else {
-			V.SF.UC.num = Math.ceil(S.Troops*0.05);
+			var0 = -15; var1 = 1;
+			InputText0 += `\n&nbsp;`;
+			InputText1 += `Buy the Colonel a personal gift `;
 		}
-	}
-	S.Troops -= V.SF.UC.num;
-	if (S.Troops > 200) {
-		Trade += 0.05*(S.Troops/200);
-		Multiplier.troop += S.Troops/200; upkeep += (S.Troops*25)/cost.a;
-		if (V.secExp > 0) {
-			V.authority += 25*(Math.ceil(S.Troops/200)); V.authority += V.SF.Size*10;
-			V.authority = Math.clamp(V.authority, 0, 20000);
+
+		if (V.SF.FS[selectedFS].gift < 1 || (V.SF.FS[selectedFS].lv < 100 && V.SF.FS[selectedFS].vaildOption > 0) ) {
+			const InputText2 = `[[${InputText1}|Firebase][$Cash -= ${cost}, $SF.FS.Tension += ${var0}, $SF.FS.${[selectedFS]}.gift = ${var1}, $SF.FS.${[selectedFS]}.lv += ${fsIncrease}, $SF.FS.upgrade = 1]]`; InputText0 += InputText2;
+			if (fsIncrease > 0) InputText0 += ` (FS acceptance:<span class='green'>+${fsIncrease}%,</span>`;
+			if (cost > 0) if (fsIncrease > 0) InputText0 += ` `; else InputText0 += ` (`; InputText0 += `<span class='red'>${	cashFormat(cost)},</span> `;
+			InputText0 += `tension:`;
+			if (fsIncrease > 0) InputText0 += `<span class='red'>+`; else InputText0 += `<span class='green'>-`;
+			InputText0 += `15%</span>)`;
+			if (fsIncrease === 0 || V.SF.FS[selectedFS].gift > 0 || V.SF.FS[selectedFS].vaildOption < 1) InputText0 += `\n`;
+			text += InputText0;
 		}
 	}
 
-	if (S.Firebase > 0) {
-		FNG += S.Firebase; Trade += 0.5*S.Firebase; Multiplier.unit += 7.5*S.Firebase+2*Math.pow(S.Firebase, 2)*cost.a; upkeep += (95*10+S.Firebase)*cost.b;
-	}
-	if (S.Armoury > 0) {
-		FNG += 2*S.Armoury; Trade += 0.25*S.Armoury; Multiplier.unit += 7.5*S.Armoury+2*Math.pow(S.Armoury, 2)*cost.a; upkeep += (55*S.Armoury)*cost.b;
-	}
-	if (S.Drugs > 0) {
-		FNG += S.Drugs; Trade += 0.25*S.Drugs; Multiplier.unit += 7.5*S.Drugs+2*Math.pow(S.Drugs, 2)*cost.a; upkeep += (35*S.Drugs)*cost.b;
-	}
-	if (S.Firebase >= 1) {
-		if (S.AV > 0) {
-			FNG += S.AV; Trade += 0.25*S.AV; Multiplier.unit += 7.5*S.AV+2*Math.pow(S.AV, 2)*cost.a; upkeep += (89*S.AV)*cost.b;
+	if (input === 'Menu') {
+		if (V.SF.FS.Tension === -1) {
+			text += `<<link "Talk to The Colonel about Future Society integration.">> <<replace "#result0">> \n\n`;
+			text += `You bring up the topic of cultural development with the Colonel, and in doing so, you share your hopes that she might be willing to help you better acquaint the troops with your cultural mores. Her response was less than positive: `;
+			switch(V.SF.Colonel.Core) {
+				case "Kind":
+					text += `"To be honest, I'm not too happy about this idea. Your plans for cultural development are too... Extreme. All we need to focus on is security, raiding, and recruiting. That is what my contract, OUR contract, states in the print. I'm sorry, but innovating upon our culture was not part of our agreement."`;
+					break;
+				case "Cruel":
+					text += `"What the fuck? Didn't we talk about this, like, way back? No 'future society' bullshit! That was our agreement, boss. Do not bother me with this."`;
+					break;
+				case "Brazen":
+					text += `"Sir, I distinctly remember asking you not to bring any social experiments down here. This is a military installation. These are soldiers, sir. Professional contractors, one and all. I don't want them getting distracted by any sort of cosplay craziness. We have a job to do."`;
+					break;
+				case "Shell_Shocked":
+					text += `"Oh no, not this shit again. You know, I had another boss a few years back. Just like you... Slick arcology owner who wanted all of us hired guns to dress and act all weird, like we were in some sort of fucking movie. But we did what he asked, and the arcology burnt to the ground anyway... I knew from then on that Future Societies are bullshit..."`;
+					break;
+				case "Jaded":
+					text += `"Seriously? Why? Your society stuff is stupid. There is a reason that I asked you not to bring that sort of thing down here. We run a tight ship. Its not always the most fun, but it works. Why wear ourselves out playing dress up? That's stupid. Leave us alone."`;
+					break;
+			}
+			text += ` [[Fine|Firebase][$SF.FS.Tension = 0]]\n <</replace>> <</link>>`;
+		} else if (V.SF.FS.Tension < 100) {
+			for (let i = 0; i < FS_OPTIONS.length; i++) {
+				if (V.SF.FS[FS_OPTIONS[i]] === undefined) V.SF.FS[FS_OPTIONS[i]] = {lv:0, vaildOption:1, gift:0};
+			}
+			text += `<<link "Chat with the Troops.">> <<replace "#result0">> \n\n`;
+			text += `You walk past The Colonel and move towards the common area to meet with an exclusive group of her very influential officers that are currently relaxing at their favorite table. These men and women are known for their competence, popularity, and authority within in their respective divisions of the ${V.SF.Lower}, they are hard to replace, and they are always looking to earn more coin; they are the perfect weak link for trickling your Future Society influences down into the Firebase. As the officers make room at their table for you to sit and join them for discussion, you spot The Colonel staring at you from afar, and she does not look happy with you. As you are her employer, she cannot stop you from speaking with her soldiers or moving around as you please, but she can tell that you are up to no good:\nTension: ${V.SF.FS.Tension}%\n`; validityTester();
+			for (let i = 0; i < FS_OPTIONS.length; i++) {
+				if (V.SF.FS[FS_OPTIONS[i]].vaildOption !== 0 && V.SF.FS[FS_OPTIONS[i]].lv < 100) OptionsMenu(FS_OPTIONS[i]);
+				if (V.SF.FS[FS_OPTIONS[i]].gift < 1) OptionsMenu(FS_OPTIONS[i], 0);
+			}
+			text += `<</replace>> <</link>>`;
 		}
-		if (S.TV > 0) {
-			FNG += S.TV; Trade += 0.25*S.TV; Multiplier.unit += 7.5*S.TV+2*Math.pow(S.TV, 2)*cost.a; upkeep += (89*S.TV)*cost.b;
+		return text;
+	} else if (input === 'OptionsFlavourText') { text = ``;
+		if (textDisplay === -1) text += `\n__Colonel's gift(s)__`;
+		if (textDisplay === 5) text += `\n__FS Foods__`;
+		if (textDisplay === 10) text += `\n__FS Media__`;
+		if (textDisplay === 15) text += `\n__FS Slaves__`;
+		if (textDisplay === 20) text += `\n__Slave Processing Cages decorations__`;
+		if (textDisplay === 25) text += `\n__Common Area decorations__`;
+		if (textDisplay === 30) text += `\n__Barracks decorations__`;
+		if (textDisplay === 35) text += `\n__Armory decorations__`;
+		if (textDisplay === 40) text += `\n__Command Center decorations__`;
+		if (textDisplay === 45) text += `\n__Drug Lab decorations__`;
+		if (textDisplay === 50) text += `\n__Personal Items__`;
+		if (textDisplay === 55) text += `\n__Drone Bay decorations__`;
+		if (textDisplay === 60) text += `\n__Garage decorations__`;
+		if (textDisplay === 65) text += `\n__Vehicle modifications__`;
+		if (textDisplay === 70) text += `\n__Hangar modifications__`;
+		if (textDisplay === 75) text += `\n__Aircraft modifications__`;
+		if (textDisplay === 80) text += `\n__Luxuries facilities__`;
+		if (textDisplay === 85) text += `\n__Perimeter decorations__`;
+		if (textDisplay === 90) text += `\n__Mandate FS-Roleplaying__`;
+		if (textDisplay === 100) text += `\n__Colonel's compliance__`; //(default value)
+		for (let i = 0; i < FS_OPTIONS.length; i++) {
+			switch (FS_OPTIONS[i]) {
+				case 'Repopulation':
+				if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nTo ease The Colonel's hostility towards Repopulationism, you have gifted her with a very large and unusually shaped armored Command Vehicle; it is designed to fully support the Colonel herself and all of her Command & Communications needs in the field. Given its one-occupant design, it comes well supported with its global-uplink communications array, onboard super computer, shock and blast resistant interior foam padding, adjustable body harness, extended life support & CBRN protection suites, advanced waste removal systems, and its in-built pregnancy-support systems. Should she ever decide to take to the battlefield whilst hyper pregnant herself, there is no vehicle in the world she would prefer over this one. Despite not yet being hyper-pregnant, she is impressed by how roomy, comfortable, and capable her new Command Vehicle is, despite its large profile. You see her using it quite a bit too, despite her body still being much smaller than the unit was designed for.\n`;
+				if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe troops enjoy their Repopulationist food, which tastes better than the old food, while being completely unaware that they increase semen production and promote ovulation.\n`;
+				if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMagazines and porn featuring hyper pregnant women are widely dispersed among troops to increase their interest in reproduction; many of sex scenes they view now feature heavily pregnant women.\n`;
+				if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere are now some hyper pregnant slaves present. Many of the new recruits are morbidly curious about these beings, and the female recruits ask them many questions whenever they have time.\n`;
+				if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAn hour after reception, all captives with pussies are promptly strapped down to an inspection chair and In-Vitro Fertilized by the doctors, before being dragged off the nearby maternity clinic. Your Firebase's soldiers bid for the privilege of having their sperm used for the fertilization of new captives, and childbirth is a requisite for pussy-slaves to qualify for basic training.\n`;
+				if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere are many double-decker baby carriages found both lined up on the outskirts of the common area and on the sides of several tables, and a good amount of them have small babies in them, awaiting their father or mother's attention. Someday soon, all of the carriages will be full.\n`;
+				if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nOff the side of the barracks lies an empty backroom that has since been repurposed into a proper nursery staffed by caring slaves. Conventional incubators for the newborns of the grunts have been installed, and there is even an advanced incubator installed in the corner to age officers' slave children very rapidly.\n`;
+				if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe Armory has a small and transparent soundproofed chamber off its side where an old soldier nearing retirement teaches basic firearm safety and marksmanship to a groups of very young children born and being raised in the Firebase. Meanwhile, the troopers that come here to retrieve their weapons often name their armament after their own families. Word has it that the current Firebase tradition in effect is to name your service rifle after your firstborn, your sidearm after your second born, and your grenades after your bastards.\n`;
+				if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere is a large soundproofed playpen, built with frosted glass, in the middle of the Command Center. It is filled with all sorts of toys and luxuries for the children kept inside, alongside the trusted and suitably modest hired nannies. Here, the surrounding command and control staff on-shift visit and play with their numerous children within, whenever they are not directing field operations.\n`;
+				if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe drug laboratory has been supplemented by a large pediatric clinic room, where various drugs that foster and enhance healthy physical and mental development in children are researched, developed, tested, and delivered to the progeny of the Firebase.\n`;
+				if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIn the lockers and duffel bags of the majority of Firebase soldiers, you can find a variety of books about parenthood and large household management. You can also find several bundles of baby apparel, as well as a bottle or two of fertility pills, which vary in function depending on the inventory owner's gender.\n`;
+				if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour slave-capture drones have all been covered with tiny loudspeakers that emit messages reassuring the soon-to-be-captives that the drones engage with that their bloodlines will surely be continued in their new lives within your arcology.\n`;
+				if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe garage has an additional machine room installed, but this one has a special purpose; it is a private research facility for the creation, improvement, and installation of newer, better, and more portable incubators. These incubators are cutting edge by global standards, pioneering the complex science of growing existing babies to become bigger, stronger, smarter, more beautiful, and of course, more fertile. All of this special machinery has a purpose, of course; the next generation of skilled mechanics and crewmen is fast approaching.\n`;
+				if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery main battle tank you have features a much broader and taller turret than before, and even more strangely, each turret is egg-shaped. This peculiar shape accommodates an extreme functionality; the multi-pregnancy cockpit - in which tankers not only control their vehicles, but also conceive, deliver, and incubate their own babies. The latest in compact conventional incubators line the interior walls of the turret, and through these, your tanker crews are known to make and sustain all of their newest children throughout their careers in your armour units. It is well known that your tank crews rarely spend much time away from their vehicles for this very reason, and their offspring often choose to become tankers themselves.\n`;
+				if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe hangar is a cavernous place, and when takeoffs and landings are not in progress there are many open spaces for gangs of playing children to run around and play, as well as lots of places to simply stow baby carriages out of the way of important airman crews. At any given time, these open spaces are in heavy use by the unattended children of the airmen and airwomen who are busy at work here. The longest wall of the hangar is also host to a massive and beautiful mural altogether depicting all of the newborn children fathered or mothered by the Firebase's pilots and airmen thus far. While artful, this mural also holds the promise that through this multitude of progeny, the hangar will always have a rich supply of dedicated pilots and service personnel for the foreseeable future.\n`;
+				if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWithin the numerous transport aircraft of the hangar, a unique change can be found; since greater human quantity is a focus and priority of the Firebase, more seating has been carefully welded into the interiors of every passenger section, leading to tighter fits, but bigger troop payloads once the transport aircraft touch down. While it currently is uncomfortable for the troops, once the great many claimed and registered children of the current generation of Firebase troops grow up and seek to follow in their parent's footsteps, these abundant seating arrangements will be downright necessary to transport sufficient amounts of these hordes of hopefuls to and from future battles without leaving too many behind.\n`;
+				if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nNear the barracks, the residents of the Firebase are grateful to have the aid of the All-In-One Parenthood Infirmary. This impressively large and well-equipped facility is staffed with professionals from all over the arcology, and these certified midwives and midmen carry out all the services needed to help this place function as a refuge for personnel during all stages of parenthood; it contains rooms for a fertility clinic, a delivery clinic, a post-natal workshop, and even a high-capacity daycare center.\n`;
+				if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe outside entrance of the Firebase features a modest outdoor playground, complete with jungle gyms, see saws, sandboxes, a few kiddie pools and many other children's amusements. The playground is surrounded by tall barbed wire fences however, and in the center is an imposing guard tower that serves as a useful vantage point for the squad of snipers and spotter assigned to there to keep watch.\n`;
+				if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nBy now, most of the men of the Firebase are fathers, and the vast majority of the slaves present are visibly pregnant. An envied few are enjoying their hyperpregnancies too, as those slaves are given reduced duties and more rest and food out of necessity. WOrth noting is the surprisingly high number of pregnant soldiers and staff members absent from their units; a nice portion of them are enjoying their maternity leave benefits as they wait out their pregnancies or post-natal recoveries in either the Firebase's facilities or the perceived comfort and privacy of your arcology above. Progeny of varying ages can be seen just about anywhere in the Firebase; either in rows of cozy bedding or baby carriages (for the abundance of claimed and properly registered children), or in the stacks of baby cages that once again await transport to the slave orphanages (for the multitude of newborn bastards).\n`;
+				if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nRepopulation: The Colonel has spent considerable savings creating and incubating a slave that looks exactly like a younger version of her (but with that steel collar she's wearing, she'll never fool anyone). The Slave has since been repeatedly fertilized with The Colonel's DNA, since The Colonel has no desire to get pregnant herself. The Slave is on many fertility pills, and is currently kept in a special secluded part of the Firebase to study childrearing skills and wait out her hyper-pregnancy, after which she will train and heal up to recover. Of course, next year The Slave will be fertilized again, to add another batch to the pile...\n`;
+					break;
+				case 'Eugenics':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nTo ease The Colonel's hostility towards Eugenics, you have gifted her with a very rare and prestigious personal vehicle to demonstrate the pedigree of the Elite; you have given The Colonel a custom-built designer Super Car, designed to allow her to drive flawlessly both on-road and off-road in finest aesthetic style, whilst boasting excellent speeds all the same. It also has absurd durability and reliability, able to survive and continue driving even after sustaining direct RPG fire. It boasts a rare lightweight composite material chassis, onboard voice-activated AI personal assistant, advanced ballistics-retardant windows, Kevlar-lined run-flat tires, mine-resistant undercarriage, integrated long-term life support and CBRN protection systems, and even a passenger's seat to bring a friend along. She is floored by how exotic and capable her magnificent new car is. You see her using it quite a bit too, for both joyrides and casual errands around the Free City.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nFor the male soldiers who eat in-house, every meal comes with a free condom. Instead of a condom, female soldiers are instead given a tiny packet of contraceptive pills that are disguised as sweet tasting hard candies.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nFree booklets about the many risks of unprotected sex are available by the stack in most rooms of the Firebase, and a great deal of the porn available to the troops feature attractive performers who use condoms exclusively.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMany of the slaves serving here are sterilized, and those that are not carry condoms on their person at all times.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery new slave is rigorously inspected by 'personnel' experts send by your arcology's Elite. Those few that meet the exacting standards are housed in the superior individual cages in the rear of the slave processing area. Their training will be distinctive.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe common area now includes a small den serving as an office for soldiers interested in taking the arcology's Elite citizenship exams. As you pass by, you actually see one of the newer troopers leaving the den. There is a hopeful look on their face.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe simple staff room next to the storage room of the barracks has been expanded and upgraded to serve as a luxurious 'Officers Club'. This warrior lounge admits only those of adequate rank and status, and comes complete with a private bar, private theatres, a conference room, an indoor garden, and premium, exclusive sex slaves.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA finely groomed coterie of Elite armorers descended from higher society has been assigned to the Firebase on a permanent rotation basis. They work diligently on repainting, retooling, refurbishing, or recalibrating each and every piece of kit, as needed, in between missions while using only the finest of modern instruments and materials. As such, your troops represent your arcology with some of the best kept battle gear in the world.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere is a discreet team of 'personnel experts' to be found in each station of the command center. These scorekeepers are charged with constantly tallying the talents, successes and failures, and genetic traits of the commanders and officers on duty. Those with the best scores at the end of each half-year are recommended for immediate promotion to Elite status by reports that the teams compile. For their own part, they are very steadfast and brutally honest in their work, and seemingly immune to intimidation and bribery.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe drug laboratory has been supplemented with a luxurious rehabilitation clinic, where soldiers and staff who tend to indulge a bit too much and need to regain control of themselves are free to get the help they need to take back their dignity.\n`;
+				if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIn the lockers and duffel bags of the majority of Firebase soldiers, you can find a variety of self-help books and self-improvement literature. You can also find several bundles of fine dress suits and/or dresses, along with some custom tailored casual clothing. There is usually also an assortment of handkerchiefs and other accessories, which vary in quality depending on the inventory's owner.\n`;
+				if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour slave-capture drones have all been covered with tiny loudspeakers that emit messages reassuring the soon-to-be-captives that the drones engage with that their time will now surely be better spent serving their betters within your arcology.\n`;
+				if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe garage has an additional service room installed, but this one has a special purpose; it is a private command facility intended for the creation, improvement, and implementation of newer and better armor formation strategies and maneuvers. These stratagems are cutting edge by global standards, pioneering the complex science of attacking a variety of opposing forces so as to minimize overall casualties and maximize the demoralization, pacification, and capture of enemy personnel.\n`;
+				if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery vehicle crew leader in the Firebase is an Elite, and is thus privy to the contents of these strategy meetings. As such, every vehicle crew has a great deal of power in determining their own armor kits and loadouts to best fit the tactics used for their next mission. Every crewman is handpicked, and every single vehicle unit is unique, with the only similarity being the common ground vehicle chassis types between them. Your tanker crews have been known to snatch victory from the jaws of defeat with the help of their unique and unpredictable individuality and unconventional unit compositions throughout their careers in your armor units. Inspired of these glorious service records, their offspring often choose to become vehicle crewmen themselves.\n`;
+				if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe hangar is a cavernous place, and when takeoffs and landings are not in progress there are many open spaces for gangs of ambitious air force understudies to gather around veterans and teachers and learn more about their craft, as well as lots of places to simply kick back with a good book and await the next summons for a CASEVAC, air assault, or assault support flight mission. At any given time, these open spaces are in heavy use by the the airmen and airwomen who are not busy at work here. The longest wall of the hangar is also host to a massive and beautiful mural altogether depicting all of the renowned aces and flight instructors the Firebase has known throughout its history thus far. While artful, this mural also holds the promise that through this multitude of Elite personnel, the hangar should always have a rich pool of skillful pilots and maintenance personnel for the good of the service.\n`;
+				if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWithin the numerous transport aircraft of the hangar, a unique change can be found; since greater human quality is a focus and priority of the Firebase, the seating for passengers has has been completely replaced by rows of specialized transport pods; every passenger now has a life-support enabled, environmentally-sealed, shock-absorbent, blast-resistant, and fireproof individual pod to climb into and remain inside of until their aircraft arrives at their intended destination. These pods are welded into the interiors of every passenger section, leading to an extreme degree of passenger survivability, even when crashed or shot down by enemy fire, but at the cost of smaller troop payloads once the transport aircraft touch down. While it currently is uncomfortable for the troops, once the proud few, specially bred and registered children of the current generation of Firebase troops grow up and seek to follow in their parent's footsteps, these advanced 'seating' arrangements will be downright necessary to protect the lives of the Firebase's greatest and scarcest asset; it's Elite fighting personnel.\n`;
+				if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nNear the barracks, the residents of the Firebase are grateful to have the aid of the Aristocracy Academy. This impressively large and well-equipped facility is staffed with Elites from all over the arcology, and these impeccable men and women carry out all the services needed to help this place function as a part-time 'Finishing School' for all members of the Firebase; the curriculum specializes in training unkempt soldiers and staff to become proper ladies and gentlemen; how to dress, speak, behave, dance, and handle a wide variety of decidedly civilian scenarios in the classiest manner possible.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe outside entrance of the Firebase features a distinguished officer's academy, complete with a state-of-the-art lecture hall, multipurpose war rooms, combat drill chambers, private lodging cabins, a few sand pits, and many other training necessities. The faculty consists of decorated veteran officers, and throughout the structure there are stationed honor guard sentries assigned to ensure the safety of the Elite officer cadets busily training all around them.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe Firebase is clean and posh; whatever the festivity or facility, the staff and soldiery carry themselves with an air of superior esteem and dignity and are given only the finest of materials and tools to use when performing their duties. However, a strong social strata is clear those proud few who passed the Elite testing make up the overwhelming majority of the higher command staff and officer ranks, whilst those who have not passed the test are mostly their subordinates. Elites of the Firebase sit first, eat first, and get first pickings of battle loot, captives, promotions, and of course, sanctioned breeding partners. Without fail, everyone in the Firebase has taken the Elite test, and without fail, everyone Who flunked it has been issued their complimentary vasectomy or hysterectomy.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEugenics: The Colonel has her 'Right To Breed' Certificate hung up on her pavilion for all to see. She easily passed all of your society's tests, and is now proudly among your Societal Elite. Next to her certificate you also see a framed picture: This is a photograph she took on her tablet not long ago, showing an Elite staring into the camera and holding his bloody nose after he pressed her just a bit too much about having children with him. On her pavilion, You also see a small cardboard box containing some top quality condoms and spermicides. It seems she's enjoying the privilege of having her pick of any attractive youngster she desires on the upper levels.\n`;
+					break;
+				case 'Gender_radicalism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nThe Colonel is a sophisticated sort of woman; the kind that is genuinely skeptical of the crass, fast & loose values of your raunchy Radicalist society. To ease her further into the Radicalist mindset, you've gone all out: You've carved out an unused sidewall of the Firebase to build her a private champagne room, complete with several stripper stages with exotic lighting options, highly trained stripper slaves, an AI DJ, a marble bar counter with barstools, a cozy long sofa with cooler armrests, and plenty of chairs for lap dances. When she first entered this little house room, she also found the extravagant lingerie wardrobe you've had made to her exact measurements, for her off days. And to ensure that her after-hours retreat is extra enjoyable, you have not forgotten to provide her with a specific premium surgery voucher, to grant her a free organ cloning & grafting futanarization procedure at any clinic in the arcology, at any time of her choosing.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMost foods within the Firebase are now laced with minor and tasteless testosterone additives to gradually promote more masculinity in the troops, while the slave food is specially made with estrogen additives to foster femininity. With each meal, troops are also given a tiny plastic vial of lube, for later use.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMuch of the porn and movies seen in the Firebase now feature obvious trannies along with some very convincing traps and sissies. They are all depicted as submitting to powerful characters of both genders, and even the occasional futanari, both sexually and non-sexually.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSome of the slaves you see now sound, appear, and act very effeminate, despite their gender. Your gay male soldiers use these slaves quite a bit, and your female soldiers sometimes even chat with them on occasion.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThanks to the guards, the many dickgirl slaves the Firebase brings in are discreetly offered considerable rewards to sodomize a fellow dickgirl. During daily showers, the slaves are lined up in groups near the shower wall, and given a bar of soap that they are amusedly instructed not to drop.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe pleasure dens have been neatly rearranged into a small grid of sorts, with straight walkways lying neatly between them, and they now feature gaudy red neon lighting alongside clear glass window booths for the androgynous slave whores inside to advertise their mouths, butts, and if available, cocks. It all comes together to form a seedy 'Red Light' district of the Firebase, one amiably reminiscent of its counterparts in some Old World cities.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe storage room of the barracks has become something of a soundproofed strip club. With crates piled high to the sides to make room, a dozen stripper poles, huge speakers, sofas, a DJ booth, and private 'dance' booths come together to dominate the mood. Soldiers and dancers go to and fro, and the room smells strongly of cigarette smoke, alcohol, and ass.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEach rack, shelf, and locker in the armory has an obnoxious neon sign above it indicating its purpose and contents. The metallic walls and flooring are covered in frequently updating, advanced motion picture wallpapers depicting animated illustrations of Firebase troops corralling naked civilians and surrendering soldiers at gunpoint. In these animations, the few captives that are not being prodded into transports are being held down and taken anally. The buttstocks of most rifles and machine guns in the armory are hallowed out to make room for a slim vial of lube to be slotted in too. Just in case.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere is a discreet row of small cubicles near the exit of the command center. Each cubicle has an anonymous but skilled sex slave inside and a square hole and condom dispenser at waist level so that deserving commanders have a place to relieve their loins and stress after a tense mission. They cannot discern any details about the slave on the other side; the gender and looks of their attendant are as unknown to them as they are irrelevant.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere is a funky nightclub room branching out of the drug laboratory, and it is a great place to experience new highs. There is a DJ table with jumbo speakers, and a technicolor disco ball overlooking a dancefloor surrounded by colorful sofas; this is a place where the many partygoers in the Firebase are invited to collectively let loose as they try out the newest recreational substances the drug lab has invented.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nFirebase personnel can often be seen wearing obnoxious makeup, taking futanari-optimized herbal products & supplements, and renting the services of the dolled-up futanari-slaves available.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour flying hunter-killer drones have been modified to entirely resemble the male genitalia, much like giant flying realistic dildoes; the main hull and body of the drone looks like a giant ballsack, whilst the main armament has been redecorated to look like a giant cock. Of course, the tracers these dick-drones fire are also bright white.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nOn the longest wall of the garage is a cartoonish motion picture illustration depicting quite a lively, lurid scene; every fighting vehicle used in the Firebase is depicted on shown with a phallic turret, and they are all shown to be blasting away at enemy vehicles and fortifications with very fast streams of burning hot semen that melt them on contact.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nOf course, due to their immense power, every combat vehicle in the garage is regarded as being 'male', and to celebrate this, every gun barrel and missile launcher that your ground vehicles use have been specially customized to now resemble phalluses. Your dick-shaped cannons now strike as much fear into the enemy as the vehicles they are attached too.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWith its high-ceiling and many light fixtures, the hangar is distinctive in its appearance and function; the conventional overhead lighting has been replaced with provocative neon lighting that makes the work stations below perpetually look like naughty nighttime city streets. And in a way, they are. Chain-smoking tranny hookers streetwalk the hangar's many dark corners, while the bathroom's many stalls are infested with scribbled vulgar writings and well-used gloryholes. A shady looking deli shop and adjacent ATM machine lie near the entrance too, their flickering lights almost daring the staff and pilots of the hangar to enter.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe aircraft themselves have taken on a particular mood too. The individual aircraft are refereed to as 'male' so as to acknowledge their inherent power and superiority on the battlefield. Bright neon lights line interiors of the cockpits and/or passenger sections of each craft. The nose-mounted and door gunner armaments of the various craft have been modified to resemble dicks too, even going to far as to have the ammunition drums attached to their bases resemble ballsacks. Of course, the tracers these phallic weapons fire are colored bright white too, much like semen. Therefore, the enemy units that find themselves facing their wrath are quite literally 'Fucked'.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAdjacent to the command center is the notorious 'sex stage'. Exhibitionism is king here, obviously. Those off-duty employees who have something to prove, something to show off, have a big load to blow, or are just a bit drunk are known to bring their partners and/or slaves to this place to put on a good show for their fellows. The stage itself is just an elevated platform with a few stairs, and atop it is a large but otherwise simple leather couch surrounded by several king sized mattresses to allow for quite a few 'performances' simultaneously. In front of the stage are a few folding chairs, folding tables, and drink coolers, and during busy nights there will be competitions in which bookies pass by to collect bets.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe grounds leading up to the entrance admitting land vehicles are paved over with an impressively thick layer of cement. This cement layering is fortified with numerous concrete barricades and proximity mines, and although your vehicle units know which routes to use to avoid these traps, an invading opponent will not.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere is a powerful trend of redefined sexuality in the Firebase, as many of the soldiers enlisted in your service have come out as openly homosexual, bisexual, or pansexual. Futanari transformation options have taken the public psyche by storm as well, as your gay, lesbian, and bi/pan-sexual personnel have taken the plunge and joined the futanari movement. One can see the results of their surgeries proudly on display during the more frequent public nudity and public sex episodes visible throughout the environment as well. Especially notable is the expression and recognition of gender within the Firebase; every free person who has been sufficiently promoted is regarded as being 'Male' and every slave and rookie soldier or staff member is considered as female, regardless of their actual biology. Finally, the remaining demographic of ardently heterosexual men and women find their refuge in the new fashion for sexy futanari slaves. These slaves are prized and shared for their sexual versatility, with their tits, curves, genitalia, and skills, they thankfully have something for everybody. These juicy innovations form the core of your fluid, lurid cultural norm.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nGender Radicalism: The Colonel is now a Futanari with a hefty package; you see her having fun with it quite often with the slavegirls on her couch. When she's not on her pavilion you see her slaves cleaning off cum stains on the couch and table; it seems she enjoys having her own dick and balls quite a bit.\n`;
+					break;
+				case 'Gender_traditionalism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nThe Colonel is a modern 'liberated' sort of woman; the kind that is genuinely skeptical of old timey priorities like marriage and family. To ease her further into the Fundamentalist mindset, you've gone all out: You've carved out an unused sidewall of the Firebase to build her a private master bedroom, complete with a custom-made double king-sized marital bed, with a programmable memory foam mattress & various in-built massage features. When she first entered the bedroom, she found the deluxe diamond ring set you bought for her and her future spouse. She also saw the extravagant modular wedding gown you've had made to her exact measurements, for her special day. And to ensure her special day is extra special, you have not forgotten to provide her with a specific premium surgery voucher, to grant her a free virginity restoration procedure at any clinic in the arcology, at any time of her choosing.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe meals served in the Firebase come with free chocolates and other sweet natural aphrodisiacs to put the troops in the mood to make love with the submissive feminine slaves all around them\n.`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nPosters pinned-up all around the Firebase depict gorgeous naked women in tantalizing poses, and sleek porn-filled tablets featuring lots of deep vaginal creampies are passed around everywhere. The female soldiers have been issued free paperback copies of old romantic classics as well.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSome of the slaves you see are very feminine, which matches their beautifully natural vaginas and the pregnant bellies that some of them have. All of these slaves are sporting demure lipstick and neatly combed hair.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nUniforms are issued to the slaves present, in which slave with pussies wear simple utilitarian prison dresses, whereas slaves with dicks wear simple utilitarian jumpsuits. Every cage contains a Free Cities graphic novel omnibus featuring the sexually explicit chronicles of a Gender Fundamentalist slave.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe bars in the common area have been refurbished with fine wooden counters, barstools, and cozy couches for drunks, and are stocked with a continuous supply of some of the world's finest stiff drinks, all in remembrance of manly tradition. On request the slavegirls wear bunny outfits or classic Old World barmaid getups along with lipstick to maximize their appeal. They also give handjobs on demand to the soldiers while they drink, and sometimes flash soldiers that walk by if business is slow.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe dormitories are given delicate care, as a small legion of slave maids service the dorms at all times. Housed soldiers no longer need to clean up after themselves at all, and when the slave-maids aren't making the beds, they are warming them.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMost stations of the armory are now staffed with a wide variety of topless females, clad only in boots and pants fatigues. However, these are not slaves, but rather qualified maintenance specialists and quartermasters who have been sufficiently compensated for their now-mandatory lack of dress. Their varied sweated-sheened tits sway and bob freely as they type reports, clean weapon systems, repair armor rigs, restock racks & shelves, and carry ammunition cans to and fro.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe command center has been furnished much like a bachelor's mansion; a mini bar, plush spinning chairs and leather sofas, wallscreen TVs mounted to walls and displaying high definition erotica, and most of all, lots of bunny suit-clad slavegirls going to and fro. The slavegirls are giving out soft drinks and blowjobs in equal measure while the commanders run their ops, and even now you can see one kneeling between the legs of a sitting logistics officer as he reviews supply shipment reports for this month.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere is a classy condominium branching out of the drug laboratory, and it is a great place to experience new delights. There is a small kitchen with a few chefs and waitresses, and a wall-sized wallscreen TV overlooking a dining room surrounded by discreet bedrooms; this is a place where the many romantics of the Firebase are invited to enjoy dinner and a movie as they and their dates sample the newest recreational substances the drug lab has invented.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nFirebase personnel can often be seen wearing proper pajama sets or negligees to bed, purchasing flowers & gifts for their crush or significant other, and renting the services of the beautified female-slaves available.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour flying pack-mule drones have been modified to entirely resemble the female genitalia, much like giant flying realistic fleshlights; the main hull and body of the drone looks like a giant fleshy vagina, such that the soldiers that these drones fly into combat with can simply reach inside the flappy drone-pussy and pull out additional magazines, grenades, medkits, rations, or whatever else the pussy-drone might have been packed with.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nOn the longest wall of the garage is a cartoonish motion picture illustration depicting quite a lovely, lavish scene; every fighting vehicle used in the Firebase is depicted as being on parade, streaming past the arcology in precise rows of vehicles that form an endless tide of disciplined armor units obviously on their way to their next victory. Flanking the armor columns are a long crowd of women throwing colorful flowers of all kinds\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour crewmen feel very attached to the vehicles they have been given charge of, as as such every single vehicle is the garage has a feminine name and is affectionately regarded as 'female'. To celebrate this, every vehicle hull has been decorated with a beautiful high-resolution pin-up illustration of a unique, sexy, sassy, scantily-clad lady with her name (and thus that vehicle's name) drawn right next to her.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWith its high-ceiling and many light fixtures, the hangar is distinctive in its appearance and function; the conventional overhead lighting has been replaced with elegant chandelier lighting that makes the work stations below perpetually look like tables at a classy gala. And in a way, they are. Well-stocked juice bars occupy the hangar's busier corners, while the bathroom's many stalls are kept spotless by a well-staffed janitorial outfit. An inviting but expensive deli-grocery shop and adjacent ATM machine lie near the entrance too, their clean presentation almost beckoning to the staff and pilots of the hangar to enter.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe aircraft themselves have taken on a particular mood too. The individual aircraft are referred to as 'female' so as to acknowledge their beauty and their subservience to the will of their operators. High Resolution colorful pin-up girls adorn the exteriors of every aircraft in use via advanced and interactive motion illustration wallpapers, with every individual aircraft having a bodacious, responsive, and unique mascot character representing it. Therefore, some of the enemy units that find themselves targeting your aircraft at close range are sometimes reluctant to open fire upon them, not desiring to destroy such lovely ladies.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAdjacent to the command center is the esteemed 'wedding hall'. Matrimony makes its home here. Those off-duty employees who are ready to make their love and commitment to their partners official are known to bring their partners and/or slaves to this place to say their vows in the sight of their fellows. The stage itself is just an elevated platform flanked by majestic arches, but atop it is a large pulpit from which the ordained officer guides the soon-to-be newlyweds through the wedding ceremony. In front of the stage are a few polished chairs and ornately clothed tables. During actual wedding nights the larger of the tables are used for holding drinks, foods, and wedding cake, and during such events there will be all manner of jovial wedding games held.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe grounds leading up to the entrance admitting land vehicles are paved over with an impressively thick layer of sand. This sandy layering is fortified with numerous heavy tank traps, huge boulders, and camouflaged pillboxes, and although your vehicle units have nothing to fear from these obstacles, an invading opponent will not.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere is a powerful trend of tradition and conservatism in the Firebase, as many of the men and women enlisted in your service have tied the knot and taken the plunge into marriage, far earlier than their closest comrades had previously assumed they would. As sexual exclusivity and romantic attachment have grown, public nudity and public sex between soldiers have been on the decline. A stronger priority has been placed on couples' privacy as a result. Finally, more and more army wives are finding themselves pregnant, and some have already given birth. The children of Firebase couples are prized and raised by the entire community. Their entire childhood are a diversified, 'slow burn' form of training. By the time they are adolescents, every child will have has an excellent physical, vocational, and military education involving dozens of seasoned mentors. By the time they are adults, they've gotten a damn god sexual education too, and several enviable job prospects in both the Firebase and the wider arcology. This familial innovation you've introduced has formed a core part of life in the firebase community.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nGender Fundamentalism: The Colonel has adopted 3 very young children that you often see her playing with. She's decided to give motherhood a shot, and surprisingly she even keeps a few dresses in her collection for when she goes on outings with them. The children are all named after different people she's deserted her old world army with in the past. They idolize their mother and try to imitate her as much as they can. Her soldiers know to give them a wide berth, and to do their part in keeping them out of the many unsavory and hazardous parts of The Firebase.\n`;
+					break;
+				case 'Body_Purism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nA powerful experimental serum has been synthesized within your arcology recently, and it has been making waves in the private medical circles of your domain for its vast effects in improving test subjects' natural immuno-responsiveness, bone & muscle density, cellular regeneration, cognition, and lifespan. Still very much a prototype, and still far too expensive for any sort of widespread use, it is available only in small, specially ordered quantities. One such quantity has been gifted to the Colonel, via a sealed serum syringe package. If, one day, The Colonel decides that she trusts you enough to inject the battery of syringes into her bloodstream, she will experience a complete bodily rejuvenation, free from any kind of surgery or artificial modification. At any rate, the Colonel was genuinely impressed that you and your people believe in the Purism ideal enough to make an actual medical innovation based on it.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAll of the food is rigorously examined before passing into the Firebase for preparation. It is not even kept in storage for long, often being cooked and served within hours of arriving, for optimal freshness. It is all healthy too, with plentiful salads, fruits, and vegetables served at every turn.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nFree Cities' premium Wellness magazines featuring both articles about health & purity and porn spreads depicting spotless & gleaming all-natural models are freely available in magazine racks throughout the Firebase via monthly delivery.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA significant portion of the slaves in the Firebase have very clean, pure skin, and look reasonably healthy. None of these slaves have breast, butt, or lip implants of any kind.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe slave processing cages have an obsession with cleanliness. Slaves are made to drink large amounts of thoroughly filtered water everyday, and each morning, every captive interred here is given a soapy sponge and a hand towel and made to make the facility spotless, at gunpoint. Purity in all forms is the pervasive reality here.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMassive air filtration machines are installed into the walls of the Firebase to help purify the area in every way possible. The effects are felt everywhere, but are most clearly felt in the common area, where the air takes on a whole new level of crispness and clarity. It feels very pleasant to be here, and the new recruits often comment on it as they sip water drawn from the new alkaline water dispensers located throughout the commons alongside the new indoor plants. The filters and new water dispensers are all surrounded by lush, slave-tended flora as well, giving the Firebase a luxuriant appearance altogether.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe barracks has had an additional wing constructed, with the express purpose of hosting several dozen compact private massage rooms for deserving soldiers. Each room is well stocked and soundproofed for total serenity, and the massage tables have a hole near their centers that allow them to double as 'milking' tables too.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nTranquil, is this armory. Soothing live music is being played by a professional musician in the background while a platoon files in to get equipped, setting them into a peaceful mindset before they head off to fight their little war. Meanwhile, a set of powerful but pleasant calming incense sticks burn in each corner of the place, slowly but forcefully easing their anxiety. Next to the central quartermaster's booth are a group of large meditation mats for several simultaneous squad-level group mediation sessions. It all comes together to create an optimal environment, free of all toxicity and fear.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe command center is verdant and clean. Potted plants and flowerbeds occupy quite a bit of the floorspace, the area has a lovely smell overall. There is even a modest micro water fountain set up on the coffee table. Where appropriate, the equipment and surfaces of the area are painted in calming green, brown, and blue hues as well, solidifying the focus on nature. The ceiling above has a stunning nighttime sky painting as well, giving the aesthetic impression that the command center is actually part of the great outdoors.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIn the 'clinical trials chamber' of the drug laboratory facility, there are many man-sized pits that comprise the floors of the space; when a new drug variant is ready to be tested, the pits are filled with the drug substance, and then slaves are lowered slowly into them. Every detail of the slaves' vitals are monitored closely for every hour they spend in the pits, and every slave that manages to emerge from their pit is a new creation indeed.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour soldiers and staff within the Firebase are very careful about their health and consumption, and they are very keen on purchasing, refrigerating, and later consuming a myriad of healthy foods, detoxifying herbs, lots of flavored and mineral waters, and handmade skin creams.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour combat-drones look like flying plants, with mud and thin-topsoil integrated onto their frames, and heavy foliage, moss, or seaweed pinned down onto them. This allows the drones to integrate better into many different terrain types in preparation for ambushes or assaults.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIt is worth noting that the garage has taken on many characteristics of a sandy beach, harkening back to the amphibious landings of times both past and present. The entire garage floor is covered in a thick blanket of sand, complete with small sand dunes, patches of marram grass, rocky outcroppings, an enormous overhead fluorescent light fixture to mimic the sun, and even an artificial breeze from powerful new air filtration systems. Work stations are protectively sectioned off with hand-crafted wooden palisades, and vehicles are tended to on raised wooden platforms meant to help keep the sand out of the machinery. Meanwhile tiny communities of crabs, lobsters, frogs, and other natural amphibians gravitate towards the small refillable pool installed next to the far wall of the building.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWithin the garage, extreme attention to detail is paid to the subject of camouflage. Every ground vehicle is camouflaged extremely well, with a hefty reserve supply of custom handmade and semi-adhesive frost, mud, foliage, rubble, and many other forms of concealment kept on stock at all times to tailor the appearance of each vehicle precisely to the mission. The staff of the the garage are some of the best vehicle camouflage outfitters in the world, and your ground vehicles are often not spotted by enemy combatants until it is far too late.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe floor of the hangar is a thick bed of rich, moist brown soil, complete with its own grass patches, stone footpaths, and flowerbeds. It is a lively place, and spaces that are not filled with clean and filtered air are rather filled with the smell of burning hemp and soft melodic music. The hangar's breakroom has become a yoga room, complete with hired instructors, and the various workstations often feature little potted plants that have been given pet names by the staff. Moss and vines are covering many of the walls in the hangar, with overgrowth being regularly pruned by on-slaves when there are no other duties to perform. The same can be said for the weeds that frequently crop up throughout the facility.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe aircraft deployed from the garage are distinguished for their eco-friendliness. They are maintained and flown with a very low carbon footprint and heat signature thanks to the domestically-made custom fuels and engine systems employed to keep the Firebase's impact on the natural environment minimal. Your air force is proud to do all that it can to preserve the FIELD in BATTLEFIELD.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWhereas some peoples make their camps within the forest, your people have their forest within their camp. The lush botanical gardens grow proudly before the entrance of the common area, and they are sight of behold. Trees, bushes, and flowers in a dizzying myriad of colors and sizes are arranged here with all the ingenuity of the Firebase's precise and dedicated gardeners and floral hobbyists, who regularly volunteer to prune, water, and weed the garden and supply the special nutrients needed to sustain the plants without authentic sunlight. This fan-sourced plant project is a fine testament to the beauty of nature's organic design.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIn the entrance grounds to the arcology's Firebase, there is a peaceful-looking miniature forest (or jungle) to be found. However, for an invading opponent, this place will be anything but serene. The few patches of tall grass or thick mud, rows of flowery bushes, lively swamps, or alcoves of blossoming trees may contain anything from punji traps, to tripwire explosives, to natural predators, to hidden gunner nests. Departing or returning troops can safely pass using the explosives-rigged, sniper-guarded roadway the circumvents all of this, but your enemies have no such luck.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nHealth and Purity have taken on special importance in the Firebase subculture. Everyone here has had their bodies picked clean of implant s and tattoos, but the purity does not stop there. The troops have abandoned many substances considered unnatural, and they only consume alcohols, tobaccos, and opiates that are homegrown and processed within the Firebase under the very strictest of hygienic conditions. Even more impressive are the sub-contracted flash-cloning modules employed within the Firebase's intensive care facilities; great pains are taken to replace battle-damaged body parts with vat-grown copies as needed. Longevity and Harmony seem to be strong personal priorities for most individuals here, and this is visible in the way they treat themselves and their environment.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nBody Purism: The Colonel is looking a lot fresher; a mixture of curatives, moisturizers, and tattoo removal can do wonders, apparently. She seems to be taking much better care of herself too. You do not see her drinking or drugging as frequently as she used to, and she even uses a lot more 'All Natural' products than before.\n`;
+					break;
+				case 'Transformation_Fetishism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nAn extensive and revolutionary cybernetic modification scheme has been perfected within your arcology recently, and it has been making waves in the private medical circles of your domain for the vast effectiveness of its implanted bio-synthetic bone & muscle reinforcement weaves, and ubiquitous subdermal nanite colonies for enhanced cellular regeneration, immuno-response, cognition, and lifespan. Utilizing extreme bio-mechanical prototypes, and being far too expensive for widespread use, it is offered only to select VIP's... Such as the Colonel, who has already been gifted a paperback manual detailing exactly what her slot-reserved surgery will entail and provide. If, one day, The Colonel decides that she trusts you enough to consent to the procedure, she will experience a complete bodily transformation, free from many weaknesses of flesh.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nDishes served in the Firebase all come with thoroughly processed meat, and vending machines containing all manner of processed snack foods are widely available.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere are new magazines and tablets full of pornography being given out and traded between troops in the Firebase, and they are loaded with scenes of surgery-enhanced bimbos being used and enjoyed in all manner of ways.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA significant portion of the slaves in the Firebase have breast, butt, or lip implants of varying sizes, giving their assets a very well-rounded, almost uniform look.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEach captive brought to the cages is 'initiated' by surgery: Facial surgeries and basic implants are an experience every slave endures, and the mirrors in every Cage do not allow the inmates to forget what has been given to them.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA small den serves as a compact plastic surgery clinic off the side of the common area. Its reputable surgeon frequently speaks to your troops about her services for both male and female clients, and often tells stories to anyone interested about how she successfully pulled off some of the more extreme procedures the Free Cities are now notorious for.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe bunkbeds of the dormitories have undergone a radical change: Each on now has two 'lite' tanning bed roof attachments, which can be pulled over the top or bottom bunk to gradually change the user's skin to whatever color they desire whilst they sleep, while also providing extra warmth. Quite a few of your soldiers now sleep naked and eschew the use of blankets. They have interesting new skin colors as well.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe tables, chairs, doors, booths, racks, shelves, lockers, and maintenance utensils of the armory are made from the latest in durable lightweight poly-plastic and composite metallic materials, giving the armory a very post-modern and space age feel. Every surface and door features small motion-sensitive adjustable lights too, illuminating every inch of the armory and forcing troops to take note of the small details in their war gear. As a final touch, the female staff members assigned to the armory have been given obvious breast implants. This is an armory of the future.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe command center seems to have such a harsh mechanization focus that it comes just short of OSHA-compliance violations. Thick and high voltage power cords, electrical wires, and reinforced fiber-optic cables are ran and draped all over the command center's floors, walls, and tables. They are only kept in line by dozens of channel raceway mounts placed throughout. Large and powerful new heavy computing and printing machinery can be seen and heard running intensively all around as the staff put them to constant use.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIn the 'clinical trials chamber' of the drug laboratory facility, there are many man-sized mechanical sarcophagus pods that line the walls of the space; when a new drug variant is ready to be tested, the sarcophagi pods are loaded with drug substance, and then slaves are quickly loaded into them. Every detail of the slaves' vitals are monitored closely for every hour they spend in the pods, and every slave that manages to emerge from their pod is a new creation indeed.\n`;
+				if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour soldiers and staff within the Firebase are very liberal about their appearance and substance usage, and they are very keen on researching, purchasing, and later using a myriad of body scent additives, synthetic 'designer drink' concoctions, skin and hair dyes, and collapsible handheld electronics.\n`;
+				if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour combat-drones look like flying mirrors, with digitally-rendered reflective panels integrated onto their frames, therefore enabling them to better replicate the many different environments they will find themselves in, in preparation for ambushes or assaults.\n`;
+				if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIt is worth noting that the garage has taken on many characteristics of an amphibious assault ship's well deck, harkening back to the amphibious landings of times both past and present. The entire garage floor is covered in a thick layer of water, complete with hoses and drains, shallow water fishes, rows of standardized fluorescent lighting, and even a powerful breeze that is felt every time the main entrance 'ramp' of the 'well deck' is lowered to allow entry or exit for both personnel and vehicles. Work stations are sectioned off with pre-fabricated synthetic walls, and vehicles are tended to on heavy hydraulic platforms that can be raised at will to assist crews in their repairs. Meanwhile, captured crabs, lobsters, frogs, and other natural amphibians are grilled regularly at the community barbeque that is set up at the far wall of the facility.\n`;
+				if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWithin the garage, extreme attention to detail is paid to the subject of versatility. Every ground vehicle is fitted with a hefty retractable amphibian kit complete with floatation and propulsion mounts, wide tracks or tires to enable operation in artic and swamp environments, and a remarkable degree of automation. These expensive augmentations are made to allow each vehicle to rapidly adapt to just about any mission requirement in the field, and transition from one combat environment to another without losing operational momentum.\n`;
+				if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe floor of the hangar is a thin arrangement of pre-fabricated composite plastics, complete with its own metal grates, LED-illuminated footpaths, and 3D holographic display tables to scan and analyze debriefed aircraft and indicate damaged and worn out components. It is a controlled environment, and there are few spaces that are not flooded with screen lights from one information display or another. The hangar's breakroom has become an additional flight control room, complete with additional specialists that help coordinate landing and repair efforts and maximize overall efficiency. Meanwhile, primitive nanite colonies originally intended for autonomous wall and floor repair are now covering many of the walls in the hangar, with nanite overgrowths that frequently crop up throughout the facility being regularly pruned by dedicated teams of search-and-destroy slaves.\n`;
+				if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe aircraft deployed from the garage are distinguished for their massive energy outputs. They are maintained and flown with a very high carbon footprint and heat signature thanks to the domestically-made custom nuclear-powered engine systems employed to ensure that the Firebase's air power is extremely capable. Your air force is proud to do all that it can to channel the FIRE in FIREBASE.\n`;
+				if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWhereas some peoples make changes to the technology they use, your people have their technology make changes to them. The brightly backlit transformation tower stands arrogantly before the entrance of the common area, and it is a sight of behold. Inside the tower, Robotic arms featuring finely-calibrated surgical instruments and independent AI operational systems whirr overhead in a dizzying variety. Those who enter always leave exactly one hour later, physically transformed in some manner, be it minor or major. The Firebase's precise and dedicated machinists and hacker hobbyists regularly volunteer to mod, update, and debug the devices here and keep it supplied with all the synthetic parts needed to continue making modifications to those who enter. This fan-sourced mathematical masterpiece a fine testament to the wonders of artificial design.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIn the entrance grounds to the arcology's Firebase, there is a rustic miniature township to be found, complete with paved roads, brick houses, and even its own town hall. However, for an invading opponent, this place will be anything but welcoming. The few 'houses', 'shops', 'diners', and other structures feature anything from explosives-rigged cars parked outside, to hidden snipers, to hidden anti tank teams. Departing or returning troops can safely pass using the explosives-rigged, sniper-guarded roadway the circumvents all of this, but your enemies have no such luck.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEndurance and Adaptability have taken on special importance in the Firebase subculture. Everyone here has taken on some level of personal enhancement; Faces and other body parts surgically lifted, breasts and buts shaped up with implants for the ladies, and plenty of personalized tattoos abound. 3D printed designer foods, lab-concocted superdrinks, and experimental nanotech drugs are not only a fashion, but a focus, as the punks of the Firebase race towards the future. Even more impressive are the sub-contracted bionic installation modules employed within the Firebase's intensive care facilities; great pains are taken to replace battle-damaged body parts with domestically-manufactured replacements as needed. Evolution and Progress seem to be strong personal priorities for most individuals here, and this can be seen in the way they push themselves to become... More.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nTransformation Fetishism: The Colonel is sporting some very small breast and butt implants, just enough to undo some of the recent sagging she's been secretly bothered by. When she's not properly dressed, your trained eye can detect that her tits and ass are just a little too round and perfect nowadays to be fully natural. Nevertheless, she's happier with the way she looks now, and so are you.\n`;
+					break;
+				case 'Youth_Preferentialism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nYour influence has long given you an inside track on the bleeding edge developments in the world of Youth Enthusiast pharmaceuticals, and this is exactly the reason you've been able to get and give out two small vials of the lauded 'Benjamin Serums'. The first vial of the powerful Benjamin Serum, when metabolized, will radically reverse the aging processes of the body, so as to gradually halt and then continuously reverse all of the effects of aging within the user. After enough years have passed, and the user is on the verge of regressing back towards adolescence or even childhood, they can ingest the second vial to restore their body back to normal functioning. Surprisingly enough, The Colonel has already taken the first vial, and is already looking a bit younger for it. You eagerly await the passing of years, so as to see just how far back The Colonel will allow her age to regress. You've always wanted to see what she looked like as a younger woman.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe food choices are very novel and colorful nowadays, with lively menu options being served daily, and changing frequently. In general, it all looks and sounds very fun to eat, and some of the foods are quite sweet.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA good amount of the media being shown or enjoyed in the Firebase features predominately youthful casts and a great deal of attention to recent memes and pop culture. Some of the porn even features participants of questionable age.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nPlenty of the slaves visible look to be on the younger side, and have youthful energy. They like to chatter amongst themselves in their scant time off-duty.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nNewcomers to the slave cages are strapped to a nearby inspection chair, and have their holes examined by a doctor for virginities. Those found wanting are surgically corrected. Each cage features a vibrant Free Cities comic omnibus that makes light of the daily realities of slavery.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe tables of the common area and walls of its numerous dens are now all painted with glorious graffiti, handcrafted through costly commission by your arcology's most creative young artists. The colorful designs make playful parodies of both the activities that go on at each respective surface, and the stationed slaves providing these services. Some of it even spoofs the troops themselves, all in good humor. One of the artists was even brave enough to draw a parody of The Colonel herself, and he even drew it on a table near her pavilion.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAn unused backroom is now the new 'Gameroom' of the barracks. Rows of gaming stands and arcade machines bring joyful noise to the Barracks as troops flock here to spend their off time on surprisingly innocent fun. The only slaves here are the numerous attendants staffing the concessions stands in the corner, giving out warm baked treats and sweets to those that approach.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA wide variety of music videos are played from the large wallscreen televisions atop the weapons, ammunitions, and amour racks of the armory. Across from each of them is a weathered but surprisingly comfortable plush sofa, where soldiers sip sodas or beers and smoke light sundries while they finish preparing their weapons and armor. The lockers and walls of the armory are also painted with some graffiti designs painted onto them by the troops themselves.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWhere appropriate, the command center has been repainted from the ground up with bright neon colors, and some tables and chairs have even been redecorated with funky and exotic graffiti. On a large operations table, you see lots of painted 28mm miniatures sprawled out over a tactical map, obviously representing friendly and opposing forces the troops may soon encounter. Oddly enough, on some days there are also some potato chips, dice, rulers, and even 'rulebooks' on this operations table as well.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIn the bright lobby of the drug laboratory facility, there is massive fountain bristling with incredibly clear, vibrant waters. Oddly enough, visitors are encouraged to strip down and enter the fountain directly, to just soak their whole bodies in it for a time. Even more oddly than this is the fact that those that emerge from the fountain report miraculously having smoother skin, fewer pains, better vision, and more energy. Has the drug laboratory mastered the secrets of youth?\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThroughout each day, one is very likely to see the military population of the Firebase making casual and frequent use of energy drinks, candies, portable audio 'pills', aerosol graffiti cans, roller-skating wheel-heels in their shoes and boots, and long-term age-reversal treatments.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour support-drones are covered in graffiti, with myriad messages, patterns, and designs painted in every imaginable color and combination. When stealth is required, these flying canvasses are simply covered in miniature camo nets to subdue the intense color.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere is an undercurrent of "artistry" prevailing in the garage. Graffiti is everywhere here; on the walls, on the tables, and even on the many mechanical tools and utensils applied in daily use. At the end of every month, each of the walls are cleared out with white paint make space for new creations. Each garage staff member employed here has worked both their technical and aesthetic artistry on various parts of both the garage and several of the vehicles it contains, with the use of various paints, aerosols, chalks, and stencils that the garage keeps impressive stocks of. Also, any piece of furniture or gear that is even slightly damaged or out of date is replaced immediately too, meaning that the garage always looks 'new'. Of course, loud music is on play throughout the garage, and every duty station has a different musician's works on their speakers. Parties are usually held whenever a new shipment of replacement vehicles arrives, or better yet, a new shipment of high-tech acquisitions meant to replace older vehicle platforms. So-called 'Legacy' systems are scorned for their advanced age, and both the maintenance crews and the vehicle crews regularly draw lots to determine who will operate on them next.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nRemarkably, artful graffiti is visible upon the surfaces of both the interior and exterior of every ground vehicle the garage has, with subject matter varying wildly from artist to artist. Crews and passengers are treated to the sight of the mechanics' handiwork every time they enter their vehicles. For combat operations where stealth and discretion are required, these are obscured by whatever camouflage materials are chosen, but in most raids and assaults these bright and daring prints are on proud display - and are often the last thing opposing forces ever see.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe hangar is a pretty fun place to be most of the time. The strapping young flight technicians and pilots are very ambitious, and work hard to showcase their skills to their peers and superiors and get promoted so that they can start making more money. Of course, said money is spent on better gadgets and apparel; maintenance crews like to buy shiny and newly released repair implements to use and show off on the job, while pilots like to get their hands on ever-better flight suits and amenities to affix into their aircraft's cockpit. Every pilot like to personalize their cockpit, treating it as a second home.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nFirebase aircraft have a feature that many other aircraft do not: All over the front of each aircraft are bright and boldly written taunts enthusiastically spray-painted on by the pilot of that aircraft. Of course, these 'messages' are transparent from inside the craft and do not impede the pilot's field of vision in any way, but to your enemies, these juvenile taunts are often the last thing they see before they die.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAn impressive skating rink hs been built just next to the common area, complete with grindable metal railings, risky ramps, and broad curving slopes. Here soldiers and staff of all ages and stripes are welcome to give their all and spend time to practice or invent some new moves and cool tricks on their skateboards, roller skates, or wheel-heels. In addition to being a popular hangout spot, this place is an important proving ground of sorts, where social hierarchies are partially determined as visitors compete are prove themselves in yet another area of expertise\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIn the territory surrounding the Free City itself, there are several scenic and very innocent-looking campsites established, complete with folding chairs & tables, food & drink coolers, colorful tents, clotheslines, and port-a-johns. They sometimes even have impromptu campfires if the Firebase scouts occupying them have returned from their field exercises. These campsites act as listening posts that monitor incoming and outgoing traffic concerning the arcology, and if attacked, they can be abandoned and later replaced very quickly and easily.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe soldiers of the Firebase are generally both idealistic and hot blooded; always looking for a fight, with each soldier very assured of their own 'awesomeness'. Gossip and constant comparison between troopers is rife, a every soldier is vested in their interest in the latest 'tacti-cool' fashions, footwear, and equipment. Younger soldiers are prized for their mileage and potential, and given special care and attention when they first enlist. Those youngsters that show any special talent or unique ability are promoted and fast tracked as much as feasibly possible.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYouth Preferentialism: The Colonel looks much younger thanks to some advanced age treatment therapy she's gotten. She's got a bit more bounce in her step too, if that's possible. Everyday she's proving that her age is just a number.\n`;
+					break;
+				case 'Maturity_Preferentialism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nYour influence has long given you an inside track on the archeological discoveries made by the excavation and salvage teams that now dig up and study the Free Cities' very first [failed] arcologies. This is the very reason why you've been able to finally verify and procure a precious rare vial of the vaunted 'Methuselah Serum'. This recovered vial of the powerful Methuselah Serum, when metabolized, will radically slacken and prolong the natural aging processes of the body, so as to gradually and tremendously increase the overall lifespan of the user and preserve their physical and mental viability. Only after enough decades have passed will the user finally begin showing wrinkles, greyer hairs, and other signs of advanced aging as their body starts fight back to restore normal functioning. Surprisingly enough, The Colonel has already taken the serum, and is already looking forward to living a much longer, fuller life because of it. You now know what she will look like as an 'old' woman; not much different than what she looks like right now.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe food choices available are very broad, with accommodations made for the preparation of a very wide variety of classic dishes, all holdovers from the Old World or 'Free Cities originals' salvaged from the glory days of the first arcologies.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA lot of the porn, movies, games, and graphic novels distributed here seem to focus on magnificent MILFs or DILFs as either protagonists, love interests, or pure fanservice characters.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nPlenty of the slaves visible look to be on the older side, and have a caution and sense of tact that is borne of their maturity. Many seem rather reflective.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe slave processing cages have the weight of history imposed upon them. Every new inmate is made to engrave their name once onto a wall or floorspace of their cage. When new captives come to inhabit the cage weeks later, they only see the evidence of the many slaves who were once where they are now, before being made to add their own names to that body of evidence and thereby join the annals of your Firebase's history.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe common area has been remade in grand style, now resembling a great hall from the noble medieval houses of old. The tables and chairs of the common area are now made from finely sculpted wood, with the borders of the common area now being marked by grand wooden arches that extend to the ceiling, masquerading as additional supports. The drink dispensers found here have been remodeled to look like large wooden kegs, and even the very dens that provide numerous services to the men and women here have been rebuilt with stone walls and thatched roofs instead of the usual pre-fabricated materials.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAn unused backroom is now the new 'Library' of the Barracks. Rows of bookshelves and reading tables bring quiet enlightenment to the Barracks as troops flock here to spend their off time on surprisingly cerebral pursuits. The only slaves here are the numerous attendants making rounds throughout the room, either tending the shelves or lending their assistance in finding certain books, as needed.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe armory has quite a few traditional touches; many of the shelves and closets here are made of hard and thick wood, and the central quartermaster booth has stacks of ordinance papers on file; upon leaving the armory, each soldier must sign off on every piece of equipment they are leaving with. However, they now do so with simple pen and paper rather than digital inputs. On the walls, there are colorfully illustrated posters displaying public service advisory messages for the benefit of the troops about to take to the field. The weapons and armors themselves have a bit of history behind them; each and every weapon and armor piece has its own unique name, given by its original owner, and the names of both every former user and every battle its ever served in are engraved somewhere upon it, giving each piece an almost legendary stature after enough time has passed.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe command center has an almost rustic look. Most of the original chairs and tables have been replaced with polished wooden variants, and the flooring and support columns have been given full wooden paneling as well to complete the look. The noteworthy details of each and every mission directed here are recorded by slave-scribes in large hardcover paper tomes that are kept in a section of the command center's huge bookshelf, adjacent to the other sections that contain many informative physical books written by former military officers, great leaders, and war heroes over the ages.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe darkened lobby of the drug laboratory facility is a great hall, built entirely from stone. However, it is a shadowy and quiet place; one that speaks of many secrets laboriously accumulated over time. Reinforcing this notion is the fact that the staff of the drug lab wear long thick robes with pointed hoods as they move, speak, and work silently, jealously preserving, guarding, and innovating upon the secret pharmaceutical recipes their cabal creates.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThroughout each day, one is very likely to see the military population of the Firebase making casual and frequent use of coffee drinks, stylish canes or staffs, hardcover novels and notebooks, aging or outright vintage alcohols, and massive cloaks that are often worn during any occasion.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour combat-drones are covered in scrawled bold lettering, with unique names, ranks, and nationalities painted onto each individual drone unit so as to depict the full identities of every person that particular drone has killed. When stealth is required, these flying memorials are simply covered in miniature camo nets to subdue the bright writing.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere is an undercurrent of "legacy" prevailing in the garage. The names and summarized service records of distinguished or deceased maintenance staff members and vehicle crewmen are inscribed throughout the duty stations the garage. Realistic etched illustrations of both retired and legacy vehicle systems known to the Firebase have been rendered all over the walls of the garage as well. History is everywhere here; scrapes, burns, and tears can be seen on the walls, on the tables, and even on the many mechanical tools and utensils applied in daily use, and all of the evidence of use serves to add much character to the place. Furniture and equipment pieces used here have been in place for years, constantly repaired, sometimes tweaked, but almost never replaced. Each garage staff member employed here has contributed their technical mastery on various parts of both the garage and several of the vehicles it contains, and the evidence of this can be seen in the monolithic maintenance logbook and maintenance guidebook tomes that these staff members, retired and active, have written and stored on the garage's impressive bookshelf section. Of course, several retired mechanics and crewmen still spend much of their time here, relaxing at coffee tables and often trading stories and advisement with their somewhat younger active duty counterparts at each duty station.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nRemarkably, vehicle memoirs are written in dull but permanent paints upon the surfaces of both the interior and exterior of every ground vehicle the garage has, with every vehicle bearing a ballad of that vehicle's complete combat history. Crewmen, passengers, and enemies alike are treated to a small piece of your military's story every time they get near your ground vehicles, as these ever-growing ballads detail that vehicle's battle fought, kill count, hits sustained and survived, and so on. In most raids and assaults these detailed and boastful prints are often the last thing opposing forces ever see.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe hangar is a pretty interesting place to be most of the time. The wise senior flight technicians and pilots are very pragmatic, and work hard to utilize their skills so as to protect their comrades-in-arms and ensure that their juniors live long enough to get promoted and replace them one day. Of course, said juniors spend their time learning under these expert veterans as apprentices or wingmen, always following their mentors around, assisting them, and learning carefully from each story told and demonstration given. Every pilot likes to keep their cockpit clean and tidy for the next use, treating it as a private office of sorts.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nFirebase aircraft have a feature that many other aircraft do not: All over the front of each aircraft is the full name and callsign of the pilot of that aircraft, proudly spray-painted on by said pilot. Of course, these 'messages' are transparent from inside the craft and do not impede the pilot's field of vision in any way, but to your enemies, the full name and identity of the man or woman about to kill them is often the last thing they see before they die.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAn imposing museum has been built just next to the common area, complete with antique artifacts from earlier Firebase history, preserved possessions of legendary Firebase war heroes, and dioramas of the most important battles of your arcology's history. The contents of the museum are updated and rearranged quite frequently too, meaning that regular visitors can reliably expect a novel experience when they arrive. It is here that soldiers and staff of all ages and stripes are welcome to pay their respects and spend time to learn about the history of the organization they serve.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIn the territory surrounding the Free City itself, there are several unassuming and very ancient-looking cave formations established, complete with rocky outcroppings, discreet mouths for entry and exit, and hidden underground tunnels shafts leading out of them. They sometimes even have crude glyphs drawn into them if the Firebase scouts occupying them get bored enough. These cave landforms act as listening posts that monitor incoming and outgoing traffic concerning the arcology, and are rigged to detonate if attacked.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe soldiers of the Firebase are generally both reserved and focused; there is always going to be another battle to fight, after all. They usually have a quiet air about them, but whenever eating or just relaxing, they all have many stories to tell and much advice to give to one another, both personal and professional. There is a lot of mutual respect between the soldiers of the community, on the basis of the wealth of hard experience they share. Older soldiers are prized for their veterancy, and given special assistance and acclaim when they first enlist. Those seniors that demonstrate special insight or mastery are promoted and fast tracked as much as feasibly possible.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMaturity Preferentialism: The Colonel has been a bit more concerned about her legacy as of late; she's working on her autobiography and two other books, has arranged for some of her younger relatives to move to your arcology for safety, and she's even written her Will. She's also a celebrated citizen of your arcology when she makes her appearances, and is widely respected by your people for her prowess and long experience in both military and sexual matters.\n`;
+					break;
+				case 'Paternalism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nPaternalism is all about improving and saving human lives within the context of Free Cities existence, and you are proud to have granted The Colonel a direct manifestation of this powerful ideal via air power. The Colonel has been delivered her very own OMEGA-series MEDIVAC V/STOL aircraft. This flying monolith is very difficult to manufacture, for it is designed to reach embattled trouble zones very quickly despite its massive weight, make rapid landings in impromptu LZ's despite its massive bulk, and endure heavy fire and extreme weather to evacuate wounded personnel despite being a lightly armored aircraft. This variant of the OMEGA-series can take in hundreds of casualties for the onboard staff to stabilize, before dropping them off at the Firebase for truly intensive care. Given its prestige, ease of use, and tremendous durability, the Colonel has been known to occasionally use it to personally evacuate endangered friendly platoons in the field or sometimes even desperate refugees, whenever she needs a productive diversion from her usual duties.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nFirebase cuisine is prepared with exceptional care, the talented slave-cooks put lots of attention in replicating their family specialty dishes as best they can whenever asked. The troops love the food they get, and mealtimes here frequently prove to be great occasions for bonding.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWhen they eat, the troops are sometimes treated to weekly FC TV fantasy series broadcasts often featuring chivalrous knights and plucky heroes fighting and winning classic battles of good and evil, before said champions take to enjoying explicit, yet wholesome sex with the numerous maidens, housewives, noblewomen, and queens they rescue.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery slave here is allotted regular breaks, issued protective gloves and aprons for their work, and even receive regular medical checkups. Numerous slaves have also befriended some soldiers, and even sometimes see these soldiers off on their regular deployments.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe new captives brought t the processing cages are all given 'slave manuals', printed in their declared native language. The manuals are meant to thoroughly inform them of how they should best serve and survive in their new lives. They are all given clean bedrolls to spare them from sleeping on the floor of their cages, and they are also given regular psychiatric and physical evaluations to ensure sound body and mind.'\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nComfort is king here. Every chair now enjoys soft fluffy padding while every table is fully adjustable in height. The large and well-maintained side dens that serve as the local slave quarters all feature simple-yet-comfortable bunk beds, proper plumbing and heating, and even their very own soft drink dispensers.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe barracks are certainly not the first of their kind in the Free Cities, but they are among the first to provide an actual side room for Barracks-slaves to relax in when their shifts are done. The Slave Lounge is very well furnished, with soft furniture and a large wallscreen television to maximize comfort. Sometimes the occasional soldier will even drop by when they want to spend time with some 'civvies' for a change.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nOn the largest wall in the armory, there is a massive wallscreen. This wallscreen serves as an interactive digital plaque of commemoration. Upon it lie the listed names of every retired and deceased former member of the Firebase, and one only has to touch it to see a listee's profile, search for a specific name, or scroll up or down the immense list. If one were only to touch a name, they will see a profile pop-up containing the full life story of that soldier -- or at least as much of it as they wanted to share -- along with their full service records, with special emphasis placed on any heroic deeds in battle or valorous conduct in general. On tiny wallspeakers, triumphant music gently plays while onlookers scroll. On both flanks of the wallscreen, an honor guard stands vigil.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe command center has been made extremely comfortable. The tables and chairs are adjustable, each battle station has its own heating and air conditioning unit for highly localized climate control, and there is are monthly rewards for commanders who manage to keep soldier, slave, and civilian casualties especially low. There is a long sofa near the entrance for obedient slaves assigned here to relax and chat on when not being called to serve. Next to the sofa there is also a big plush rug piled with soft pillows if a deserving commander or two wants to have a relaxing fuck with unoccupied slaves. The atmosphere is relaxed and cordial by military standards, even between the slaves and staff.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIn the 'special projects chamber' of the drug laboratory, the balcony's sealed control room overlooks a hopeful sight: rows upon rows of rejuvenation tanks installed here house dozens of critically injured soldiers and slaves from all around the Firebase, and even a few dying citizens from the main arcology; here the drug laboratory tests, applies, and perfects its newest curative formulae and solutes on emergency patients that need them most.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe proud slave owners in the Firebase can be seen donating portions of their free time to studying and applying the slave improvement materials in their possession; best-selling slave-training books, novelty slave clothing, and slave nutrition meal plans are all commonplace tools to slavemaster hobbyists in your martial employ. Especially notable are the slave-oriented gifts such as slave-written gift books or randomized gift boxes for deserving slaves who like surprises.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe many slave-capture drones have all been equipped with helpful light cyber-warfare suites meant to take over nearby enemy and civilian devices to display or broadcast simple messages; unprotected PDA's, computers, smartphones, radios, comm-beads, and so on are hijacked to communicate placative statements like "PLEASE SURRENDER", "DON'T SHOOT", or "WE'RE HERE TO HELP".\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSafety, Survivability, and Dependability are very high priorities for the dedicated maintenance and refitting crews of the garage. There are safety notices pasted onto the walls of many duty stations within the garage, clearly encouraging mechanics and crewmen to exercise great caution and best practices in dealing with the vehicles in their care. Additional safety instructions and even some well-wishes painted on by the staff can be found inside the vehicles as well.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEven more important are the extensive armor kits that are added to every vehicle; RPG cages, NERA and TUSK armor plate kits, active protection systems, chaff and smoke dispensers, and more are in plentiful stock within the garage, and very few of the Firebase's ground vehicles lack at least one of these features.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAt the discretion of the air force's lieutenant colonel, safety railing, emergency deployable arrestor wires, composite metal revetments, reinforced vehicle suspension mechanisms, and explosives-grade ballistic glass walls all occupy the space of the hangar as needed. This is all to ensure optimal safety for staff, pilots, and visitors present even if the most severe of landing/takeoff accidents or maintenance errors were to occur. Drills are taken every month to ensure ideal responses to various disasters such as aircraft crash incidents or in-house fire breakouts, with the emphasis on recovering as many wounded survivors as possible from such hazardous situations.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe Paternalism-inspired aircraft are favored for their dedication to survivability; Kevlar plating has been integrated into most of the airframes in use, and every single aircraft comes with a variety of chaff & smoke munitions, lightweight smoke generation machinery, MEDIVAC equipment to stabilize wounded soldiers and captives, and shock-absorbent seating with redundant seatbelts to minimize crash casualties. When landing, your transport aircraft are known for the utterly massive mountains of smoke they can generate within their chosen Landing Zones to obscure and conceal dismounting soldiers from enemy observation and fire. You have every intention of keeping your people alive, and they all know and appreciate this.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere is a modest slave training academy not very far from the relatively-pristine slave processing cages, and it has much to offer. Etiquette, obedience, sex tips, roleplay skills, housekeeping, vocational knowledge, street smarts, and physical & mental conditioning are all taught with great efficiency here using very humane teaching and motivational techniques. Remarkably, this location even provides complimentary psychological treatments to students suffering from PTSD or related conditions. Firebase-resident slaveowners often bring their newest purchases or captures to this place to fast track their slaves' mental development, and it is not hard to see why, despite the high prices.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA fully furnished, equipped, and staffed high-capacity military hospital complex has been established on the outskirts of the Firebase entrance. With its large rooftop helipads and a spacious reinforced parking lot, it can receive and process vast quantities of wounded personnel from all means at all times to ensure that every wounded person is secured and treated within the 'golden hour'. Thanks to this facility, far fewer lives are wasted through battle; since its creation even most enemy casualties have been successfully rescued, healed, and later sold off for profits. During the more peaceful, less intense weeks of operation, the complex is even known to 'generously' take in entire mobs of haggard refugees and nomads in need in 'free' food, housing, and medical care; they are welcomed in, nursed completely to health over several weeks, and finally enslaved and bulk sold to another Paternalist arcology as payment for their care. The Firebase has always contained its own dedicated medical facilities of course, but now, it enjoys truly peerless lifesaving provisions.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nTrustworthiness and Fidelity are sacrosanct in your Firebase, and this is making the "esprit de corps" very formidable as the months pass by. This enclave places great importance on the community's development and wellbeing, and more personnel than ever are investing in their futures with health therapy regimens or higher education courses. Because of this, new recruits are accorded with respect and careful attention; the priority is weeding out aspirants too selfish for the Firebase's good, and instilling knowledge and professionalism into those that are left. Staff, Soldier, and Slaves, are all honorbound to accord each other esteem and respect, with politeness and honesty being the standard expected of all. At the bottom of it all are the slaves; nearly everyone has to shoulder some portion of the grand task of liquidating the old world in your name. To cope with the many risks and pressures of their jobs, your soldiers rely upon the available slaves. The many slaves present serve as caretakers, confessors, and concubines, and efforts ar taken to remind them that their work is appreciated. At any time, one can see an off duty veteran teaching survival lessons to a new recruit. Over by the triage, a medic is patiently tending the injuries of POWs recently taken from a raided enemy camp. Elsewhere, a group of slaves is playing cards in the last few minutes of their free time. An optimistic mindset has taken hold of the Firebase, and you doubt it will lt go anytime soon. `;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nPaternalism: The Colonel is behaving much more kindly towards those she considers her people; wages and bonuses have been increased, she keeps an open-door policy with her troops, and she is happy to occasionally take the lead in some of the trainings and the tours of The Firebase that are given to newcomers. She takes efforts to make sure her people see her as trustworthy.\n`;
+					break;
+				case 'Degradationism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nDegredationism is all about belittling or destroying others' lives for one's own benefit, and you are proud to have granted The Colonel a direct manifestation of this powerful ideal via air power. The Colonel has been delivered her very own ALPHA-series STARSCREAM fighter-bomber aircraft. This flying behemoth is very difficult to manufacture, for it is designed to reach and dominate contested air spaces very quickly despite its massive weight and make rapid & precise bombing runs landings in tight urban environments despite its massive bulk. This variant of the ALPHA-series can rake in hundreds of casualties per minute with the help of its onboard targeting AI's, numerous swiveling autocannons & missile bays, and its wide onboard assortment of modern multi-munitions payloads for truly intensive carnage. Given its prestige, ease of use, and tremendous lethality, the Colonel has been known to occasionally use it to personally strike exposed enemy platoons in the field or sometimes even desperate refugees that get just a little too close to the Free City.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nFirebase cuisine is prepared with exceptional care; after all, human meat is no joke, and cannibalism in the Free Cities is a very controversial and esoteric topic as is. Regardless, the troops love the food they get, even after they learn the truth about the food they consume. As such the Firebase is one of the rare testbeds around the world for this daring new frontier of diet. `;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWhen they eat, the troops are sometimes treated to weekly FC TV gritty series broadcasts often featuring villainous protagonists outsmarting and outfighting multitudes of do-gooders and rivals, before they take to enjoying explicit, very rough sex with the numerous schoolgirls, housewives, businesswomen, and policewomen they kidnap.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAll of the slaves are hounded; much is asked of them, and soldiers are encouraged to beat them liberally if fail in the slightest. They have all been branded, and they always seem worried for themselves and each other.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe built-in shower wall used by the processing cages has been dubbed by the captives brought there as the 'Wall Of Blood'; for even minor infractions or failures, new slaves are lined up against the ceramic tiles and whipped bloody.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nGames will be had. Bets will be taken. The chairs and tables present are all arranged in loose circles throughout the common area, and for one purpose: Slave Fights. At any time, any two random slaves can be plucked from menial duties to be fed into the open space within one of the circles to beat each other for the soldiers' amusement.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEach bed unit has 4 pairs of shackles attached; one for each corner post. As they please, soldiers will chain their favorite personal slave to their bed to wait for them until their return from duties, a meal, or a deployment. You see several dozen slaves confined to the barracks in this manner from where you are standing.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nOn the largest wall in the armory, there is a massive wallscreen. This wallscreen serves as an interactive digital map of conquest, displaying the entire theatre of operation in tremendous detail. Scattered upon this zoomable mega map lies the many marker dots placed over it, each marking a specific past location that the Firebase's soldiers have fought at or raided. One only has to touch the screen to see a full profile of a prior combat engagement, search for a specific engagement, or zoom in or out of any point on the immense map. If one were only to touch a marker dots, they will see a full battle profile pop-up containing the brutal After Action Report of that battle, along with graphic pictures and video footage of it. Special emphasis is placed on treatment of captured soldiers and/or civilians after each battle, with several uncensored clips available on many of the profiles depicting beatdowns, mutilations, burnings, or literally anything else your soldiers felt like doing to their captives. The screaming can be heard in high-definition surround sound thanks to the tiny wallspeakers present. On both flanks of the wallscreen, a tightly bound slave is kneeling, with a ring gag in their mouth, so that onlookers can get a quick blowjob while they browse the records.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere are copious splatters of blood and semen to be found in the middle of the command center, and for good reason; there is a circle of pillories there, each loaded with a gagged and bloodied rebellious slave. During or after missions that prove to be frustrating or humiliating, commanders are free to take out their full frustrations on the pillory slaves. After pleasing victories, the command staff are known to attack the pillory slaves en masse, for a circular group victory fuck.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIn the 'special projects chamber' of the drug laboratory, the balcony's sealed control room overlooks a dreadful sight: a cold concrete floor holds dozens of unbroken slaves and disobedient soldiers from all around the Firebase and even a few undesirable citizens from the main arcology; here the drug laboratory tests and perfects its newest hallucinogenic, poison, and irritant formulae and gasses on deserving individuals so as to maximize your military's psychological and NBC warfare capabilities.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe prideful slave owners in the Firebase can be seen donating portions of their free time to studying and applying the slave debasement materials in their possession; best-selling slave-breaking books, harsh bondage apparel with complimentary rope or chain-link restraints, and slave discipline whips and prods are all commonplace tools to slavemaster hobbyists in your martial employ. Especially notable is the casual manner in which these slave-hostile materials are purchased.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe many slave-capture drones have all been equipped with helpful light cyber-warfare suites meant to take over nearby enemy and civilian devices to display or broadcast simple messages; unprotected PDA's, computers, smartphones, radios, comm-beads, and so on are hijacked to communicate belittling statements like "SURRENDER BITCH", "DON'T BOTHER", or "RESISTING MAKES IT WORSE".\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAggression, Lethality, and Versatility are very high priorities for the dedicated maintenance and refitting crews of the garage. There are killcount chalkboards posted onto the walls of many duty stations within the garage, clearly encouraging mechanics and crewmen to do their best to better augment and utilize the vehicles in their charge and compete against their sibling units. Every week, new taunts and insults can be found crudely painted onto the interior of each vehicle, no doubt planted there by hecklers from a rival sibling unit aiming to goad that crew into another killing contest.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEven more important are the extensive weapon kits that are added to every vehicle; ATGM mounts, SAM and AAMG turret kits, quad-machine gun mounts, automatic grenade launchers, and more are in plentiful stock within the garage, and very few of the Firebase's ground vehicles lack at least one of these features.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAs dictated by the air force's lieutenant colonel, concrete barricades, barbed wire fences, a composite metal brig, reinforced vehicle scrapping mechanisms, and explosives-grade ballistic glass observation decks all occupy the space of the hangar as needed. Of course, their purpose is to ensure optimal intimidation for the staff, pilots, and visitors present. If even the most minor of landing/takeoff accidents or maintenance errors were to occur, punishments for those responsible are public, lengthy, and brutal spectacles. Drills are taken every month to ensure ideal responses to various disasters such as aircraft crash incidents or in-house fire breakouts, with the emphasis on recovering as much salvageable hardware as possible from such hazardous situations.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe Degradationism-inspired aircraft are favored for their dedication to lethality; every month, fresh POW's are chained up to the outside of tasked VTOLs for decoration, and every single aircraft comes augmented with many strands of barbed wire, many hull portholes for passengers to shoot enemies from, and additional hardpoints for attaching missile launcher tubes. When landing, your transport aircraft are known for the utterly massive torrents of suppressing fire they can generate within their chosen Landing Zones to disable and kill nearby combatants that are targeting dismounting soldiers. You have every intention of demoralizing and destroying anyone standing in opposition to your people, and your people all know and appreciate this.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere is a discreet slave breaking dungeon not very far from the relatively-harsh slave processing cages, and it has much to offer. Obsequience, submission, righteous terror are instilled with great efficiency into every slave interned here through nonstop physical & mental torture. Remarkably, this location even provides complete personality reconstruction services, which involve deliberately mindbreaking inmates through intensive traumatization, before promptly rebuilding their minds and personas into the exact form desired by the clientele. Firebase-resident slaveowners often bring their newest purchases or captures to this place to fast track their slaves' transition into slave life, and it is not hard to see why, despite the high prices.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA fully furnished, equipped, and staffed maximum-security military prison complex has been established on the outskirts of the Firebase entrance. With its tall rooftop watchtower and a spacious reinforced central courtyard, it can retain and retrain vast quantities of future slaves using the many tools and trainers available at all times to ensure that every captured person can be quickly made ready for a life of labor, be it sexual or otherwise. The trainers and prison guards are clinical and unsympathetic in their duties, and thanks to this facility's vast capacity, excess slaves that the Firebase cannot hold are no longer left behind after raids. Since the creation of the complex, the Firebase can now accommodate as many slaves as it wants, and now entire townships can be casually picked clean of human life and have their populations be fully trained at the Firebase's leisure before sale. The Firebase has always contained its own dedicated slaveholding and slave training facilities of course, but now, it enjoys truly peerless enslavement provisions.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nDominance and Greed are sacrosanct in your Firebase, and this is making the "esprit de corps" very fearsome as the months pass by. This clan places great importance on the community's violence of action, and more personnel than ever are stacking the odds in their favor with close quarters combat regimens or advanced interrogation courses. Because of this, new recruits are accorded with hostility and careful scrutiny; the priority is weeding out aspirants too squeamish for the Firebase's good, and instilling ferocity and determination into those that are left. Staff and Soldiers alike are bound to their strict and highly competitive social totem poles, where esteem and respect comes strictly from each member's skills, kills, or wealth. Politeness and Compassion are seen as signs of weakness, of course. At the bottom of it all are the slaves; bar the Colonel and her top dogs, nearly everyone here is getting taken advantage of by those higher up, and thus everyone in need of a release valve for their rage will simply snatch up the nearest available slave. Therefore, unproved beatings, torturings, and rapings of the many slaves present are so common that they are ignored. At any time, one can see a few off duty veterans hazing the shit out of a new recruit. Over by the bars, two troopers are brawling in front of a jeering crowd, duking it out over some perceived slight or another. Elsewhere, a group of slaves is huddling together for warmth in the last few minutes of their sleep time. A predatory mindset has taken hold of the Firebase, and you doubt it will lt go anytime soon.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nDegredationism: The Colonel is on the prowl; she is more reckless, impulsive, and aggressive than before, as if there is some demanding beast inside of her that she can't quite satisfy. Her personality itself hasn't changed; she speaks with you just as affably as before... Her actions are what's different: Prisoners of war, slave captives, and civilians are treated with no dignity at all, and she seems to greatly enjoy punishing her troops harshly for transgressions and failures. She still generously rewards successes, however.\n`;
+					break;
+				case 'Physical_Idealism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWith the help of her own personal Amphibious Assault Landship, The Colonel can stage a miniature invasion or expedition behind enemy lines or unclaimed territories whenever she pleases, independent of what the rest of the Firebase is up to. This massive, high-performance, quad tracked vehicle can seamlessly transition from land to sea and vice-versa, while sporting a turret armed with a recoilless main gun, and carrying a company-sized element of light infantry and a week's worth of their supplies. This vehicle's long range and hefty versatility makes it a perfect vehicle for the Colonel to stay productive during her more independent, adventurous moods.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nTender meats of all kinds are made available in abundance, with a free protein powder packet or nutrition bar provided with each meal. Sweetened protein drinks are available in all forms and varieties as well, including milkshakes and even alcoholic beverages.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere are several monthly Free Cities fitness magazine deliveries to ensure everyone gets their free copy. In true Free Cities fashion the magazines are one third informative and well-written articles, and two thirds explicit full-color sex spreads featuring very muscular women and men vigorously going at it. \n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMany of the slaves here are all in excellent physical shape: All the slaves are musclebound to varying degrees, with biceps, shoulders, glutes, traps, and other muscles all large size and sharply defined. They are required to strip naked and exercise intensely before and after their assigned work shifts in order to maintain their gains, prior to showering and dressing, and they do all these things in full view of the soldiers.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEach cage contains a pair of dumbbells and a discarded Free Cities bodybuilding magazine containing workouts, fitness articles, and musclegirl porn. Everyday, each captive is brought out of their cage to perform a workout from their magazine from memory, and they are punished if they fail or refuse.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe west end of the common area has the tables and chairs there packed much more tightly together than before, and for good reason; the entire wing is dominated by an Olympic swimming pool, flanked on both sides by weight benches, exercise machines, weight racks, and even unisex standing showers and lockers. This open air gym is a widely frequented attraction; with support staff, soldiers, and even some highly-favored slaves partaking of its attractions whenever they have the time. Music is playing loudly, and you see a few beach balls floating idly in the pool.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery single bed has been reinforced to serve as a makeshift ab-work platform, with strengthened posts and a small rack attached for the medicine ball each bed unit is issued. With their daily workout now within arms reach, soldiers too lazy or busy to hit the gym can now squeeze out a few sets before sleeping or after waking up. No Excuses.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe armory looks and smells like a sports team locker room, and even has its own shower room. Next to the central quartermasters booth lies a large wallscreen that shows that week's combat cam 'highlight reels', and 'MVP' or 'Most Valuable Platoon' reels, which gives the troopers that come here a strong sense of competitiveness, as it is prestigious to have one's own combat footage or combat unit be represented on such a public platform. Each trooper keeps their favored performance boosters and energy drinks in their personal lockers too, and often sit together on the long polished wooded benches nearby to do final checks on their gear before heading out.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWhen important operations are not in progress, the command center is know to play very motivating workout soundtracks on their new built-in loudspeakers. The command staff within is also known to wear only light fitness clothing, since the spend much of their free time in the luxurious gym that exists in the right flank of the commander center when not on mission. For them, exercise is a healthy escape from the stresses and guilts of commanding your military forces.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe distribution point of the drug laboratory is designed much like a supplement store, with inspiring music playing in the background, and neat shelvings and aisles for soldiers to stroll through and select the drugs, proteins, and powders they need to improve their muscle gains, their combat potential, or both.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nNaturally, your military employees living here have learned to stay active; when off-duty, and even sometimes on-duty, you can see any of them wearing heavily weighted clothing, sweat bands on their wrists and foreheads, resistance bands for casual pumping whenever idle, earphones and portable music players strapped to their arms, huge and durable insulated flasks full of fluids to ingest when thirsty from their exertions, or some other hardcore fitness paraphernalia.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour drone technicians are proud of how much weight the drones they work on can carry, how long they can do so, and how fast they can do so. Your drones have been upgraded meticulously for endurance and sheer power output, and of course the added weight from these modification means that they can serve as fantastic medicine balls as well.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe hulls of many of the ground vehicles in the garage are mildly enlarged, and it is easy to see why. All around the garage there are impressively large [and sometimes even downright massive] engines, auxiliary systems, and fuel tanks suspended from overhead racks and awaiting either customization, retooling, or installation into their intended vehicles. The gruff and tough mechanics here are obviously hard at work to advance a new generation of 'muscle' tanks, trucks, and transports.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery vehicle unit is customized; none of them have the exact same components they shipped in with, but rather garage-made improved versions of those same components that are made to make each vehicle bigger, stronger, faster. And just like the many musclebound mechanics that work on these vehicles and parts, these vehicles need a lot more fuel to get the most out of their gains. Advanced new super-diesels are produced within the garage backrooms to maximize reliability and mileage, and this powerful sustenance gives your mechanized units a lot more kick. In the field, your ground vehicles are every bit as 'ripped' and 'tough' as the men and women who drive them.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe personnel within the hangar exercise with great diligence, with every person's working shift beginning with a challenging workout (barring a direct attack on the arcology). Your staff and pilots are aware that their combat role is not as physically strenuous as that of their mechanized and infantry comrades, and they fully intend to get just as much exercise as their field fellows do. All around the hangar, right next to well-serviced aircraft, you can see 'idle' personnel doing pull-ups with dangling overhead chains, push-ups and sit-ups on the ground, bicep or tricep curls using small missile tubes or heavy spare parts, and so on. Your pilots are ripped too, with their excellent physical condition being a powerful asset in their high-speed flight missions that sometimes require them to endure taxing g-forces. As such, your ace pilots are some of the best-conditioned athletes you've ever seen.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe personnel of the hangar are impressively bulked on their own, but they seem to have applied their dedication to development to the vehicles in their care as well. Every airframe has been carefully enlarged to fit ever more powerful engines and additional fuel reserves into every aircraft. Powerful, 'muscular' aircraft are the sought-after goal, and each one is frequently checked and modified to enable even minor improvements. After all, isn't continuous improvement a key aspect of Idealism?\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA grandiose open-air gymnasium occupies the space near the drug laboratory, where it can receive easy shipments of steroid syringes and protein supplements from the lab for the sake of any gymrat interested in such things. Within this spacious zone lie a broad variety of barbell-weights, machine-weights, exercise machines, huge discarded tires, battle ropes, punching bags & speed bags, training dummies, and even a few martial arts sparring cages are here, providing the fitness-obsessed population with powerful workout venues that they cannot replicate elsewhere within the Firebase, and eliminating the need to settle for dumbbells & bodyweight exercises or to waste their free time travelling to the gyms in the arcology above. Your warriors and their support staff are all grateful for the opportunity to begin making truly extensive gains.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nCrossfit has long been a popular interest in your Firebase subculture, and now, your personnel have a worthy environment to explore that interest. A large gauntlet of equipment and arrangements meant for aerobic, acrobatic, and athletic challenges are set up on this field to host a variety of competitions within quick succession. There are even stands for a limited audience, a commentator's booth, and a restroom.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour soldiers are rather idealistic about themselves and their bodies; the Firebase is a place of little compromise. Discipline and Comradery are values of choice, as the weekly races, weightlifting competitions, and exhibitions require constant training and therapy from all personnel. The peer pressure to compete and place or improve one's competitive rankings is inescapable, and squad by squad, off-duty units of the Firebase can always be seen participating in group training or group therapy sessions. Obviously, every person down here, bar some of the newer recruits, is in magnificent shape, man, woman, and slave alike. Some are bulked. Others are shredded. Some are just toned. However, everyone is thoroughly proud of their development thus far.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nPhysical Idealism: The Colonel was ripped before, but now she is absolutely shredded. Her muscles are even bigger and more defined than before, and there is a small rack full of heavy barbells on her pavilion for bodily maintenance. Her body still has its feminine appeal however, thanks to her curves.\n`;
+					break;
+				case 'Hedonistic_Decadence':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nWith the help of her own personal Amphibious Resupply Landship, The Colonel can support ongoing operations within friendly lines while doing very little work herself, independent of whatever the rest of the Firebase is up to. This massive, high-capacity, quad tracked vehicle can seamlessly transition from land to sea and vice-versa, while supporting dozens of heavy ammo crates, several refueling hoses & fuel pumps, and a whole week's worth of rations and recreational refreshments for an entire infantry company. This vehicles long range and ease of use makes it a perfect vehicle for the Colonel to stay productive during her more lackadaisical moods.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nDelightful platters of bewildering varieties of foods and baked treats are available on demand, as the cooks and slave-cooks toil day and night on rotation to keep it all coming. Each soldier gets a tray at every meal to fill and stack as he or she pleases, with a small free packet of recreational drugs given with every meal.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nQuotes, Stories, and Essays from across the ages written on the topics of desire, indulgence, pleasure, or the importance of these things to the human experience are all available in lots of little booklets available by the stack throughout the Firebase. Meanwhile, pornography featuring curvy, plush, or even obese women is easily accessible on the laminated tablets that have been distributed throughout the Firebase.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMany of the slaves here are quite hardworking; they need to supply a constant amount of food, drink, drugs, games, media, clean holes, and other entertainments to the impatient soldiers around, who are in constant need of fast gratification. The slaves deal with all the stress and anxiety by indulging in some extra drinks and drugs themselves, and they have some extra soft padding on their bodies and assets to prove it.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSex toys, and a generous supply of snack bars, porn magazines, and electric cigarettes are issued to every cage inmate upon internment. The captives are free to relieve their anxieties at any time, and are encouraged to do so.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe east end of the common area has the tables and chairs there packed much more tightly together than before, and for good reason; the entire wing is dominated by an Olympic-sized hot tub, flanked on both sides by beach chairs, food vendors, LAN party lounges, and even unisex changing rooms. This open air resort is a widely frequented attraction; with support staff, soldiers, and even some highly-favored slaves partaking of its attractions whenever they have the time. The air is heavy with drug fumes and the smell of food. You see a few empty alcohol bottles floating idly in the steamy water.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery bed unit has a tiny refrigerator unit attached at the head. At any given time, a cold drink, some cool leftovers, or a chilled shot of injections is just within arms reach for any soldier resting. Above soldiers' heads is a small touchscreen monitor attached to an adjustable arm, so that troops are never without options for entertainment either.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nCushioned couches, lounge chairs, and futons lie all around the armory, and on every last one of them lies a debriefed soldier sleeping off their last deployment with the help of some opium. Most of them haven't even bothered to change out of their fatigues, and many have their weapons and body armor strewn carelessly on the floor beside them. Further still, a few have their pants pulled down to their ankles, whilst an intoxicated slave-whore lazily rides them. Heavy smoke fills the air, and adjacent to the central quartermaster's booth is a tidy fast food bar where shots of soft drinks, small plates of fried foods, and tiny condiments are always in quick supply for those that the time to spare.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere are are drug platters, snack bowls, and punch bowls for every battle station of the command center. During combat maneuvers the staff here are especially ravenous, chugging down large amounts of substance while they send messages that carry power over life and death. The pressure to succeed and secure victory is high, and in order to cope, the staff consume.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe distribution point of the drug laboratory is an eerie place, with a very thick white mist for soldiers to stroll through on their way to the drug selection buffet. The mist is so dense and rich that many soldiers report feeling either high or buzzed after just a few minutes inside of it.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nNaturally, your military employees living here have learned to make life easier for themselves; when off-duty, and even sometimes on-duty, you can see any of them wearing light & airy clothing, snack pouches strapped to their wrists, memory foam pillow-coats for casual snoozing whenever idle, drug-filled auto-injection needle pistons strapped to their arms, cozy haptic-operated mechanized wheelchairs equipped with built-in tablets & speakers & coolers, or some other leisure-related paraphernalia.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour drone technicians are proud of how little upkeep the drones they work on require, how little time they need to spend on tune-ups whenever maintenance time does finally come around, and how easy said maintenance is. Your drones haven't been upgraded too often, as their sheer power output is high enough to be sufficient for operational requirements for a long time to come.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThere are treats of all kinds all over the garage, to set the hardworking staff here at ease. Unclad sex slaves bounce up and down on the laps of debriefed crewmen while waitress slaves rush about carrying platters of hors d'oeuvres to mechanics that summon them, feeding the mechanics hand-to-mouth while they make their adjustments. There are drugs all over the garage too, half-snorted, half-injected, and half smoked. Substances pepper the garage as the workmen get their fixes in between the fixes they perform on the vehicles. It is not uncommon to find tweakers passed out underneath or next to the vehicles they were just tweaking because of this.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe staff of the garage work hard within a very comfortable environment, and according to them they need their many comforts, but your combat-active crewmen deserve some comforts as well. On the interior of every vehicle are very plush massage-chair seats, powerful air conditioning suites, and of course, delightful compact pill dispensers that help ensure that no deployment is ever a dull one.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe personnel within the hangar work with great levity, with every person's working shift beginning with a tall glass of beer (barring a direct attack on the arcology). Your staff and pilots are aware that their combat role is not as physically strenuous as that of their mechanized and infantry comrades, and they fully intend on taking advantage of that fact to get more partying done. All around the hangar, right next to well-serviced aircraft, you can see idle personnel doing lines on the nearest available surface, dancing together in empty spaces, enjoying succulent desert foods and expensive drinks large trays, and so on. Your pilots are very relaxed too, with their drug-induced states being a useful asset in their high-risk flight missions that sometimes require them to make very brave maneuvers in order to more effectively engage enemy forces. As such, your ace pilots are some of the most high-tolerance users you've ever seen.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe personnel of the hangar are impressively pampered on their own, but they seem to have applied their dedication to delight to the vehicles in their care as well. Every airframe has been carefully enlarged to fit ever more luxuries and comforts into every aircraft. Internal heating and cooling systems are enhanced, every passenger compartment comes with its own wallscreen HDTV, and soft padded reclining seats line each passenger compartment, among other accommodations. No effort is spared in ensuring deployed troops and pilots are put at ease as soon as they mount up. After all, isn't continuous gratification a key aspect of Hedonism?\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA stark narrow building occupies the space near the drug laboratory, where it can receive easy shipments anesthetics, filtrates, and detoxifying substances from the lab for the sake of any visitor in need of them. Within this spacious zone lie a long row of surgical chairs, where occupants can simply sit down and be placed into a deep rest by the numerous attendants, before being operated upon by the autosurgery suites above to receive advanced liposuction, carcinogenic filtration, and curative injection procedures that quickly and somewhat painlessly prolongs their lives and repairs the damage to their bodies incurred by their wild are carefree lifestyles within the Firebase. For those willing to pay the fees, this place provides the pleasure-obsessed population with powerful longevity solutions that they cannot replicate elsewhere within the Firebase, and eliminating the need to settle for intermittent diet & exercise or to waste their free time travelling to the crowded clinics in the arcology above. Your warriors and their support staff are all grateful for the opportunity to sustain their truly decadent lifestyles without guilt or consequence.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nLuxury cruises have long been a popular interest in your Firebase subculture, and now, your personnel have a worthy environment to explore that interest. A small artificial lake has been built outside the Firebase entrance to host a small but well furnished premium yacht. The yacht lazily makes its daily revolutions around this lake, filled with rare and ever-changing entertainments that once cannot find inside the Firebase itself.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour soldiers are rather lackadaisical about themselves and their bodies; the Firebase is a carefree place. Fun and Relaxation are pursuits of choice, as the weekly orgies, eating competitions, and drug exhibitions require little effort to enjoy. The peer pressure to indulge and make the most of each day is inescapable, and every individual has been seen participating in most of the delights available at least once. Obviously, every person down here, bar some of the newer recruits, has a very jolly disposition. Some are drunk, high, or both. Others are passed out. Some are just laughing at the others. However, everyone is thoroughly entertained.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nDecadent Hedonism: The Colonel has a thin layer of fat covering her muscles and overall body, making her appealingly thicc without making her slow or weak; she even jiggles in the precisely correct places when she walks. Every weekend she has entire trays of food and substances brought to her pavilion on rotation, and you have no idea where she manages to put it all. She's certainly indulging her desires a lot more. She visits her doctors more often and regularly joins the training platoons in their daily runs to keep her body healthy.\n`;
+					break;
+				case 'Slave_Pastoralism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nYou've purchased unused land just outside of the Free City, and cultivated it into a very unique farm, with its own fully furnished farmhouse & manger, several acres of parish & pasture, farming vehicles & tools, and of course, a fully upgraded dairy for human livestock to enjoy. It even comes with its own horse. This is the Colonel's farm now, and from here she is free to grow, tend, milk, harvest, store, and sell whatever she pleases. You do not know if she grew up in a rural, agricultural setting like this, but you do note that she did appreciate having such a tranquil retreat away from the sex, violence, and noise of the Free City proper. Even she needs a few quiet peaceful days sometimes.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nFor a multitude of dishes and drinks where normal animal milk is a key ingredient, human milk now substitutes. There are even chilled drink dispensers filled with human milk, right next to the standard water dispensers.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe troops also find their devices periodically updated with new folders featuring lots of additional erotic material featuring heavy lactation, massive cumshots, and even explicit slave-dairy documentaries, docu-dramas, or soap opera/sitcom episodes. The novel subject matter is surprisingly fun to watch, many realize.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe slaves' breasts here lactate, and slaves are required to squirt their milk into soldier drinks if and when ordered to. A few female soldiers even ask particular slaves for some ejaculate in their drinks or food on occasion as well.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSex toys, and a generous supply of snack bars, porn magazines, and electric cigarettes are issued to every cage inmate upon internment. The captives are free to relieve their anxieties at any time, and are encouraged to do so.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe smell of milk has slowly spread throughout the Firebase, especially in the vicinity of the open-air ranch on the northern outskirts of the common area. This place supplies most of the milk used in preparing Firebase meals. Here, dozens of diverse, prized slave-cows are lined up on adjustable milk racks and serviced by cheerful, seasoned farmers from around the arcology. Visiting soldiers are rewarded for hand-milking the cows themselves, with both a bottle of the free warm milk (or cum) they just squoze out and with permission to fuck a choice cow in any position they desire. It's a good deal, and this place is frequented quite a bit by men who like milky tits and women who like the huge bull-dicks.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nTroop bedding is clearly separated by drawn boundaries on the ground every 50 bunks, and for good reason: For every 50 troops, there is a designated slave cow assigned to service them and only them. During mornings and evenings, these cows wander along their assigned bunks to attend to the physical needs of their soldiers, be those needs sexual or nutritional.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe armory has many aesthetic touches reminiscent of a barn, but in particular, it represents a rancher's tool shed. The ceiling has uneven, almost ramshackle wooden paneling that cleverly covers and obscures just a tiny bit of the light fixtures, making the armory look as if the sun is shining down directly into it, thanks to all the cracks and rays of 'sunlight' visible. Complementing the effect are the hidden ventilation machines throughout that give the place an airy, breezy feeling, as if actual wind were blowing through it. But that's not all. It smells like milk, thanks to the milk tap, drain, and metal gallon bucket found near the entrance, where troops are subtly encouraged to fill their water canteens with human milk. Huge piles of hay are stacked in one corner, and off-duty soldiers can be found sleeping or chatting on them on occasion, or even taking 'a roll in the hay' with a personal slave if they feel like it.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nCommand center has an extravagant exclusive spa room that is stocked with a variety of dairy soaps and shampoos to use in the several specialized hot tubs inside. This spa room is reserved for end of day bathing for each shift's command staff, and after very victory, warm and cool milk baths are on offer alongside regular baths, giving officers ample opportunities to enjoy the creamy fruits of their labor. The coffee counter of the command center has bovine designs upon it, and its very own award winning human cow on standby to provide milk too.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe drug laboratory now features its very own wafflehouse. Of course, its waffles and pancakes are prepared with human milk drawn straight from the kitchen cows, and there is a coffee counter staffed by topless lactation slaves who cream patrons' coffee themselves when asked. Due to its closeness with the drug lab, pharmaceutical staff frequent this place as often as the troops do, and are keen to speak with the soldiers they encounter about the newest drug developments over breakfast. Needless to say, the cows here are a testbed for the latest and greatest lactation drugs the lab devises, and visitors are always polled about the taste of their meals.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe hardworking staff, infantry, tankers, drivers, pilots, and officers of the Firebase have a greatly developed interest in the dairy industry. Entire cliques of compatriots here own the thick rubber gloves, thick leather aprons, and thick rubber boots iconic of Free Cities slave milkers, and it is common practice for such gangs to their own private milking clubs in which all members pool their money together to buy, train, and develop a hucow that might put their peers to shame. As such, handheld milking pumps, temperature-regulated metal milk jugs, wheelbarrows, and heavy bags of cowfeed can be found in many barrack rooms. And even those picky few that have no interest in slave-cows or milk can be seen wearing tanned-hide boots, jackets, gloves, and so on.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery support-drone has been augmented with a discreet little red 'mohawk' and golden 'beak' as well as a large quantity of large artificial colored 'feathers' glued onto each combat-drone's hull. Somehow, your drone technicians think that this gives your drones the appearance of flying chickens, so as to match your ongoing agricultural theme. Somehow, they haven't been fired for this yet.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe garage resembles a large farm's toolshed, only this toolshed is very big, and it definitely has more than one tractor. Most of the walls of the garage have been covered with decorative wooden planks to resemble the walls of a barn, as have most of its tables and counterspaces. Duty stations have been separated by imperfect high wooden gates and fences as well, to give the impression of having 'stables' for the various vehicle 'steeds' around as well. Naturally, there are a few cows tied down to some of the workstations, next to wooden tables stacked with cups. After all what hardworking mechanics doesn't want a sweet warm glass of milk after completing a job well done?\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nTo their good credit, the mechanics have also managed to affix compact chilled human milk dispensers to the interiors of the ground vehicles too. The seating for pilots have been reupholstered with tanned hide materials upon request, many of the the interiors have been repainted with farmland or bovine designs, and even the floors have been given a light blanket of straw covering.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe hangar's appearance is somewhat reminiscent of that of improvised rural airfields of the sort found in farmland countrysides all over the world; tall rows of crops and ploughed fields of dirt now surround or flank the runways and landing pads of the hangar, while the walls themselves are mostly covered in an active illustration wallpaper that depicts the outdoor sky in colors that change to reflect the actual time of day.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe Pastoralist modifications made by the hangar to its aircraft are surprisingly modest. Of particular note are the tanned hide leather upholstery placed on all of every aircraft's seating, and the milky white artificial contrails that every aircraft has been modified to optionally leave behind during any flight mission, regardless of weather conditions.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAn actual live-in barn had been manifest within the Firebase, right next to the Firebase's storage sector. Whereas before, aspiring ranchers and hucow hobbyists had to either purchase cow slaves from costly outside sources or purchase a relatively normal slave and them gradually develop them into becoming proper cowslaves over a long time period, they can now simply walk in the barn with their savings and purchase numerous fully-developed slave-cows at competitive rates. The barn is opened regularly to host sale events, with handmade and sanded wooden tables and chairs laid out to accommodate buyers, and all who arrive are welcomed with a glass of warm milk and a slice of freshly baked fruit pie to enjoy as they peruse and choose in the minutes before auction time. With its homely paint job and wooden constitution, the building itself is robust and welcoming. Freshly-laid hay and the smell of squeezed milk, cream, and sawdust in the air greet visitors each day that the barn is opened to receive or sell more cattle, but the open windows overhead help keep the air pleasant. In time, this place will become the cornerstone of the Firebase's dairy culture.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe open air ranch that accompanies the Firebase exterior is very important to your dairy culture. It is a very specialized slave training facility, fenced off with wooden fences and metal barbed wires, meant to demonstrate, with absolute clarity, to those captives sent here to train that they are indeed livestock. After each day's training, the new slaves are released to wander and graze outdoors among the animal chickens, bulls, and cows before returning to their rustic farmhouse to turn in every night.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe Firebase has both heard and answered the call to agriculture. At every venue of the Firebase, human milk is consumed as a beverage, alcohol additive, or key cooking ingredient for recipes. Human ejaculate is in vogue too, for the discerning consumer to incorporate into her own or his own delicacy salad dressings, dairy creamers, cake frostings, flavorings, and so on. Milking hucows has become a popular hobby as well, with entire milking competitions even being held sometimes. Finally, you note with satisfaction that many soldiers who live to complete their contracts and retire often choose to become ranchers themselves as they return to civilian life. You breathe deep, sucking in the heavy smell of cream in the air. This is a place you'd be happy to call home.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSlave Pastoralism: The Colonel has taken to getting her own personal cow, who serves her milk during her meals on her pavilion. Some of her personal care and hygiene products are made using treated human milk as well. It seems she only likes the milk. You heard that she once tasted cum by accident and several people almost died.\n`;
+					break;
+				case 'Chattel_Religionism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nYou've purchased an unused storefront just outside of the arcology's central business district, and redecorated it to serve as a unique cathedral for a distinct sect of your Chattel Religionist faith; a cult that observes the Colonel as your divinely chosen apostle, who has come to carry your arcology to its glorious future. This is the Colonel's cult now, and from here she is free to cultivate her very own band of devotees. You do not know if she grew up regularly attending a religious setting like this, but you do note that she did appreciate having such a sycophantic retreat away from the sex, violence, and noise of the Firebase underground. Even she needs a few quiet meditative days sometimes.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe food supplies packages the Firebase receives daily now come with consecrated 'purity seals', assuring the cooks as to the food's freshness and holiness. The food itself hasn't changed much, but each meal now comes with a small side dish featuring plain white bread slices and a shot of red wine, so as to signify a sacrifice or meditation of some kind.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nTelevangelical film broadcasts of the religious services conducted on the upper levels play here regularly, and are shown live on the holy days. They show every bit of each service, from opening hymns and prayers to final announcements, and always in precise high definition film (especially during the ceremonial orgies).\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSelect slaves among the slave population wear the proper chattel habits and garbs of the slave-ministry; during slave meals the slave-priests preach to the mass of slaves present, galvanizing them for future service with their stirring sermons. The (wo)men of the cloth speak of loyalty, faith, rewards to come, the righteousness of You and your 'Crusaders'.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEveryday, the captives kept in the processing cages must learn a new hymn or a new chapter from the Holy Book, word for word. Backsliders who do not learn the assigned content by end of day are made to repent of their faithlessness, through whipping and the gnashing of teeth.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery chair is engraved with a powerful verse of scripture from your Holy Book, and a large ornate den has been constructed on the eastern fringe of the common area to serve as the Firebase's orthodox confession booths. War is hell, and here, soldiers are often invited to speak anonymously with the compassionate and unjudgmental priests of the faith to share their most troublesome memories. It is only here that they can safely unload their emotional burdens of guilt, anxiety, and fear to the benevolent unseen listener, and receive absolution.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nOn every wall of the barracks, the authoritative scripture in boldly inscribed in fine calligraphy. Disguised speakers tucked away in corners play gentle, unobtrusive hymns that ease the troops to sleep at nights, and the beds themselves are painted in majestic colors that herald the glorious destinies of the faithful that use them.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAt the entrance of the armory, a pair of priests stand ready to greet every single entrant with an oil anointment and quickly chanted Prayer of Protection. For those that finish their battle preparations quickly and seek additional enchantment, horizontal stone slabs are to be found along a wall near the exit, where one can lie down and receive a laying of hands upon themselves by chattel habit-clad slavegirls with well oiled hands and a hymn of their lips. In one corner, a few squads of fully-kitted soldiers huddle around a fiery chaplain, as his sermon riles them up for their righteous task ahead!\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA massive chandelier dominates the ceiling of the command center, shining a golden shining light over the entire command space. A pair of chaplains stand vigil at the entrance, granting anointments and quick ritual blessings upon staff members that come onto their shift, and each command shift starts with the relevant staff gathering together to say ritual prayers for sound judgement, swift decision-making, and furious conquest in your name.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nStorage rooms within the drug laboratory have a unique addition; a well-kept shrine is to be found in each one. Each shrine serves as an anointed packaging center, staffed by clergy who are busy in prayer and packing, simultaneously both safeguarding and enchanting the drugs they organize and store behind them, with the help of the mystical spiritual energy that only they can provide.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nPleasing is the sight of the Firebase's humble supplicants making use of the trinkets purchased in the name of the faith. Of course, your Holy Book is a best seller around here, but so are supplementary items like hymn books, tapers, wood or metal carved holy symbols or prayer beads, blessed oils, and robes, head coverings, & habits for every rank of believer. Of course premium services like burial ceremonies or the granting of indulgences are popular selections too, for those who feel sufficient conviction to need them and have the money to afford them.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery inch of your reconnaissance drones has been carefully repainted to make them directly resemble ghastly flying skulls. As they hover above the battlefield, those few enemies that spot them and futile try to shoot them down are deftly reminded by their appearance that death is nigh, and that the final demise is coming soon.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSome would say that the Firebase's garage is ruled by superstition. Of course, the garage staff disagrees with this notion; in the garage, there is only Rite and Rote. The colorfully robed technological priests of the garage facility always take care to perform all necessary rituals before, during, and after each repair, inspection, and augmentation of each vehicle. Chants and incantations of all measures are properly recited during routine maintenance jobs so as to properly honor every vehicle's presence, and properly blessed vehicles that crewmen should place their faith in are properly marked with sacred seals, with veteran and distinguished crews having privileged access to these exalted vessels. Overall, repairs take a bit longer to perform due to the extra ritualism, but since these ministrations provide divine protection, as well as further distinction from the heathens who do not pray as such, is that really a loss?\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery vehicle unit comes with several holy book and hymn book copies in a special fireproof underneath the driver's seat; it is hoped that these extra copies might be used in the field to help spread the faith to heathen lands that your vehicle units visit. Handwritten prayers have been scrawled onto the interior surfaces of many vehicles of well, to attract good fortunes, and blessed wax candles are sometimes brought along by the crewmen and burnt before combat for this purpose as well.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour original hangar staff have submitted themselves completely to faith and become a sacred order of robed technological priests. This ministry of flight takes its calling very seriously; its members have even replaced their organic arms with modular bionic arms that can attach and detach all manner of intricate power tools at will. Every act of repair and improvement is consecrated by an episode of prayer and ritual; scented oils lubricant your flying machines while holy mechanical instruments assemble and dissemble airframe components according to the sanctified maintenance guidelines. With this level of devotion and care, any instance of malfunction or failure from your aircraft during future operations can be considered nothing short of a bad omen.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nNot willing to risk desecrating the numerous litanies of the faith by exposing them to enemy fire on the outside of your craft, your selected personal favorite songs of prayer and excerpts of scripture are instead diligently inscribed onto every inch the interior of the aircrafts' cockpits and passenger sections, where vehicle occupants can see them and have their resolve and conviction bolstered by them before and after battle. The ceilings of each aircraft's interior must be scrubbed clean of soot every week as well, since thick and tall handmade wax candles are burnt inside of the aircraft interiors during all hours of aircraft operation so as to appease the spirit and grant divine protections.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA grand chapel now occupies the prime area behind the common area. The peculiar architecture of the structure, combined with the highly specific paint scheme and meticulous interior decoration, makes the building itself demand a certain respect from all who enter. The layout of the building is complex, with sections for laying and using prayer mats, rows of pews for adherents to sit and be ministered to, and platforms for clergy and choir to take their place upon during services. It is also a place of great beauty; unique paintings and huge stained glass mosaic windows adorn the walls and ceilings as they illustrate the faith in ways that mere words would fail to do. On holy days, hymnal music and calls to prayer can be heard from within the building, inviting all to come and partake of the fellowship, prayer, and release within. There is no doubt that this holy temple serves as the centerpiece to the Firebase's spiritual culture.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA carefully placed artificial pond occupies the exterior of the Firebase, with impossibly clear, and supposedly blessed, waters filling it. It plays host to the regular water immersion spiritual ceremonies performed upon new recruits in order to initiate them into the Firebase population and culture, and religious chants and songs can frequently be heard from the robed clergymen as they perform their duties.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nPrayer and fasting have become regular activities in the Firebase, and as far as you can tell, the adherence is genuine. Your exciting new religion fills a void within your warriors that killing, drugging, and whoring do not. For many it provides comfort, and for those who do not ask too many questions, it provides answers. Rather than face cremation, the bodies of your fallen are ritually buried, ensuring optimal passage into the next life. Weekly ceremonies are held for community meditation on matters of the spirit, and the tenants of your faith are taught consistently throughout basic training alongside the conventional curricula. Soldiers and staff can be heard humming hymns or quietly chanting sacraments as they clean weapons and tools, get dressed, move about, and perform many other typical tasks, including fucking. Quite a few officers and NCO's double as priests too, and army chaplains are a coveted addition to any platoon that doesn't already have one. It is common for deployed troops to pray for protection for themselves and their comrades before mounting up and heading for battle, and as you see a fully kitted infantry section huddled in a prayer circle right now, you are confident that the new faith has succeeded.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nChattel Religionism: The Colonel is wearing your holy symbol on a discreet necklace, and no longer criticizes The Faith as harshly as she used to. Sometimes you even see her flipping through the copy of your Holy Book that she keeps around, with a neutral expression instead of her usual sneer. It seems she's stuck in a transition of sorts. You never see her praying or speaking with your priests though. She'll come around some day. They always do...\n`;
+					break;
+				case 'Multiculturalism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nIn anticipation of the impending global meltdown that doomsday preppers are currently preparing for all around the world, you've had a secret location installed in the arcology, created to match the essential specifications of a modern luxury 'doomsday' bunker. To guarantee the Colonel's survival and comfort in the event of an apocalyptic crisis, you've gone all out: You've carved out an underground formation far underneath the arcology's foundations to build her a private fallout shelter, complete with a secure communications center, her overseer bedroom and several private bedrooms & bathrooms, an artificial aquifer, an agricultural greenhouse, a gymnasium & swimming pool, a fireproof storeroom packed with years worth of dried rations & medical supplies, a stocked munitions room, and a sealed underground passageway leading back up to the surface. When she first entered the overseer bedroom, she found the various emergency survival tomes you've bought for her and her future fellow dwellers. She also saw the extraordinary modular hazmat suit you've had made to her exact measurements, for that special day when she will be ready to emerge from shelter and take on whatever is left of the world.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe troops are provided their pick of foods from many Old World countries and many 'New World' Free Cities alike. Delicacies and drinks from nearly every part of the world are available, with many soldiers even being acquainted with the histories and variations of their favorite dishes.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe porn the troops are given reflects variety; the troops are shown many sexual films encompassing many genres. These films hail from arcologies and societies around the world that specialize in their respective genres, and watching such exquisitely crafted content broadens the troops' sexual horizons immensely and makes for much discussion.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSelect slaves among the slave population wear proper business attire with their collars; during slave meals these slave-lecturers terrify the mass of slaves present with dire and truthful news of recent events in the Old World, and even other arcologies. The unspoken implications are heard by all in attendance: They are all best off where they already are; there is no safety in 'freedom'.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAt the start of each day, the inmates of the slave processing cages are made to stand at attention in neat groups and carry out role call. Each group member is shackled together to form chain-gangs, before these chained groups are herded by armed wardens to perform various harsh menial tasks just outside the Firebase, like digging ditches and trenches, or laying barbed wires or service roads.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nFirebase kitchen organization and common area seating layouts have undergone major overhauls, all to make the Firebase strongly resemble an Old World shopping mall's food court. Food preparation crews have been heavily splintered to staff the dozens of food hut 'restaurants' that now encircle the common area; each 'restaurant' handles a different kind of food exclusively, and what used to be a very unified and versatile staff has now become very scattered and specialized. Every few tables or so has a quaint attraction such as a water fountain, a statue of a war hero or legendary slave, a luxury automobile display, or some other kind of diversion. Such eye candy is emplaced for all to see, each one complete with small benches nearby for sitting, chatting, and admiring.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe barracks formerly had a lackadaisical attitude towards segregation of genders (as some private militaries of the Free Cities are wont to do), but no more. As per Old World regulations, The Barracks now has very clearly defined 'Male', 'Female', and 'Other' Dormitories, Restrooms, and Locker Rooms. There are also stern warnings posted on the nearby bulletin concerning trespassing these boundaries outside of emergency situations.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nLuxury has taken hold of the armory, since it has been decorated to resemble a high-society gun club of the sort growing in popularity in the increasingly dangerous Old World. Fine redwood chairs and tables lie to the side of the main munitions stores, and squads of veterans sit around each table to talk about their day's assignment as they don their war gear or assemble weaponry. The flags of your arcology and its allies hang proudly overhead from every wall, and upon their fatigues your soldiers proudly wear arm patches sporting the flags of their home country or native arcology, right below the flag of your arcology. In a specially-built side room lies an advanced AI-managed shooting range, where soldiers can try out an exotic range of the newest high-tech munitions from the world's most advanced Old World countries and Free Cities alike.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe battle stations of the command center have been rearranged very traditionally. Instead of the previously loose, flexible, and modular floorplan originally employed, the command center's floorplan is now a rough rectangle, with tables, kiosks, and equipment now structured into neat rows and columns according to unit jurisdiction and function. All slave activities are kept strictly to one side of the command center to minimize distractions, as well.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe drug laboratory has secret underground tunnels trailing out of it, leading to secretive drop-off points where the unique concoctions synthesized within the Firebase are sold to anonymous drug traffickers hailing from a multitude of countries and arcologies. In the numerous storage rooms, naked slaves supervised by armed guards are tasked with packaging the many drug kilos that are meant for both Firebase personnel and outside clients. The cash your drug staff makes from its many covert international dealings is crudely piled up, one plastic-foil wrapped bundle after another, all over the drug lab facility, and you see several well-dressed and well-armed 'salesmen' surveying their earnings as they pass. These liberal touches, along with the ubiquitous surplus drug piles, drug-addicted hookers, masked thugs visible, all give this place the air of an Old World drug cartel's villa.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nBeautiful is the sight of the Firebase's diverse population making use of the trinkets purchased through the freedom of multiculturalism. Of course, numerous international best selling media works are sold around here, but so are supplementary items like tourism books & tourist maps for faraway destinations, exotic sculptures and jewelries, exotic incenses and perfumes, and foreign garments and accessories from every visiting culture. Of course premium services like private lessons in esoteric forms of cooking, dance, painting, or any other pastime you can imagine are all here too, for those who feel curious enough to explore them and have the money to afford them.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery inch of your reconnaissance drones has been carefully repainted to make them directly resemble a globe-shaped representation of the planet Earth. As they hover above the battlefield, those few enemies that spot them and futile try to shoot them down are deftly reminded by their appearance that the earth abides, and that the world will go on just fine without them.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSome would say that the Firebase's garage has become a mere showroom. Of course, the garage staff disagrees with this notion; the garage has become a place of demonstration and opportunity. The entire garage has been carefully rearranged; the repair, maintenance, and upgrade bays have been tightly reconfigured to fit snugly into the rear sections of the facility; the forefront of the floorspace has been repurposed to showcase the Firebase's newest and most exciting ground warfare vehicle platforms and upgrades to merchants, commanders, representatives, and dignitaries from a variety of allied and neutral territories and arcologies, as a basis for prospective future cooperation and trade deals, and of course, a form of threat deterrence against those secretly plotting hostilities. Exotic foods and wines are kept on store and made available during exhibition events so as to properly honor each VIP's prescience, and sometimes properly distinguished garage staff and vehicle crews are made to dress up and be introduced to these powerful figures as exalted VIP's in their own right. Overall, repairs take a bit longer to perform due to the troublesome reduction in operating space the workers have, but since these trade shows provide unique support and permissions from abroad, as well as further distinction from the multitude of less cooperative arcologies who do not form international ties as such, is that really a loss?\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery vehicle unit comes with several empty and half-empty scrapbooks, lots of gel pens, and several modern polaroid & HD cameras with extra film and hard disks in reserve, all packed within a special fireproof box underneath the driver's seat; it is hoped that these materials might be used in the field to help vehicle crews capture and better documents the experiences, sights, and discoveries of your vehicle units as they explore, learn, and fight through foreign lands.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour original hangar staff have socialized themselves completely to the multiculturalist agenda, and have become a well-connected group within the Free Cities' international aviation engineering community. This flight club takes its profession very seriously; its members have even invested in modular bionic exosuits that can attach and detach all manner of intricate power tools at will. Every act of repair and improvement is cross-checked and verified by several qualified personnel before the serviced aircraft is approved for its net flight. Scented candles from abroad alleviate the stench of the heavy oils that lubricate your flying machines, while trendy global-trotting music drowns out the sound of heavy mechanical instruments at work. With this level of oversight and professionalism, any instance of malfunction or failure from your aircraft during future operations can be considered nothing short of sheer coincidence.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nUnbeknownst to the variety of non-hostile actors that your aircraft must pass overhead in order to reach their next mission, your selected personal favorite quotes, books & articles excerpts, and works of art taken from your multiculturalist collection are diligently inscribed onto every inch the interior of the aircrafts' cockpits and passenger sections, where vehicle occupants can see them and have their resolve and conviction bolstered by them before and after battle. The ceilings of each aircraft's interior must be scrubbed clean of soot every week as well, since thick and tall imported wax candles are burnt inside of the aircraft interiors during all hours of aircraft operation in remembrance of every pilot and passenger that has died while operating from that aircraft.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA grand supermarket now occupies the prime area behind the common area. The familiar architecture of the structure, combined with the highly prolific paint scheme and globalized interior decoration, makes the building itself acheive a certain rapport with all who enter. The layout of the building is complex, with sections for buying international delicacy foods, rows of racks for shoppers to buy rare and specialized tools and trinkets, and platforms for customers to browse all manner of Free Cities and Old World apparels, luxury cars, exotic pets, and many other amusements. It is also a place of great finds; highly coveted niche publications and artworks are on offer in the less frequented corners, and huge high resolution wallscreens adorn the walls and ceilings as they illustrate the newest products and clearance sales on offer. Everyday, upbeat music and audio adverts can be heard from within the building, inviting all to come and partake of the fun within. There is no doubt that this place serves as the centerpiece to the Firebase's materialistic culture.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA carefully paved world-class swimming pool occupies the exterior of the Firebase, with an intergrated water heater, several water slides, and even a built-in waterfall. The pool and its surrounding platform plays host to the regular pool parties and swimming competitions that are open to all soldiers and staff that have some free time. Laughter can frequently be heard from the swimwear-clad partygoers as they hang out and socialize here.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nLenghty, good-spirited debates and competitions have become regular activities in the Firebase, and that is to be expected. Your exciting, inclusive tolerant, and artistic multiculture fills a void within your warriors that killing, drugging, and whoring do not. For many it provides new outlooks on life, for those that delve deep enough, it provides novel reams of worldly wisdom. Rather than take up space in cemeteries, the bodies of your fallen are promptly cremated to make more room for the living. Every week, ceremonies are held in honor of Life itself. Sanctioned protocols for properly interacting with non-hostile civilians, soldiers, and slaves from foreign countries and arcologies are taught consistently throughout basic training alongside the conventional curricula, which has so far worked well in avoiding faux pas that could have lead to needless conflict with members of other cultures. Soldiers and staff can be heard humming internationally-popular songs or quietly chanting military cadences as they clean weapons and tools, get dressed, move about, and perform many other typical tasks, including fucking. Quite a few officers and NCO's double as language teachers too, and trained interpreters are a coveted addition to any platoon that doesn't already have one. It is common for deployed troops to exchange gifts with one another before mounting up and heading for battle, and as you see a fully kitted infantry section huddled around an ornate tree right now, you are confident that the globalization effort has succeeded.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMulticulturalism: Sometimes when The Colonel is making her rounds in the Firebase, you'll see her wearing a finely tailored business suit, complete with jacket and skirt, much like many wealthy and powerful women these days. Sometimes when she is relaxing or sleeping she'll wear just a simple comfortable bra and panties, like most women around the world do by now too. Her pavilion contains a wide assortment of goods made from countries all over the world, not just this part of it. Her combat battledress now features a simple cloth beret and a collapsible ballistic shield painted to look like the flag of the ${V.SF.Lower}.\n`;
+					break;
+				case 'Slimness_Enthusiasm':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nIn celebration of Slimness Enthusiasm, you've gifted the Colonel with her very own fleet of small single-seater reconnaissance buggies, all made from extremely lightweight-yet-durable alloys, and precisely engineered miniature nuclear reactors meant to allow each vehicle in the fleet to achieve obscene speeds in the field in all terrains. They even come with roof hardpoint mounts for mounting light remote-operated weapons. Thanks to their stellar support systems they also ensure driver safety and orientation during use, reliably absorbing and redistributing the energy received from the the multitude of shocks, bounces, g-forces, jolts, jumps, and other maneuverability hiccups that would make these vehicles impossible to handle without them. All that being said, they are very fun to drive and eventually master. Also, their extreme mobility, tiny target profiles, quiet engines, and ease of camouflage all make them excellent recon vehicles for the Colonel and her friends to use for races, scouting missions, and raids whenever things in the Firebase get too boring.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe meals are prepared and presented as low-calorie or even calorie-free, stripping fatty content wherever possible. Smaller portions and slices than market standard are not uncommon either.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMuch of the movies and porn videos the troops receive prominently feature glamorous model-thin actors and actresses alike, with tiny tits and asses, and usually very little bodyfat. With bodies so light and thin, every endeavor onscreen, from fight scenes to sex scenes, is usually very intense and fast paced. \n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA good portion of the slaves in the Firebase are quite skinny. They have slim assets on their bodies and are generally lightweight. A few discerning troops are seen checking them out from afar, from time to time.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe new slaves kept in the processing cages are aggressively slimmed down. They are given only one medium-sized meal at midday, and yet they are required to work and train for their new lives just as hard as any other slave.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAlong the greatest length of the common area, there is a full proper running track, complete with laid tarmac and white paint. It is comparable to the tracks used by any modern sports team, and even has a tiny booth staffed by in-house bookies, where troopers go to place their bets or collect their prizes for the weekly slave Races and monthly Coursing games. This track also has a feature you wouldn't find on most tracks, which are the compact wheeled cages on either end, for owners to store their prized runner slaves, or collect a runner slave they just won through their bets. Aside from concession stands, raised seats are lined up on the sides of the racetrack, for spectators and judges to observe and film the footraces themselves.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nTo emphasize the fashion for slimmer slaves and soldiers, the rooms of the Barracks have been renovated to make each one smaller, with thinner walls. This has the secondary effect of freeing up space for a few additional rooms altogether.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery single weapon and armor rig in the armory has been stripped to its bare essentials, and every soldier is incentivized and encouraged to find innovative new ways to make their assigned weapon even lighter while preserving as much as possible of its performance. Many assets and materials are provided freely within the armory for this purpose, with soldiers often coming here on their off hours to make use of the hired gunsmiths, installed workbenches, and 3D printer fabricators on-site to make additional weight reducing tweaks to their hardware.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nBattlestations within the command center are tightly packed together to maximize the space available, thus making room for even more command areas to be squeezed in. Thankfully, this allows for the command staff to run more operations simultaneously than ever before, considerably increasing their tactical capacity. This is possible because the existing furniture and equipment of the area, including the slaves assigned here, have been replaced with slimmer variants that perform just as well, thus freeing up space.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe drug lab facility has a built-up concert hall extension where off duty personnel can come and PARTY! Performers from all across the Free Cities are hired to come and give remote 3D hologram performances to the weekend crowds that come here, and there is a great deal of jumping and shouting as part of the activities. Spicing up the festivities is the abundance of newfangled trial drugs freely given to those who come, since your chemical engineers are happy to let visitors be their second test population for the effects of their newer substances. After each event, hundreds of empty syringes and cups alike can be seen all over the floors.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour Firebase people like to keep things light. Duffel bags, handbags, and other form of off-duty carriage are now rather small, as you troops like to keep only bare essentials with them. Tight, form fitting clothing is the norm, and it has been noted that even personal computers, smartphones, flash drives, and so on are only available in downright tiny variants, as if lugging around even normal size, somewhat-bulkier equipment were a social taboo. Since smaller luggage has become the standard, the personnel have become minimalists too. Many of the Firebase population have drastically downsized their personal in-house inventories to better fit in, with many people making use of premium storage containers for excess possessions. 'Less is more' is no longer just a saying, after all.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMost of the drones of the Firebase have been slimmed down through very skillful remodeling, so as to give them a seeker profile and smaller target signature.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAdvanced technologies were always implemented within the Firebase, and the garage is no different. Slimness Enthusiasm mania has pushed the garages procurement specialists working out of the rear offices of the facility to acquire complex new ultra-lightweight vehicle chassis kits for your ground vehicles.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSince their initial delivery into the Firebase, your ground vehicles have been nearly completely rebuilt using the finest in modern lightweight metal composite kits, replacing your vehicles' original heavy metal composition with much lighter alternatives. These modification have made your ground units lighter (allowing most of their vehicles to be air-liftable so as to better carry out advanced air assaults) as well as faster and slimmer. Of course, some degree of amour protection and survivability was sacrificed to achieve this.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nShort, thin, and narrow revetments separate each of the aircraft stored in the hangar, and the thin airmen that occupy the hangar have no trouble squeezing under and in between the tight spaces around in order to work on the many aircraft. There is quite a bit of free space in between each workstation because every area of the facility has become so very trim and tightly packed.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe aircraft within the hangar cannot be slimmed down too much without stripping away at key systems and compromising their functionality, so instead the staff have settled for modifying their weight. Great expense has been taken to replace each airframe hull component with durable lightweight composite metal alloys, giving each aircraft a lighter weight and higher speed while retaining just as much of its original constitution. Because of this, Firebase aircraft are renowned on the battlefield for their speed, and despised for just how hard they are to score hits on because of their great speed.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe barracks themselves have a new section built, and this section is very special: It is a comfortable, if minimalist, public housing condominium intended to host the families of those officers who desire to have their loved ones live in the comfort and safety of the Free Cities at minimal cost. Much like the building itself, each apartment of the condominium is slim but luxurious, and for the families that have chosen to live in this place, there is much fun to be had on the roof, which has its very own civilian-only swimming pool, hot tub, and barbeque platforms overlooking the rest of the Firebase.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe colossal retractable blast doors that seal the Firebase whenever entry or exit are not required are no longer covered with only mere composite armor plating; the exterior armor plating is now itself covered by two massive interactive motion wallpapers depicting several very slim and very beautiful girls that are always beckoning incoming parties and even casual onlookers to enter.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe population of the Firebase is slim-bodied. All personnel, from cooks, to pilots, to infantry, have some form of size reduction done to themselves; liposuctions have become quite popular, and breast and buttocks reductions procedures are in vogue. Cash bonus incentives as well as positive peer pressure are used as useful forces to push new recruits into the slimness mindset. Sleek is sexy, and your soldiers embrace this attitude wholesale, with the compactness of one's body parts and possessions considered a key indicator of social status as well as personal areas of continuous improvement.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSlimness Enthusiasm: The Colonel has gotten several additional slaves for her pavilion, and they are very trim, with flat bellies and minimal assets. Sometimes you spot the Colonel casually picking one of them up wholesale and carrying them over her shoulder to her couch for use.\n`;
+					break;
+				case 'Asset_Expansionism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nIn celebration of Asset Expansionism, you've gifted the Colonel with her very own super-heavy missile tank. Making up its shape are its four wide tracks and its thoroughly protective armoring that includes thick Chobham-based armor, overlapping detachable NERA plates, a mine-resistant underbelly, and broad RPG cages along the turret, roof, & hull. It has equally excessive weaponry too; with its large crew, its high-caliber quad-barrel autocannons, automatic grenade launchers, and its ATGM hunter-killer turrets, it can engage myriad opponents simultaneously. The missile tank's computing systems maximize it's crew's situational awareness using thousands of real-time data sources, ensuring that the crew always has optimal targeting solutions and can avoid enemy strafing and flanking attempts. These features make this mobile weapons platform a great asset in the field, despite its large target profile. All in all it is a very fun vehicle for the Colonel and her friends to take onto the battlefield for explosions and giggles whenever things in the Firebase get too boring. `;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEach food item that ends up on the plate of your soldiers is bigger than it might normally be. For example, in the fast food section, everything served, from the meat patties to the buns to the French fries and the soda tubs that come with them, are all individually huge by Old World standards, filling the plates and paper bags they come in rather easily. Colossal cakes, pies, and other goodies are on display next to the other foods on offer in your Firebase, which are also bigger than they should be.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMany device screens in the Firebase are utterly filled with asses and tits, as truly stacked slavegirls star in all manner of pornos. Some of these screens are instead filled with 'big junk', as massively endowed male actors use their large equipment on their partners in all manner of positions too.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nA good portion of the slaves in the Firebase are quite stacked. They have large assets on their bodies and are generally heavy from the weight of all that extra flesh. A few boisterous troops are seen ogling them from afar, from time to time.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nGrowth hormones are given in small doses every week to the captives in the processing cages every week. It doesn't take long before each new batch is populated by slavefolk with impressive proportions.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery chair and table in the common area has been heavily reinforced to safely handle the weight of the slaves, should they be brought to bear. In addition, they have all been significantly widened as well to accommodate for the vast proportions. No matter how stacked the slave, or how said slave is being utilized, they shall be easily handled now.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nTo emphasize the fashion for well-endowed slaves and soldiers, the beds of the Barracks have been reinforced to make each one wider, with stronger bedframes. This has the secondary effect of freeing up space for a few additional sex slaves in each bed, or a single greatly stacked one.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe men and women of the Firebase are always encouraged to expand upon their weaponry, and for most, the armory is the place to do exactly that. In the center of the armory lies a massive table that hosts a dizzying and splendid assortment of magnetic picatinny rails, huge under-barrel shotguns or grenade launchers, tritium iron sights, broad and adjustable laser sights, large zoomable scopes, collapsible tactical bipods and tripods, extended or reinforced gun barrels, adjustable stocks, extended magazines, massive drum magazines, terrifyingly large bayonets and combat knives, bulky grenades with extra fragmentation effects, and so on, and so forth. Troops are encouraged to pile as many attachments and accessories onto their weapons as practically possible, and by the time they are done, you could swear that their weapons are almost as big as they are.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nBattlestations within the command center are twice as tall as they were before, due to the implementation of universal equipment redundancies. Every wall-mounted machine, holographic operations table, computer console, digital archive, and backup hard drive has been bolstered with the existence of new identical back up copies, ensuring that no data is lost should some terrible accident, physical attack, or cyber breach occur. These backups have been been stacked vertically to avoid taking up precious floorspace.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe drug lab facility has a built-up topless bar extension where off duty personnel can come and drink themselves silly. All manner of typical bar snacks and games can be found, with darts, beer pong, and other games of marksmanship being particularly popular. Of course, the men will sometimes tire of these games and decide to play with one of the numerous big-tittied barmaids instead. Spicing up the festivities is the abundance of newfangled trial drugs freely given to those who come, since your chemical engineers are happy to let bar patrons be their second test population for the effects of their newer substances. After each event, lots of empty syringes and spilt beer alike can be seen all over the floors.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour Firebase people like to go heavy. Duffel bags, handbags, and other form of off-duty carriage are now rather large, as your troops like to keep all of their conveniences on hand. Elastic, form fitting clothing is the norm, and it has been noted that even personal computers, smartphones, flash drives, and so on are only available in downright massive variants, as if toting around even normal size, somewhat-sleeker equipment were a social taboo. Since bigger luggage has become the standard, the personnel have become maximalists too. Many of the Firebase population have drastically upsized their personal in-house inventories to better fill their baggage out, with many people making use of premium storage containers for excess possessions. 'More is more' is no longer just a saying, after all.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMost of the drones of the Firebase have been bulked up through very skillful refitting, so as to give them bulkier profile and greater armor protection.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAdvanced technologies were always implemented within the Firebase, and the garage is no different. Asset Expansionism mania has pushed the garages procurement specialists working out of the rear offices of the facility to acquire complex new high-caliber vehicle armament suites for your ground vehicles.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSince their initial delivery into the Firebase, your ground vehicles have been nearly completely rearmed using the finest in modern composite-material multipurpose heavy guns and heavy autocannons, replacing your vehicles' original general purpose weaponry with much more destructive alternatives. These modifications have made your ground units much bulkier, as well as heavier (preventing some units from being air-lifted for advanced air assaults) but much more terrifying and deadly, as your vast tank barrel can be seen even from afar. Of course, some degree of mobility was sacrificed to achieve this.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nTall, thick, and wide revetments separate each of the aircraft stored in the hangar, and the well-endowed airmen that occupy the hangar have gotten used to squeezing under and in between the tight spaces around in order to work on the many aircraft. There is not much free space in between each workstation because each individual workstation has been made huge in order to handle bigger workloads.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe aircraft within the hangar cannot be bulked up too much without increasing their weight significantly and thus compromising their functionality, so instead the staff have settled for modifying their appearance. Great expense has been taken to augment each airframe with an integrated 360 degree long-range holographic projector, giving each aircraft an utterly massive false appearance that is intended to terrify enemy ground troops and cause many of their active shooters to miss, as their shots pass harmlessly through some of the airspace that the aircraft's hologram is projected through. Because of this, Firebase aircraft are renowned on the battlefield for their apparent size, and despised for just how hard they are to score real hits on despite their large target profile.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe barracks themselves have a new section built, and this section is very special: It is a spacious public housing condominium intended to host the families of those officers who desire to have their loved ones live in the comfort and safety of the Free Cities at minimal cost. Much like the building itself, each apartment of the condominium is expansive but plain, and for the families that have chosen to live in this place, there is much fun to be had in the lobby, which has its very own civilian-only movie theatre, recreation center, and sports arenas independent of the rest of the Firebase.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe colossal retractable blast doors that seal the Firebase whenever entry or exit are not required are no longer covered with only mere composite armor plating; the exterior armor plating is now itself covered by two massive interactive motion wallpapers depicting several very busty and very beautiful girls that just beckoning incoming parties and even casual onlookers to enter.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe population of the Firebase is big-bodied. All personnel, from cooks, to pilots, to infantry, have some form of size increase to bear; genital enlargement, breast enlargement, and buttocks enlargement options are all available and widely used, with lenient but firmly enforced size limitations existing only to ensure the troops remain proportionate enough to carry out their duties effectively. Bigger is better, and your soldiers embrace this attitude wholesale, with the volume of one's body parts and possessions considered a key indicator of social status as well as personal areas of continuous improvement.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAsset Expansionism: The Colonel has actually gotten herself some respectable and breasts and buttocks; they are perky and big by most Old Worlder's standards, but come just short of being truly cumbersome to a warrior like herself. To your trained eye, her enhancements are even natural; probably from A-HGH injections. You are impressed. When she gets ready, she'll have one of her newer, very sizable slaves come up so play with her. There is this one very well endowed male slave she has that you almost pity; she gets endless amusement from frequently blue-balling him with her hands, feet, enhanced breasts or buttocks, or even pussylips whilst mocking him for getting his hopes up yet again.\n`;
+					break;
+				case 'Roman_Revivalism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nThe Colonel has been bestowed with an unmistakable and peerless. badge of office - a mastercrafted SPATHI sword, forged from nigh-unbreakable metals, made extremely sharp with the help of a machine that she also now owns, and equipped with an inbuilt communications array, holographic display projector, recharging port, and fingerprint scanner that delivers electric shocks to anyone other than the Colonel when wielded. It comes with an immaculate sheath, and a complementary gold-wrought laurel wreath and fine linen toga, further enabling her to command the legions of the Firebase with absolute authority and authenticity within the Roman tradition.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYou spare no expense to supply your troops with increasingly rare boar and deer meat, distinctive of Roman cuisine.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSoldiers also enjoy fresh fruits while watching gladiator games, public speakings of famous orators or the history of Ancient Rome on wall-screen TV.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAll of the slaves serving here are from outside of your arcology, captured during the many military expeditions staged from the Firebase.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAll new slaves are being re-educated in the specially-built Paedagogia, busily learning the Latin dialect and Roman mannerisms and customs.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe common area has been stylized to look like an Ancient Roman forum, where the spirit of greatest Empire is still alive.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSoldiers sleep and live in dormitories built in classic roman design, being accented with both marble pillars and marble statues.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe weapons and armor of your troops are stylized after the Roman Legions of old, with each soldier gifted with a modernized gladius.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe command center is a bastion of the Roman spirit, adorned with reliefs depicting the Gods and great battles in history of Imperium Romanum; a grand exaltation of discipline and militarism.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMeanwhile, the local Valetudinarium serves a place of healing and enhancement, where miracles of cutting-edge modern medicine as well as more traditional cures are available for your legionnaires.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nLuxurious togas and (especially for many women) elaborate jewelry have become a widely popular fashion for your troops in between missions.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe nearby drone bay section, dubbed 'De Spelunca Harpyis', contains quick and deadly 'mechanica harpyis' drones with stylized wings, ready to deploy.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe garage, also known as the Stabula Machinis, is filled with noise of mechanicuses performing check-ups, upgrades, and repairs on your vehicles, making sure that Roman engineering is still the best in the world.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nParticular vehicles within the garage have been painted and modified to look more like quadrigas of old, with four horse heads and intricate reliefs of weels.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe hangar, also known as the Aer Navale, is filled with noise of mechanicuses performing check-ups, upgrades, and repairs on your aircraft, while the stalwart nauta caeli prepare for their next flight to ensure your dominance.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery single aircraft hull in the hangar is numbered with Roman numerals as opposed to modern digits.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYou also spot a distinguished citizens here and there browsing nearby vendors that are selling trophies and loot acquired from previous missions and raids. These wares are not being sold by the legionnaires themselves, of course, as such a task is beneath their status. After their missions your soldiers also visit Thermae - a popular place to relax and socialize.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nOutside the Firebase gates, several dozen crucifixes stand tall and erect; captured deserters and informants, would-be assassins and enemy scouts, exposed spies and infiltrators, reviled enemy leaders, and incompetent or uncommitted Firebase soldiers are tied to the crosses and made to hang from them. Their sentences there can last for hours, days, or until death, depending on the severity of their transgressions as determined by the officers involved in their detainment.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour soldiers put in effort carry themselves in a stoic, disciplined, and dignified manner at all times. They identify first and foremost as 'legionnaires', and are proud to have an efficient state such as yours to all home and fight for. In their personal dealings, they do their best to handle most affairs using the esteemed Latin dialect, and they avoid unseemly things like debt, lying, and oath-breaking like the plagues that they are. These are true Roman men and women, and they will bravely carry your society into the future as they carry your name through the lands.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nRoman Revivalism: Sometimes when The Colonel is relaxing or just making her rounds in the Firebase, you'll see her wearing nothing but her laurel wreath and toga. She also likes to sleep in such attire. Her pavilion sports four white marble columns in its corners, topped by a white marble roof with light fixtures installed. Her combat battledress now features an ornate golden helm, sword, and cape as well.\n`;
+					break;
+				case 'Aztec_Revivalism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nIn honor of the soaring Aztec Revivalism of the Firebase, you've granted The Colonel a little Aztec empire of her own; you've purchased and rejuvenated a distant outcropping of ideal land, seeding it with the proper flora and fauna of the rainforest and constructing within them a modest step pyramid, a sacrificial altar, a miniature palace retreat for her lodging, and a few dozen huts populated by low-class Aztec Revivalists who pay their taxes to her during her visits here. Regardless of her feelings about Aztec Revivalism, the Colonel is flattered and amused to have her own little province to rule as she pleases.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYou spare no expense to supply your troops with increasingly rare fruits and vegetables, distinctive of Aztec cuisine.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSoldiers can also enjoy poaceae plants, like famed corn, while playing patolli or watching ullamaliztli on wall-screen TV.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nDown here, the slaves are eager to please their masters; each slave consistently works hard in hopes of earning their freedom someday.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAll new slaves are being re-educated in the Tezcatlipoca's temple, diligently learning about Aztec manners, culture, and language.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe common area has been stylized to look like the ceremonial center of an Aztec city, where the gaze of bloodthirsty Gods can be felt.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSoldiers sleep and live in dormitories built in pre-European Mesoamerican design, adorned with gold, carved stone, and fine hand-crafted furniture.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe weapons and armor of your troops are stylized after the otomi's ones in the ancient Aztec army, with each soldier gifted with a modernized huitzauhqui.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe command center of the Otomies is adorned with statue depictions of the Gods made from pure gold, and wall paintings of great battles in history of Excan Tlahtoloyan that serve as praise of fierceness and bravery.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMeanwhile, the local Temple of Patecatl and Ixtlilton serves as a place of healing and enhancement, where miracles of cutting-edge modern medicine as well as more traditional cures are available for your yaoquizqueh.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nJewelry made from gold and jade, as well as elaborate headdress from quetzal and cotinga feathers grown in your very arcology have became a wide popular fashion for your troops in between missions.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIn the nearby temple of Xolotl, engineer-priests prepare the mechanical xoloitzcuintli for the next hunt.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAside from normal duties, engineers also make sacrifices to the Gods in hopes to please them and ensure that the vehicles do not malfunction.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nParticular vehicles within the garage have been painted in many bright colors and modified to make them appear more animalistic and primal in nature.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAside from normal duties, engineers also make sacrifices to the Gods in hopes of pleasing them; they need to ensure that the aircraft do not malfunction and that the winds prove favorable in the field.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nBefore every mission, a handful of blood from the most recent sacrifice is taken and ritually sprinkled across the hull of each aircraft due for deployment, thus ensuring their flight mission readiness.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYou also spot vendors selling exotic ancient Mesoamerican clothing, rare war paint, feathers strike the eye with their bright colors, and mannequins in full Aztec clothing as you pass. Nearby, a sacrificial altar in the shrine of Huitzilopochtli is almost always wet with blood.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nOutside the Firebase gates, a small stony step pyramid has been carefully erected; captured deserters and informants, would-be assassins and enemy scouts, exposed spies and infiltrators, reviled enemy leaders, and incompetent or uncommitted Firebase soldiers are brought here for ritual sacrifice. Their execution rituals there can last for a few seconds, minutes, or hours, depending on the severity of their transgressions as determined by the officer-priests involved in their detainment.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour soldiers put in effort to always be fierce, courageous, and ambitious at all times. They identify first and foremost as modern Aztec 'warriors' of your arcology, and are quite proud to have such a blessed empire such as yours to call home and fight for. In their personal dealings, they do their best to handle most affairs using proper Aztec dialect, and they are not hesitant to give their regular blood tithes as tribute to help ensure the arcology's prosperity. These are true Aztec men and women, and they will ferociously carry your society into the future as they slash and burn their way through your many enemies.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAztec Revivalism: Sometimes when The Colonel is relaxing or just making her rounds in the Firebase, you'll see her wearing nothing but her leather loincloth and feathered hat. She also likes to sleep in such attire. Her pavilion sports a lot of indoor plants now. She has some Aztec-inspired tattoos. Her combat battledress now features gold highlights and a camouflaged loincloth as well.\n`;
+					break;
+				case 'Egyptian_Revivalism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nIn honor of the prevailing Egyptian Revivalism of the Firebase, you've granted The Colonel a little Egyptian empire of her own; you've purchased and rejuvenated a distant outcropping of pristine land, seeding it with the proper flora and fauna of the Nile valley and constructing within it a modest proper pyramid, a majestic sphinx, a miniature palace retreat for her lodging, and a few dozen huts populated by low-class Egyptian Revivalists who pay their taxes to her during her visits here. Regardless of her feeling about Egyptian Revivalism, the Colonel is flattered and amused to have her own little province to rule as she pleases.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYou spare no expense to supply your troops with increasingly rare plants and meat of animals living in the Land of the Nile.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSoldiers also enjoy fresh barley beer, while watching festivals in honor of various Gods or stories and dramas of Ancient Egypt on wall-screen TV.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMany among the diverse crowd of slaves here are communal, with most of them belonging to the military itself instead of any individual soldier.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAll new slaves are being re-educated in the nearby Temple of Toth, steadily learning about Ancient Egyptian customs and dialect.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe common area has been stylized to look like an Ancient Egyptian urban district, with temples and public places, where the spirit of Ancient Egypt is reborn.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSoldiers sleep and live in dormitories built in Ancient Egyptian design, adorned with hieroglyphs and pictures of battles the occupants were a part of.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWeapons and armor of your troops are stylized after the armies of the New Kingdom, with each soldier gifted with a modernized khopesh.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe command center is monumental, adorned with hieroglyphs and depictions of the Gods and great battles in the history of Kemet, and hieroglyphic wall inscriptions praising loyalty to the Pharaoh and glorifying him.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMeanwhile, the local Temple of Imhotep srves as a place of healing and enhancement, where miracles of cutting-edge modern medicine as well as more traditional cures are available for your nakhtu-aa.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nElaborate jewelry, luxurious tunics, wigs, and even burning perfume cones have become popular fashion trends for off-duty personnel to wear in between missions.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nIn the nearby temple of Am-heh, engineer-priests prepare his mechanical hounds for the next hunt.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe garage, also known as The Temple of Ptah, is filled with noise of reureiopes performing check-ups, upgrades, and repairs on your vehicles, thus continuing the legacy of their ancient predecessors.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nParticular vehicles within the garage have been painted and modified to look more like chariots of Ancient Egypt, being adorned with golden reliefs as they are.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe hangar, also known as the Temple of Shu, is filled with noise of reureiopes performing check-ups, upgrades, and repairs on your aircraft. Now even the skies are ruled by their Pharaoh.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe interior cockpit of every vehicle contains weathered scrolls depicting every battle that particular aircraft has been in thus far, as well as that aircraft's role within said battles.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYou also spot jewelry and clothing in Ancient Egyptian style, exotic perfumes, and incenses all being sold in specialized shops around the common area. Nearby, a shrine to Montu is often visited by the soldiers.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nOutside the Firebase gates, a respectable limestone sloped pyramid has been carefully built with deep underground crypts for the benefit of deceased distinguished individuals; officers slain in the line of duty, retired officers deceased of natural causes, deceased scouts and informants that have done invaluable work for the Firebase, honored civilian leaders from the arcology proper, and heroic and legendary Firebase soldiers are all brought here for ritual burial, should they request for this honor whilst still alive.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour soldiers put in effort carry themselves in an enlightened, tolerant, and open-minded manner at all times. They identify first and foremost as the defenders of your 'New Kingdom', and are proud to have an ascendant nation-state such as yours to call home and fight for. In their personal dealings, they do their best to handle most affairs using the preferred Egyptian dialect, and they avoid unseemly things like uncleanliness, ignorance, and stagnation like the plagues that they are. These are true Egyptian men and women, and they will boldly carry your society into the future as the scribes record the history of your conquest through the lands.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEgyptian Revivalism: Sometimes when The Colonel is relaxing or just making her rounds in the Firebase, you'll see her wearing nothing but her sandals, a linen skirt, and a linen sports bra. She also likes to sleep in such attire. She has many hieroglyphics tattooed onto her back and arms as well, depicting a summarized account of her life story. Her pavilion sports four limestone pillars in its corners, all covered with hieroglyphs, holding up a limestone roof with light fixtures installed. Her combat battledress now features hieroglyphics depicting previous victories as well.\n`;
+					break;
+				case 'Edo_Revivalism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nWith your wealth and influence, you've managed to compile the world's most comfortable, sophisticated, durable, and expensive fabrics into one magnificent garment; The Colonel's Kimono. It is an article of unmatched beauty, modernity, and comfort: Its soft, sweat-wicking cloth interior make it an airy albeit form-fitting dress, while its waterproof exterior ripstop digital cloth-screen fabric allows it to adopt any appearance or combination of appearances the Colonel desires. Between the two, a thin soft padding of lab-grown silk-Kevlar hybrid weave allows the kimono to resist direct hits from knives, shrapnel, and even intermediate small arms fire, and between the weave layers lies internal heating and cooling wiring that serve to ensure she is always at a good temperature. Combine this super-dress with the collapsible titanium razor-sharp oriental fan and chopsticks that the Kimono came with, and the Colonel is now one of the best dressed and best protected women in the entire arcology.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYou spare no expense to supply your troops with increasingly rare marine dishes, distinctive of Japanese cuisine.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSoldiers can also enjoy sake, while watching kabuki performances and dramas of Edo Japan on wall-screen TV.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nComfort slaves make up a the large part of slave population here, which is a natural state of affairs for a Free Cities military base.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAll new slaves are being re-educated in the specially-built Terakoya, rapidly studying their way through the complexities of Edo period Japan's manners and language.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe common area has been stylized to look like a samurai district, where the Bushido Code is alive and thriving once more.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSoldiers sleep and live in dormitories built in traditional Japanese design in style of shoin-zukuri, adorned with wood and rooms separated by shoji.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe weapons and armor of your troops are stylized after the armies of Edo Bakufu, with each soldier gifted with a modernized katana.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe command center has an interior of a samurai's keep, adorned with weapons, armor-stand,s and art depicting great battles in the history of Nippon and framed calligraphy praising the adherence to bushido.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMeanwhile, the local Byoin serves as a place of healing and enhancement, where miracles of cutting-edge modern medicine as well as kanpo igaku are available for your samurai.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nLuxurious kimonos, expensive weapons, and heavy makeup have became a popular fashion for your female soldiers in between missions.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe nearby drone bay section, dubbed 'Karasu No Su', contains chibi-karuras upgraded with flamethrowers, ready to deploy.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe garage, also known as the Shuri-ya, is filled with noise of gishis performing check-ups, upgrades, and repairs on your vehicles, only striving to achieve nothing less than perfection.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nParticular vehicles within the garage have been modified to be intimidating with painted or adorned demonic heads.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe hangar, also known as the Eadokkuyado, is filled with noise of gishis performing check-ups, upgrades, and repairs on your aircrafts, while the stalwart hiko-shi prepare for the next flight for the glory of their Tenno.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEvery single aircraft hull in the hangar is numbered with Kanji and Katakana numerals as opposed to modern digits.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYou also spot nearby specialty shops selling high-quality traditional Japanese weaponry and clothing. These shops flank the luxurious Edo restaurant where off-duty soldiers can come to enjoy fresh sake with sushi, onigiri, and other traditional Japanese delicacies. In nearby dojo, some of your soldiers drill and improve their martial arts skills as part of their personal development.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nOutside the Firebase gates, a multi-storied Japanese teahouse carefully built to conform to Edo aesthetics can be found; foreign traders and diplomats, aspiring recruits and job applicants, brave journalists and researchers, prestigious arcology citizens and tourists, ambitious businessmen and PMC talent scouts, and even retired Firebase soldiers looking to catch up with old friends are all invited here to partake of the tea, sake, and tantalizing slave-geisha performances and talk shop with the very well informed, charismatic, and articulate public relations personnel assigned here to deal with guests and address the outsiders' questions and concerns about the Firebase and its people.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour soldiers put in effort carry themselves in an elitist, industrious, and proud manner at all times. They identify first and foremost as soldiers of 'the emperor', and are proud to have a rising sun such as your arcology to call home and fight for. In their personal dealings, they do their best to handle most affairs using the esteemed Japanese dialect, and they avoid unseemly things like rudeness, impropriety, and dishonor like the plagues that they are. These are true Edo men and women, and they will passionately carry your society into the future as they fight in your name, through the lands.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nEdo Revivalism: Sometimes when The Colonel is relaxing or just making her rounds in the Firebase, you'll see her wearing nothing but a yukata and sandals. She also likes to sleep in such attire. She has also had a summarized account of her life story tattooed onto her back and arms, some parts in Kanji and some parts in Katakana. Her pavilion floor is now covered in high quality tatami mats. Her combat battledress now features an Oni mask, Katana, and some lightweight Samurai-inspired plating as well.\n`;
+					break;
+				case 'Arabian_Revivalism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nWith your wealth and influence, you've managed to compile the world's most comfortable, sophisticated, durable, and expensive fabrics into one magnificent garment; The Colonel's abaya. It is an article of unmatched grace, modesty, and comfort: Its soft, sweat-wicking cloth interior make it an airy albeit form-fitting dress, while its exterior ripstop light-absorbing carbon-black fabric allow the Colonel to simply disappear at will into shadows and dark rooms when she so pleases, especially if she decides to use the detachable niqab the garment came with. Underneath the dark exterior, a thin soft padding of lab-grown silk-Kevlar hybrid weave allows the abaya to resist direct hits from knives, shrapnel, and even intermediate small arms fire, and between the weave layers lies internal heating and cooling wiring that serve to ensure she is always at a good temperature. With a dress like this, the Colonel is now one of the best dressed and most classy women in the entire arcology.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYou spare no expense to supply your troops with increasingly rare lamb and chicken meat, distinctive of Arabic cuisine.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSoldiers can also enjoy high quality coffee and arak, while smoking hookahs and watching middle-eastern dances or programs about philosophy and history of the Old Caliphate as well as the emerging new one on wall-screen TV.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMost of the slaves here are concubines in the personal harems of your wealthiest soldiers.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAll new slaves are being re-educated in the specially-built Dar Al-Hekma, learning everything they need to know about the Sharia law, the Quran, and the Arabic language.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe common area is constructed in accordance with Sharia Law, with divisions introduced and enforced between genders, ethnic origins, and cultural perspectives. As a result, the common area is now a very fragmented place.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSoldiers sleep and live in dormitories built in traditional Arab design, adorned with girih tiles, carpets, and ivory or wooden carvings.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe weapons and armor of your troops are stylized after the armies of the Old Caliphates, with each soldier gifted with modernized saifs.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe command center is a bastion of Arab spirit, adorned with reliefs depicting the great battles in history of the Islamic Golden Age and framed excerpts from the Quran praising courage and faith in Allah.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMeanwhile, the local Dar al-Shifa serves as a place of healing and enhancement, where miracles of cutting-edge modern medicine as well as more traditional cures are available for your junud.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nLuxurious clothing, jewelry, and intricate devices imbued with gold and gems became a fashion standard for your troops to wear in between missions.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe nearby drone bay section, dubbed 'Eash Alrukh' contains sturdy and powerful 'saghir alrukh' drones with stylized wings, ready to deploy.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe garage, also known as the Kiraj, is filled with noise of muhandises performing check-ups, upgrades, and repairs on your vehicles, thus continuing to impress the world with arab ingenuity.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nParticular vehicles within the garage have been painted and modified separately, with much inspiration taken from camel cavalry of old; these 'cavalry' vehicles have been equipped with two turrets mounted on their roofs.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe hangar, also known as Hazirat Al-Tayirat, is filled with noise of muhandises performing check-ups, upgrades, and repairs on your aircrafts, while the stalwart altayarayn prepare to strike the enemies of the new Caliphate from above.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe hulls of every aircraft in the hangar are painted with Arabian war chants, written in the Arabic dialect with the help of bold and heavy black paint.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYou also spot a wide variety of goods being sold here: from Arabic coffee and Alyans to clothing and trinkets for both wealthy soldiers/masters and the numerous slaves in their harems. Meanwhile, new asasiyun are created in a facility that improves soldiers' drug usage in battle.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nOutside the Firebase gates, a very large and luxurious tent has been permanently erected; recently captured singers and dancers, barely-legal virgin teens, sexually attractive enemy soldiers, exposed spies and infiltrators, minor performers and pornstars in the region, and indebted or extremely adventurous arcology citizens are brought here for intensive and advanced training and aesthetic adjustments. Such is the expertise and equipment of the slavers inside, that on the last day of every month, a lineup of very expensive, but very desirable and exceptionally obedient slaves is made available for a sizable crowd of known wealthy from your arcology to bid on and add to their harems.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour soldiers put in effort carry themselves in a pious, privileged, and proud manner at all times, befitting their status as masters or mistresses. They identify first and foremost as 'freedom fighters' of the new Caliphate, and are proud to risk their lives fighting against the freedom of others. In their personal dealings, they do their best to handle most affairs using the esteemed Arabic dialect, and they avoid stress and worry as best they can, content to while away the hours enjoying the many entertainments on offer, including those offered by their own harems, provided they have them. These are true Arabian men and women, and they will gladly carry your society into the future as they conquer new peoples and divide ever more new slavegirls amongst themselves.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nArabian Revivalism: Sometimes when The Colonel is relaxing or just making her rounds in the Firebase, you'll see her wearing nothing but a loose abaya and sandals. She also likes to sleep in such attire. She has also had a summarized account of her life story tattooed onto her back and arms in Arabic. Her pavilion also has a large, festive prayer mat on it, but since she only does her daily workout on it, you suspect she just likes the way it looks. Her combat battledress now features a camouflaged shemagh to keep dust out of her face, and a large billowing abaya with open sides to conceal the rest of her worn battle gear.\n`;
+					break;
+				case 'Chinese_Revivalism':
+					if (textDisplay === -1 && V.SF.FS[FS_OPTIONS[i]].gift > 0) text += `\nIn honor of the prevailing Chinese Revivalism of the Firebase, you've granted The Colonel a little Chinese empire of her own; you've purchased and rejuvenated a distant outcropping of bountiful land, seeding it with the exotic flora and fauna China is known for, and constructing within it a miniature forbidden city, complete with fields of potted flowers, a majestic courtyard, and a palace retreat for her lodging. It is populated by low-class Chinese Revivalists who ac as her personal staff of servants and guards during her visits here. Regardless of her feelings about Chinese Revivalism, the Colonel is flattered and amused to have her own little palace to play Empress in.\n`;
+					if (textDisplay === 5 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYou spare no expense to supply your troops with increasingly rare Chinese delicacies. While rice-based food is a standard, soldiers can also enjoy a multitude of exotic dishes and beverages of Imperial China.\n`;
+					if (textDisplay === 10 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSome of the personnel play lively games of Go or watch Chinese opera on a wall-screen TV.\n`;
+					if (textDisplay === 15 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMost of the hard menial labor around here is done by eunuchs, while the proper slave-girls entertain their off-duty masters.\n`;
+					if (textDisplay === 20 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nAll new slaves are being re-educated in the specially-built Xu School, with each student patiently being taught the ancient wisdom and language of Imperial China.\n`;
+					if (textDisplay === 25 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe common area is stylized to look like the inner sanctum of Imperial China's Forbidden City, reviving the glory of the Middle Kingdom.\n`;
+					if (textDisplay === 30 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nSoldiers sleep and live in dormitories built in traditional Chinese design, adorned with wooden carvings and intricate furniture.\n`;
+					if (textDisplay === 35 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe weapons and armor of your troops are stylized after the armies of Imperial China, with each soldier gifted with modernized jians.\n`;
+					if (textDisplay === 40 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe command center is luxurious, adorned with expensive stylized furniture and art that depicts the great generals and battles in history of Zhonghuá. It also contains framed excerpts from The Art Of War, and framed Chinese writings praising intelligence and cunning.\n`;
+					if (textDisplay === 45 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nMeanwhile, the local Yiyuàn serves as a place of healing and enhancement, where miracles of cutting-edge modern medicine as well as zhongyi are available for your shìbing.\n`;
+					if (textDisplay === 50 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nLuxurious robes, jade carvings, and intricate jewelry became a popular fashion for your troops in between missions.\n`;
+					if (textDisplay === 55 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe nearby drone bay section, dubbed 'Jia Lu Dá De Cháo', contains 'xiao jia lu dá' drones upgraded with flamethrowers, ready to deploy.\n`;
+					if (textDisplay === 60 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe garage, also known as the Chekù, is filled with noise of jìshis performing check-ups, upgrades, and repairs on your vehicles, thus ensuring that Chinese works still leave the world in awe.\n`;
+					if (textDisplay === 65 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nParticular vehicles within the garage have been painted with your Imperial coat of arms and decorated with intimidating dragon's heads on their fronts.\n`;
+					if (textDisplay === 70 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nThe hangar, also known as the Jikù, is filled with noise of jìshis performing check-ups, upgrades, and repairs on your aircrafts, while the stalwart feixíngyuán prepare to extend your reach to the Heavens themselves.\n`;
+					if (textDisplay === 75 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nWhen the mission allows, the military aircraft deployed beyond your arcology's airspace are decorated with brightly-glowing neon yellow chrysanthemum-symbol decals that herald the incoming domination of the emperor's special forces.\n`;
+					if (textDisplay === 80 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYou also notice that the several nearby vendors here are proper and respectable establishments offering a variety of goods and services: from classes teaching ancient Chinese arts, to beautiful clothes and jewelry, these shops cater grandly towards the culture. At the nearby officers' workshop, an veteran commander conducts a detailed review of 'The Art of War' to the inexperienced new NCO's in attendance.\n`;
+					if (textDisplay === 85 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nOutside the Firebase gates, a majestic walled perimeter has been carefully erected so as to make the outside grounds of the Firebase more closely resemble the Forbidden City; a broad garden of bright yellow chrysanthemums, a heavily reinforced stone roadway with accompanying stone footpaths, finely sanded wooden benches and fences, and brightly colored walls and gates greet any who would presume to enter or exit the Firebase domain... Besides you, of course.\n`;
+					if (textDisplay === 90 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nYour soldiers put in effort carry themselves in a manner befitting such a communal setting; they are cooperative, diligent, and disciplined at all times. They identify first and formost as warriors of 'the emperor', and are proud to have a powerful empire such as your arcology to call home and fight for. In their personal dealings, they do their best to handle most affairs using the esteemed Mandarin dialect, and they avoid unseemly things like disloyalty, foolishness, and dishonor like the plagues that they are. These are true Imperial men and women, and they will relentlessly carry your society into the future as they fight to impress your name upon both Heaven and Earth themselves.\n`;
+					if (textDisplay === 100 && V.SF.FS[FS_OPTIONS[i]].lv >= textDisplay) text += `\nChinese Revivalism: Sometimes when The Colonel is relaxing or just making her rounds in the Firebase, you'll see her wearing a long qipao cut high along the sides for ease of movement. She is known to prefer going commando, and the slits sometimes part to tease what's underneath for anyone watching her. She keeps a number of intelligent eunuchs in her company often, and they usually scurry along behind her to record everything that she says and does for later review. Her pavilion is lavishly furnished and concubines wait on her hand and foot when she rests. Her combat battledress now features lacquered armor and a golden burnished helm signifying her position as leader.\n`;
+					break;
+			}
+		}
+		return text;
+	} else if (input === 'BadOutcome') {
+		V.arcologies[0].prosperity -= 50;
+		cashX(-V.Cash*0.25, "specialForces"); let r = ``, BadOutcome = '';
+		if (V.rep > 17500) V.rep = 17500;
+		switch(V.SF.Colonel.Core) {
+			case "Kind":
+				BadOutcome += 'MIGRATION'; V.trinkets.push("The Colonel's handkerchief");
+				r += `Your Colonel has had enough of your meddling. In her eyes, you've broken faith with her. She asked one thing of you in return for her full support, and you could not even give her that.`;
+				r += `\nAt midnight, a great mechanized convoy, the biggest you've seen in a long while, streams out of your Arcology. Troop Carriers, Aircraft, Heavy Trucks, and other war machines of varying sizes pour out of the Firebase in tight formation. The Colonel is refusing your calls, and you know it would be ill advised to go out there yourself or to try to stop them with force. The many bandits and mercenary groups that the convoy will inevitably pass by will probably feel this way as well. You have no idea where they are going or how they will end up, but with their wealth and weaponry, you are not worried.`;
+				r += `\nUpon your inspection of the abandoned firebase itself, most of the heavier installations have been dismantled and carried away, but about ${cashFormat(55000)} in miscellaneous supplies and 73 menials have been left behind, presumably because the convoy had no space for them. On The Colonel's old pavilion, you see a white gift card standing upright.`;
+				r += `\nWhen you climb the crates to take it and read it, you see The Colonel's handwritten sentiments about the way things turned out; her gratitude for taking her in when you did, her disappointment in your actions, a detailed account of your failings, her regrets that things had to end this way, and finally, her well wishes for your future endeavors.`;
+				r += `\nDisgusted, you pocket the gift card and leave your employees and menials to gather up the valuables here before stalking back to your Penthouse. The former Firebase is returned to being a warehouse facility.`;
+				break;
+			case "cruel":
+				if (jsRandom > 50) {
+					BadOutcome += 'Revolt';
+					V.trinkets.push("The Colonel's dog tags");
+					r += `<br>Finally fed up with your constant intrusions into her territory and crew, The Colonel riles up her people for an utterly ferocious rebellion. The promises of rape and plunder and dominion over some of the wealthiest tenants in the entire Free City (and their world-class slaves) are all that's needed to give the selfish lot of them a nearly unshakable resolve in the task of delivering their overlord Her most coveted prize: You.`;
+					r += `<br>It is now midnight. The lights are the first thing they disable, as they still have the excellent night vision equipment you purchased for them. Some of your citizens start panicking almost immediately at the sudden blackout; this is very reminiscent of the Daughters of Liberty attack that still haunts many of their memories. Things like this were never supposed to happen again. You had promised them that you'd create an army that would protect them...`;
+					r += `<br>Her army vanguard strikes fast and hard throughout the main Plaza, cutting through your security personnel, defensive platoons, and drones with an ease that stinks of months of careful planning and study. Your defensive platoons, veterans of many Battles, are outmaneuvered at every turn; their hidden ammunition caches are found empty, their communications networks are mysteriously scrambled, and key chokepoints are found to be booby-trapped before your men can even get to them; their well-rehearsed arcology defense routines have gone to ash. Assuming you ever get a chance to speak to The Colonel again, you would ask if her betrayal was actually inevitable rather than something you triggered.`;
+					r += `<br>You watch with immense disappointment as the very APC's and IFV's that you paid for now charge into resisting storefronts to storm the armed civilians inside with heavy infantry at point blank range. Battle Tanks trample wounded civilians in the streets as they maneuver to blast your citizens' hastily-made holdouts to pieces, burying dozens of civilian loyalists under mountains of rubble while hundreds more are gunned down in the streets for want of adequate cover. The Plaza is lost; the enemy vanguard has gained access to the Residential Sectors upstairs. Enticed, entire platoons of her vanguard decide to become bandits, ignoring their Colonel's orders and scattering off from the main force to kick down many apartment doors and help themselves to whatever desirable goods or inhabitants they find within.`;
+					r += `<br>Outside, her many aircraft swarm the local airspace to patrol the Arcology outskirts, conduct recon scans of the upper levels, or monitor your sealed penthouse outside the range of your SAM turrets, while shooting down any other fleeing VTOL's. You will not be escaping by air today. No one will. No escaping by land either: Swarms of her drones are tasing fleeing noncombatants by the hundreds for later enslavement, as the remainder of her army begins to pour into the bloody Plaza. This is your Arcology's darkest hour.`;
+					r += `<br>And yet your Mercenaries stand ready. On security feeds throughout the Residential Sectors and Garrison you see your elite sellswords charging out of their lodgings in full kit. They are few, but this is their home, and you are their Patron and Commander. They hold firm, fighting like legends of old in some places, and fighting like animals in others. The Mercenaries trapped downstairs near The Garrison take to the Markets, pinning down most of The Colonel's reinforcements from various shopping outlets using towed quad anti-aircraft guns, and ultimately cutting off many of the assets needed for The Colonel's ongoing assault upstairs. Enemy troop carriers laden with heavy infantry breach the shopping centers in order to dislodge them, only to have their inhabitants cooked alive before they can disembark in time or shot to pieces even when they do. Keeping these Mercenaries alive are the roving exosuit-clad tank hunter duos that frag entire armor platoons en route to these shopping outlets, resorting to carving open enemy AFV's up close with their powered CQB weapons once they've run out of missiles. Back in the Residencies upstairs, in the still-evacuating streets and atriums, your actively-camouflaged snipers take up choice positions on various balconies and overpasses, sowing panic among the advancing traitors with their impressive anti-material rifles with one explosive headshot after another, sometimes even hitting them through walls and buildings. In large indoor parks leading up to the main Residential courtyard, Mercenary fireteams force enemy flankers to flee every single footpath they walk through, harassing constantly and preventing any hostile reconnaissance or infiltration from being done.`;
+					r += `<br>The main Residential courtyard features the Residential Sectors' massive elevator complex, which will give The Colonel's forces rapid access to the Promenade, and ultimately, You. In front of it, your Mercenary Captain stands atop one of the many meters-thick sandbag walls his men just assembled there, leading the raging defensive blockade in bringing the vanguard's assault to a gory halt. ${V.SF.Lower}'s bodies and bits and debris pile up in small walls on the outskirts under the burning heat of hundreds of flying autocannon rounds and dozens of screeching missiles. Before the vanguard's morale can break however, The Colonel shows up in person behind her own lines, kitted in a customized power armor and dragging, of all things, a hydraulic trebuchet loaded with a crudely-welded large metal box. She launches the box from beyond your Mercenaries' line of sight, sending it reeling towards them and predicting that they will try to shoot it out of the sky. They do, not wanting the slow but strange projectile to hit them directly, only learning of their folly when the metal 'box' detonates midair and releases a dense cloud of cluster bombs over their position. The munitions themselves disable some of the exosuits, but they don't kill too many on their own. However, the bomblets do succeed in detonating the various ammo dumps that were feeding your Mercenaries' blazing guns. The chain explosions, resulting fires, destroyed cover, and widespread casualties and confusion all create the perfect opportunity for The Colonel to storm the previously implacable barricade at the head of her troops, with her followers rushing the merc lines and blasting off the heavy armor plating of your disoriented Mercenaries themselves before stabbing them to death, or in some cases, hauling off the dis-armored and defeated female Mercenaries they discover for immediate use. As the few intact Mercenaries remaining desperately struggle to hold off the advancing horde with their remaining ammo, The Colonel takes on your dazed Mercenary Captain in single combat. When their ammunition runs dry, and their blasted battlesuits break down, they both eject, and then the knives come out. Minutes later, she stabs him in the side of his skull after she dodges yet another attempt to land a killing blow on her. With the source of Mercenary command and control gone, The Colonel staunches her own bleeding, yanks a trooper out of a near-pristine battlesuit that she now claims for herself, and directly organizes the isolation and extermination of the smaller teams of Mercenaries that are bleeding her troops everywhere else. She routs your Mercenaries for good with the razing of their Garrison structure. The ${V.SF.Lower} now enjoys absolute air and ground superiority. Soon the surviving rear of her army is brought upstairs from the killing floors down in the Markets, and the many elevators and cargo lifts of the elevator complex are boarded, with your executive override codes to remotely shut down the elevators somehow being manually bypassed by her combat engineers. It won't be long now.`;
+					r += `<br>Dawn has broken over the Free City. Only five hours into the slaughter (of which your Mercenaries no doubt bought you at least three), it becomes very clear to you that the only way to save your arcology is to destroy it. Everything and Everyone will burn before you let this crazy bitch and her rabid dogs get their dirty hands on you or your slaves. On your order, your most loyal subordinates, the ones who were with you since the early days to patrol your Arcology before you even had drones to protect it, fight their way to through the carnage of your panicking civilians on The Promenade to get to the exact hidden elevators that your Personal Assistant specifies for them. Their destination is the arcology's reactor complex, of course. Following the PA's instructions precisely, they arm their many high-yield explosive charges on your now-exposed and de-stabilized reactor, and in one final service to you, detonate them, creating a colossal explosion. The rapidly ascending heretics quite literally have the rug pulled from under them, as the blast takes out nearly all of the arcology's lesser foundational support beams, thus collapsing many thousands of metric tons of concrete, steel, plastic, and plaster out from underneath the upward bound Colonel and her men... And everyone else, unfortunately. With no foundation any longer, all of your arcology's interior Sectors are utterly gutted from the bottom-up by gravity itself, and everything beneath your ration-stocked, backup-powered Penthouse crumbles to the earth. The massive cloud of dust created by the widespread fires and interior collapse ends up covering the entire Free City for hours. Her aircraft, now bereft of their logistical support and command structure, immediately fly off to neighboring arcologies to offer their services to the various employers there, seeing as the coup has failed and they have nowhere else to go. The skies are free for You to travel as you please, but You aren't going anywhere.`;
+					r += `<br>It is late evening when the tremors finally stop. Everything below your Penthouse is ruin, and your arcology, its population, and your reputation are now essentially dust. However, the arcology did not fall. It. Is. Still. Yours. You shall rise again, not flee this tragedy in shame. Of course, no one will ever know that you sacrificed the arcology deliberately in order to save yourself; it is all too easy to claim that The Colonel carelessly damaged the reactor complex during her assault, ironically causing her own defeat. Frankly, sacrificing most of your tenants doesn't bother you as much as it probably should; maybe its because you know that if The Colonel and her men had won, all those people were as good as dead anyway.`;
+					r += `<br>You know that if you want to survive, you'll need to surround yourself with workers and allies to rebuild fast, else your rivals gobble you up. It costs you a horrific sum to clear and process the wreckage and rebuild the basic Sector superstructures and infrastructure for your arcology on such short notice, even after liquidating everything your workers salvage. Your powerful friends still residing in the old world or other Free Cities have lent you a surprising amount of aid too, with quite a few lent super-heavy construction assets getting huge amounts of work done quickly. Even then, what you've been able to rebuild is very little. After a nearly sleepless, sexless week of immense toil, you've successfully organized tens of thousands of people in restoring the arcology to a barely functional condition (along with rudimentary imitations of all your upgrades), and you've even got some new Garrison Mercenaries in by week's end too... But its just not the same. If it weren't for your bruised weather-plating your arcology would look like a giant skeleton. Inside, it feels like a concrete boneyard; everything has been built cheap and utilitarian, and the walls aren't even painted. With only a few operational services staffed by commuters from neighboring arcologies, there is just an eerie silence just about everywhere. With few amenities for relief, there are going to be many long days ahead for your few tenants, most of them being wealthy but distraught returning travelers who left before the attack. Maybe your slaves can help entertain them. A lot of these people are VIP's it seems.`;
+					r += `<br>It is now midnight. In a rare moment of reflection, you contemplate that what The Colonel just did to your arcology was exactly what you were all too happy to have her do to dozens, if not hundreds of innocent villages and townships under your shadow during her 'Raiding and Slaving' operations. Nevertheless, You have hard work ahead of you, especially now that your enemies see that you are now much weaker than you have ever been.`;
+					r += `<br>The Colonel's body was never found.`;
+				} else {
+					BadOutcome += 'ANNIHILATION';
+					V.trinkets.push("The Colonel's Combat Knife");
+					r += `Finally fed up with your constant intrusions into her territory and crew, The Colonel riles up her people for a full takeover against your arcology. The promises of plunder and dominion over some of the wealthiest tenants in the entire Free City (and their world-class slaves), including you, are all that's needed to get things started. However, not every soldier is eager to betray you.`;
+					r += `\nIt is now Midnight. The lights are the first thing the Colonel's forces disable, as they still have the excellent night vision equipment you purchased for them. Some of your citizens start panicking almost immediately at the sudden blackout; this is very reminiscent of the Daughters of Liberty attack that still haunts many of their memories. Her horde of marauders purges the plaza and lower floors of the arcology mercilessly, thoughtlessly cutting through your tenants with an ease that stinks of true jealously and hatred. Most disturbingly, your penthouse's communications networks are all but destroyed, and your PA has been unreachable, seemingly hacked by some obscure technology you figure only the Colonel's contacts and few others could provide. As bad as all of this is, it is merely meant to distract and disrupt your mercenaries. The real threat is aerial.`;
+					r += `\nOutside the arcology, her many aircraft swarm the local airspace to patrol the Arcology outskirts, conduct recon scans of the upper levels, or monitor your now-secured penthouse, while shooting down any other fleeing VTOL's. You will not be escaping by air. No one will. No escaping by land either: Swarms of her drones are tasing fleeing noncombatants by the hundreds for resale, as the remainder of her army seizes control of vital arcology infrastructure. As you take note of this while donning your bathrobe, several missiles from attack VTOL's come crashing through your penthouse before detonating. Miraculously, no one is harmed by this, and it has even created a gap in a nearby wall for you to escape the penthouse through, but this is but a small comfort in the wake of the squads of disembarking troops, lead by The Colonel herself, rappelling into your penthouse to capture you directly.`;
+					r += `\nYou run. You run faster than you ever have in your life, past burning shops, burning vehicles, burning crowds, and burning bodies. An entire team of The Colonel's men are chasing you, lead by The Colonel herself, with their heavy kit probably the only reason they haven't caught you yet. They obviously want you alive, and you have been sharp enough to realize that this is very bad news for you. During your sprint, you also happen to run past several security cameras that impassively capture high-definition full-color footage of your retreat. When you eventually bump into one of your mercenaries and are escorted to a shelter, the personnel responsible for overseeing the camera feeds upload the footage of your great chase to the internet, where the entire world can see you being hounded by the men and women you personally hired to protect you and your arcology.`;
+					r += `\nEventually, The Colonel's coup collapses. The selfish and malevolent troops following her, easily distracted by the myriad opportunities for rich plunder all around them, end up scattering throughout the arcology and loosing cohesion, allowing for your much better organized security forces, mercenary hunter-killer teams, and even local enraged citizens to regroup and eventually overwhelm each enemy looter gang individually until a grinding total victory is achieved by the end of the week. The Colonel never finds, captures, or kills you. Nor is she ever found, captured, or killed herself. But she did set you on the run, and humiliatingly enough, the entire Free City now knows about it. Everyone has seen the clip. When you think about it she did manage to kill you after all, in a manner of speaking.`;
+					r += `\nYour arcology is once more yours, but your people will never forget the horrifying week they spent being slaughtered and hunted by The Colonel's marauders, butchered by the army that you convinced them to allow, or the fact that you couldn't save them because you were very busy being hunted yourself.`;
+				}
+				break;
+			case "brazen": BadOutcome += 'OCCUPATION';
+				 V.trinkets.push("The Colonel's Sidearm");
+				 r += `Finally fed up with your constant intrusions into her territory and crew, The Colonel riles up her people for a full takeover against your arcology. The promises of plunder and dominion over some of the wealthiest tenants in the entire Free City (and their world-class slaves), including you, are all that's needed to get things started.`;
+				 r += `\nAt midnight, the lights are the first thing the Colonel's forces disable, as they still have the excellent night vision equipment you purchased for them. Some of your citizens panic almost immediately at the sudden blackout; this is very reminiscent of the Daughters of Liberty attack that still haunts many of their memories. Her army vanguard strikes fast and hard throughout, cutting through your security units and drones with an ease that stinks of months of careful planning and study. Most disturbingly, your penthouse's communications networks are all but destroyed, and your PA has been unreachable, seemingly hacked by some obscure technology you figure only the Colonel's contacts and few others could provide.`;
+				 r += `\nOutside, her many aircraft swarm the local airspace to patrol the Arcology outskirts, conduct recon scans of the upper levels, or monitor your now-secured penthouse, while shooting down any other fleeing VTOL's. You will not be escaping by air. No one will. No escaping by land either: Swarms of her drones are tasing fleeing noncombatants by the hundreds for detainment, as the remainder of her army seizes control of vital arcology infrastructure. After just a few days, the entire arcology falls under her direct control, all dissidents, criminals, and rebels hopelessly outgunned by her lavishly equipped and experienced warriors.`;
+				 r += `\nYou are trapped inside your Penthouse by the detachment of infantry guarding its exits in order to keep you in, probably with the goal of starving you out until you surrender yourself. With your communications down as well. your penthouse might as well be an island. You only salvation comes in the form of your neighboring arcologies and their respective mercenary contingents. They are intervening on your behalf out of paranoia; Free Cities are extremely wary of military power buildups near their borders, and they absolutely will not tolerate a full scale military cup within its borders. Fighting men and women from all over the City are seen battling in the streets of your arcology in a brutal blitzkrieg that your own tenants and mercenaries quickly join in on, pushing The Colonel's forces back gradually with sheer numbers. Eventually they are forced back into the Firebase proper, where they are sealed inside by using explosives to collapse part of the arcology atop them, rendering the Firebase itself totally defunct. Only a few small groups manage to scatter and flee this holding action, and your intelligence networks suspects that The Colonel herself was among one of them.`;
+				 r += `With the help of some unlikely intervention, you've won this little war. Your arcology is once more yours, but your people will never forget the traumatic week they spent under the heel of the army that you convinced them to allow, or the fact that it took an entire coalition of outsiders to save them.`;
+				 break;
+			case "jaded": BadOutcome += 'ASSIMILATION';
+				V.trinkets.push("The Colonel's Canteen");
+				r += `Finally weary of your constant intrusions into her territory and crew, The Colonel gathers up her people for a full scale liquidation and dispersal of personnel and assets throughout the Free City itself; they are going to discreetly sell off the majority of their military hardware, assume new identities and melt into the fabric of the Free City's wider population. Gone are the days of plunder and dominion, as this retirement plan will make many of them some of the wealthiest tenants in the entire Free City, and they will no longer need to break their backs living the lives of soldiers. With the liquidation complete and the money distributed, the army moves on to the net stage of the plan.`;
+				r += `\nAt midnight, the lights are the first thing the Colonel's forces disable, as they still have the excellent night vision equipment you purchased for them. Some of your citizens panic almost immediately at the sudden blackout; this is very reminiscent of the Daughters of Liberty attack that still haunts many of their memories. Her army moves fast and quietly throughout the arcology and the streets outside of it, slipping through your security units and drones with an ease that stinks of months of careful planning and study. Most disturbingly, your penthouse's communications networks are all but destroyed, and your PA has been unreachable, seemingly hacked by some obscure technology you figure only the Colonel's contacts and few others could provide.`;
+				r += `\nOutside, her many aircraft escape the local airspace to patrol the Arcology outskirts, evading recon scans, the monitoring systems of your secured penthouse, and the feeble attempts of your sentries to shoot them down. A great many of them will be escaping by air, it seems. Many are escaping by land too: Swarms of personnel carriers and utility trucks are driving off to neighboring arcologies or even neighboring Free Cities by the dozens for retirement, as the remainder of her army purchase new apartments and properties in various arcologies nearby while being dressed in civilian clothing. After just a few days, the entire army has essentially disappeared, hopelessly obscured by mountains of digital noise, detailed fake backstories, lavish fake identities, and lots of bribes and carefully destroyed digital and physical records. Your special force has gone completely AWOL and there is nothing you or anyone can do about it. It seems your experienced former warriors have a eye for deception too.`;
+				r += `\nYou are trapped inside your Penthouse by the electricity-cutting digital virus that has kept you inside and communicatively isolated for the past week. Probably with the goal of keeping you in the dark, figuratively and literally, so that you could not intervene in the The Colonel's total assimilation into the Free Cities. The lazy bitch did not want to cooperate with your Future Societies plans, so she and her men decided to stop being soldiers altogether, and live off of their savings. Your only relief comes at the midnight of the seventh day, when the virus self-terminates and the arcology's electricity, PA, and communications lines return to full functioning.`;
+				r += `\nYour arcology is once more yours, but your people will never forget the troubling week they spent in total darkness and lockdown, or the sudden mass desertion and disappearance of the army that you convinced them to allow, or the fact that there was nothing you could do to prevent or mitigate any of it.`;
+				break;
+			case "Shell-Shocked": BadOutcome += 'ISOLATION';
+				V.trinkets.push("The Colonel's explosives detonator");
+				r += `Unnerved by your ever-increasing influence over your men and undercutting of her authority, The Colonel uses heavy explosives at Midnight to seal off The Firebase from your access. When you step off of your express elevator, you are met not with two guards, but several armed proximity mines next to an incredibly thick wall of smoking rubble. No doubt there are machine gun nests, anti-tank nests, and lots more proximity mines just waiting for you on the other side, should you somehow get through the wall of debris.`;
+				r += `\nThe ${V.SF.Lower} still deploys into the old world to plunder as it pleases, but no longer for you. You receive no money from their exploits, and their total defiance and independence of you is a permanent stain on your reputation. Of course, you'll never have the needed military power to dislodge them, especially with all the redundant fortifications, crossfire envelopes, and myriad traps that paranoid bitch had built around each entrance ever since she went rouge. Trying to sabotage certain support beams from above to make the Firebase facility collapse in on itself could easily cause enough damage to topple other parts of the arcology too, and such a thing would be very difficult to cover up. In other words, you're stuck with them. The Firebase has become a permanent tumor on your Arcology and good name.`;
+				break;
 		}
-		if (S.PGT > 0) {
-			FNG += S.PGT; Trade += 0.25*S.PGT; Multiplier.unit += 15*S.PGT+3*Math.pow(S.PGT, 2)*cost.a; upkeep += (100*S.PGT)*cost.b;
+		let Obj = {Active:-2, Toggle:V.SF.Toggle, FS:{Tension:V.SF.FS.Tension, BadOutcome:BadOutcome} };
+		V.SF = Obj;
+		return r;
+	} else if (input === 'BadOutcome_Firebase') {
+		const x = `Visiting the Firebase just takes you to`;
+		switch(V.SF.FS.BadOutcome) {
+			case 'MIGRATION':
+			 return `${x} an empty, eerie storeroom now.`;
+			case 'ANNIHILATION':
+				return `${x} a charnel house of dead bodies, spent ammo casings, collapsed sub-structure, unstable rubble, and live munitions & duds that can detonate at the slightest disturbance. This chamber has proven so troublesome, tedious, and dangerous to clear out that you've decided to halt all salvage operations for the foreseeable future.\n`;
+			case 'OCCUPATION':
+				return `${x} its entrance. The two guards that usually let you in will now shoo you away at gunpoint.\n`;
+			case 'ASSIMILATION':
+				return `${x} a very trashy floorspace full of discarded food, apparel, and furniture, as well as piles of empty boxes and crates. The filthy bastards didn't even bother to clean up after themselves.\n`;
+			case 'ISOLATION':
+				return `${x} a thick wall of rubble. You no longer have any way of reaching out to the Special Force.\n`;
 		}
 	}
+};
 
-	if (S.Firebase >= 2 && S.Drones > 0) {
-		FNG += S.Drones; Trade += 0.5*S.Drones; Multiplier.unit += 7.5*S.Drones+2*Math.pow(S.Drones, 2)*cost.a; upkeep += (50*S.Drones)*cost.b;
-	}
+App.SF.AAR = function() {
+	"use strict"; const V = State.variables, T = State.temporary, S = V.SF.Squad;
+	const target = 50000, baseLine = 5000; let profit = 0, upkeep = 0, income = 0;
+	let r = ``;
+	if (V.SF.FS.Tension > 100) {
+		if (V.SF.FS.BadOutcome === undefined) {
+			App.SF.fsIntegration('BadOutcome');
+		} else {
+			r += `This week your arcology lost a bit of prosperity and large amount of reputation, due to the looming threat that The Colonel and her forces may resurface.`;
+			V.arcologies[0].prosperity -= 25; if (V.rep > 17500) V.rep = 17500;
+		}
+	} else {
+		let Multiplier = {action:1, troop:1, unit:1, depravity:1};
+		let FNG = 10, unitCap = 2500, Trade = 0.025;
+		let cost = {a:0.01, b:2.5}, NO = 1+(V.SF.Size/5), N1 = 1+(V.SF.Size/5);
+
+		V.SF.UC.num = 0; App.SF.Count(); let deaths = 0, SFD = V.SF.Depravity;
+		if (profit < 1) cost.a = 10; cost.b = 0.1; NO = 1; N1 = 0.1;
 
-	if (S.Firebase >= 4) {
-		if (S.AA > 0) {
-			FNG += S.AA; Trade += 0.25*S.AA; Multiplier.unit += 7.5*S.AA+2*Math.pow(S.AA, 2)*cost.a; upkeep += (100*S.AA)*cost.b;
+		if (S.Troops > unitCap) S.Troops = unitCap;
+		if (S.Troops < 100) {
+			S.Troops += Math.ceil(jsRandom(2, 5));
+		} else {
+			if (V.SF.Target === "recruit") {
+				S.Troops -= Math.ceil(jsRandom(1*S.Troops/1000, 0));
+			} else if (V.SF.Target === "raiding") {
+				S.Troops -= Math.ceil(jsRandom(1.15*S.Troops/1000, -1.20*S.Troops/1000));
+			} else {
+				S.Troops -= Math.ceil(jsRandom(1.10*S.Troops/1000, -1.15*S.Troops/1000));
+			}
 		}
-		if (S.TA > 0) {
-			FNG += S.TA; Trade += 0.25*S.TA; Multiplier.unit += 7.5*S.TA+2*Math.pow(S.TA, 2)*cost.a; upkeep += (100*S.TA)*cost.b;
+		if (V.SF.UC.Assign > 0) {
+			if (V.SF.UC.Assign < 2) {
+				V.SF.UC.num = Math.ceil(S.Troops*0.01);
+			} else {
+				V.SF.UC.num = Math.ceil(S.Troops*0.05);
+			}
 		}
-		if (S.SpacePlane > 0) {
-			FNG += S.SpacePlane; Trade += 0.25*S.SpacePlane; Multiplier.unit += 7.5*S.SpacePlane+2*Math.pow(S.SpacePlane, 2)*cost.a; upkeep += (100*S.SpacePlane)*cost.b;
+		S.Troops -= V.SF.UC.num;
+		if (S.Troops > 200) {
+			Trade += 0.05*(S.Troops/200);
+			Multiplier.troop += S.Troops/200; upkeep += (S.Troops*25)/cost.a;
+			if (V.secExp > 0) {
+				V.authority += 25*(Math.ceil(S.Troops/200)); V.authority += V.SF.Size*10;
+				V.authority = Math.clamp(V.authority, 0, 20000);
+			}
 		}
-		if (S.GunS > 0) {
-			FNG += S.GunS; Trade += 0.25*S.GunS; Multiplier.unit += 12*S.GunS+3*Math.pow(S.GunS, 2)*cost.a; upkeep += 70*S.GunS;
+
+		if (S.Firebase > 0) {
+			FNG += S.Firebase; Trade += 0.5*S.Firebase; Multiplier.unit += 7.5*S.Firebase+2*Math.pow(S.Firebase, 2)*cost.a; upkeep += (95*10+S.Firebase)*cost.b;
 		}
-		if (S.Satellite.lv > 0 && S.Satellite.InOrbit > 0) {
-			FNG += S.Satellite.lv; Trade += 0.25*S.Satellite.lv; Multiplier.unit += 15*S.Satellite.lv+5*Math.pow(S.Satellite.lv, 2)*cost.a; upkeep += (85*S.Satellite.lv)*cost.b;
+		if (S.Armoury > 0) {
+			FNG += 2*S.Armoury; Trade += 0.25*S.Armoury; Multiplier.unit += 7.5*S.Armoury+2*Math.pow(S.Armoury, 2)*cost.a; upkeep += (55*S.Armoury)*cost.b;
 		}
-		if (S.GiantRobot > 0) {
-			FNG += S.GiantRobot; Trade += 0.25*S.GiantRobot; Multiplier.unit += 15*S.GiantRobot+5*Math.pow(S.GiantRobot, 2)*cost.a; upkeep += (95*S.GiantRobot)*cost.b;
+		if (S.Drugs > 0) {
+			FNG += S.Drugs; Trade += 0.25*S.Drugs; Multiplier.unit += 7.5*S.Drugs+2*Math.pow(S.Drugs, 2)*cost.a; upkeep += (35*S.Drugs)*cost.b;
 		}
-		if (S.MissileSilo > 0) {
-			FNG += S.MissileSilo; Trade += 0.25*S.MissileSilo; Multiplier.unit += 15*S.MissileSilo+5*Math.pow(S.MissileSilo, 2)*cost.a; upkeep += (100*S.MissileSilo)*cost.b;
+		if (S.Firebase >= 1) {
+			if (S.AV > 0) {
+				FNG += S.AV; Trade += 0.25*S.AV; Multiplier.unit += 7.5*S.AV+2*Math.pow(S.AV, 2)*cost.a; upkeep += (89*S.AV)*cost.b;
+			}
+			if (S.TV > 0) {
+				FNG += S.TV; Trade += 0.25*S.TV; Multiplier.unit += 7.5*S.TV+2*Math.pow(S.TV, 2)*cost.a; upkeep += (89*S.TV)*cost.b;
+			}
+			if (S.PGT > 0) {
+				FNG += S.PGT; Trade += 0.25*S.PGT; Multiplier.unit += 15*S.PGT+3*Math.pow(S.PGT, 2)*cost.a; upkeep += (100*S.PGT)*cost.b;
+			}
 		}
-	}
 
-	if (S.AircraftCarrier > 0) {
-		FNG += S.AircraftCarrier; Trade += 0.25*S.AircraftCarrier; Multiplier.unit += 9*S.AircraftCarrier+3*Math.pow(S.AircraftCarrier, 2)*cost.a; upkeep += (80*S.AircraftCarrier)*cost.b;
-	}
-	if (S.Sub > 0) {
-		FNG += S.Sub; Trade += 0.25*S.Sub; Multiplier.unit += 7.5*S.Sub+2*Math.pow(S.Sub, 2)*cost.a; upkeep += (90*S.Sub)*cost.b;
-	}
-	if (S.HAT > 0) {
-		FNG += S.HAT; Trade += 0.25*S.HAT; Multiplier.unit += 7.5*S.HAT+2*Math.pow(S.HAT, 2)*cost.a; upkeep += (70*S.HAT)*cost.b;
-	}
+		if (S.Firebase >= 2 && S.Drones > 0) {
+			FNG += S.Drones; Trade += 0.5*S.Drones; Multiplier.unit += 7.5*S.Drones+2*Math.pow(S.Drones, 2)*cost.a; upkeep += (50*S.Drones)*cost.b;
+		}
 
-	switch (V.SF.Colonel.Core) {
-		case "kind": FNG += 10; Trade += 0.15; SFD -= 0.15; break;
-		case "cruel": Trade -= 0.15; SFD += 0.15; break;
-		case "brazen": FNG += 15; Multiplier.unit += 0.5; break;
-		case "jaded": Trade -= 0.05; SFD += 0.05; break;
-		case "shell shocked": Trade += 0.05; SFD -= 0.05; Multiplier.unit -= 0.5; break;
-		default:
-			break;
-	}
+		if (S.Firebase >= 4) {
+			if (S.AA > 0) {
+				FNG += S.AA; Trade += 0.25*S.AA; Multiplier.unit += 7.5*S.AA+2*Math.pow(S.AA, 2)*cost.a; upkeep += (100*S.AA)*cost.b;
+			}
+			if (S.TA > 0) {
+				FNG += S.TA; Trade += 0.25*S.TA; Multiplier.unit += 7.5*S.TA+2*Math.pow(S.TA, 2)*cost.a; upkeep += (100*S.TA)*cost.b;
+			}
+			if (S.SpacePlane > 0) {
+				FNG += S.SpacePlane; Trade += 0.25*S.SpacePlane; Multiplier.unit += 7.5*S.SpacePlane+2*Math.pow(S.SpacePlane, 2)*cost.a; upkeep += (100*S.SpacePlane)*cost.b;
+			}
+			if (S.GunS > 0) {
+				FNG += S.GunS; Trade += 0.25*S.GunS; Multiplier.unit += 12*S.GunS+3*Math.pow(S.GunS, 2)*cost.a; upkeep += 70*S.GunS;
+			}
+			if (S.Satellite.lv > 0 && S.Satellite.InOrbit > 0) {
+				FNG += S.Satellite.lv; Trade += 0.25*S.Satellite.lv; Multiplier.unit += 15*S.Satellite.lv+5*Math.pow(S.Satellite.lv, 2)*cost.a; upkeep += (85*S.Satellite.lv)*cost.b;
+			}
+			if (S.GiantRobot > 0) {
+				FNG += S.GiantRobot; Trade += 0.25*S.GiantRobot; Multiplier.unit += 15*S.GiantRobot+5*Math.pow(S.GiantRobot, 2)*cost.a; upkeep += (95*S.GiantRobot)*cost.b;
+			}
+			if (S.MissileSilo > 0) {
+				FNG += S.MissileSilo; Trade += 0.25*S.MissileSilo; Multiplier.unit += 15*S.MissileSilo+5*Math.pow(S.MissileSilo, 2)*cost.a; upkeep += (100*S.MissileSilo)*cost.b;
+			}
+		}
 
-	if (V.SF.Target === "raiding") {
-		SFD += 0.05; Multiplier.action += 0.5;
-	} else if (V.SF.Target === "secure") {
-		SFD -= 0.05; Multiplier.action += 0.2;
-	} else {
-		SFD -= 0.1; Multiplier.action -= 0.5;
-	}
-	if (V.SF.ROE === "free") {
-		Multiplier.action *= 0.8; SFD += 0.05; Trade += Trade*0.95;
-	} else if (V.SF.ROE === "hold") {
-		Multiplier.action *= 1.1; SFD -= 0.05; Trade += Trade*1.05;
-	}
-	if (V.SF.Regs === "none") {
+		if (S.AircraftCarrier > 0) {
+			FNG += S.AircraftCarrier; Trade += 0.25*S.AircraftCarrier; Multiplier.unit += 9*S.AircraftCarrier+3*Math.pow(S.AircraftCarrier, 2)*cost.a; upkeep += (80*S.AircraftCarrier)*cost.b;
+		}
+		if (S.Sub > 0) {
+			FNG += S.Sub; Trade += 0.25*S.Sub; Multiplier.unit += 7.5*S.Sub+2*Math.pow(S.Sub, 2)*cost.a; upkeep += (90*S.Sub)*cost.b;
+		}
+		if (S.HAT > 0) {
+			FNG += S.HAT; Trade += 0.25*S.HAT; Multiplier.unit += 7.5*S.HAT+2*Math.pow(S.HAT, 2)*cost.a; upkeep += (70*S.HAT)*cost.b;
+		}
+
+		switch (V.SF.Colonel.Core) {
+			case "kind": FNG += 10; Trade += 0.15; SFD -= 0.15; break;
+			case "cruel": Trade -= 0.15; SFD += 0.15; break;
+			case "brazen": FNG += 15; Multiplier.unit += 0.5; break;
+			case "jaded": Trade -= 0.05; SFD += 0.05; break;
+			case "shell shocked": Trade += 0.05; SFD -= 0.05; Multiplier.unit -= 0.5; break;
+		}
+
+		if (V.SF.Target === "raiding") {
+			SFD += 0.05; Multiplier.action += 0.5;
+		} else if (V.SF.Target === "secure") {
+			SFD -= 0.05; Multiplier.action += 0.2;
+		} else {
+			SFD -= 0.1; Multiplier.action -= 0.5;
+		}
+		if (V.SF.ROE === "free") {
 			Multiplier.action *= 0.8; SFD += 0.05; Trade += Trade*0.95;
-		} else if (V.SF.Regs === "strict") {
+		} else if (V.SF.ROE === "hold") {
 			Multiplier.action *= 1.1; SFD -= 0.05; Trade += Trade*1.05;
-			Multiplier.depravity = 1+SFD;
 		}
-	if (SFD > -2) Trade *= 1+SFD/2;
+		if (V.SF.Regs === "none") {
+				Multiplier.action *= 0.8; SFD += 0.05; Trade += Trade*0.95;
+			} else if (V.SF.Regs === "strict") {
+				Multiplier.action *= 1.1; SFD -= 0.05; Trade += Trade*1.05;
+				Multiplier.depravity = 1+SFD;
+			}
+		if (SFD > -2) Trade *= 1+SFD/2;
 
-	if (V.SF.Target === "recruit") {
-		FNG += FNG*0.95;
-	} else {
-		FNG += FNG*0.25;
-	}
-	FNG = Math.ceil(FNG/2);
+		if (V.SF.Target === "recruit") {
+			FNG += FNG*0.95;
+		} else {
+			FNG += FNG*0.25;
+		}
+		FNG = Math.ceil(FNG/2);
 
-	if (V.SF.Target === "secure") {
-		repX((Math.ceil(V.rep*((Trade/100)*0.95))), "specialForces");
-		V.arcologies[0].prosperity = Math.ceil((V.arcologies[0].prosperity+(Trade/10)*0.95));
-	} else {
-		repX((Math.ceil(V.rep*(Trade/100)*0.25)), "specialForces");
-		V.arcologies[0].prosperity = Math.ceil(V.arcologies[0].prosperity+(Trade/10)*0.25);
-	}
+		if (V.SF.Target === "secure") {
+			repX((Math.ceil(V.rep*((Trade/100)*0.95))), "specialForces");
+			V.arcologies[0].prosperity = Math.ceil((V.arcologies[0].prosperity+(Trade/10)*0.95));
+		} else {
+			repX((Math.ceil(V.rep*(Trade/100)*0.25)), "specialForces");
+			V.arcologies[0].prosperity = Math.ceil(V.arcologies[0].prosperity+(Trade/10)*0.25);
+		}
 
-	income += ( (baseLine* (1+Multiplier.troop/NO).toFixed(2) * (1+Multiplier.unit/NO).toFixed(2) * (1+Multiplier.action/NO).toFixed(2) * (1+Multiplier.depravity/NO).toFixed(2) ) - (upkeep*N1).toFixed(2) )/( (V.SF.Size/2+S.Troops/2)*5 );
-	if (V.SF.Target === "raiding") income *= 1.25; else income *= 1.15;
-	if (V.economy < 100) if (V.SF.Target === "raiding") income *= 14.25; else income *= 14.15;// Remove line if hard mode ever gets fixed.
-	S.Troops += FNG; income = Math.ceil(income);
-	if (V.debugMode > 0) r += `<br>income:${num(income)}, troop:${num((0.09+Multiplier.troop/NO).toFixed(2))}, unit:${num((0.09+Multiplier.unit/NO).toFixed(2))}, action:${num((0.09+Multiplier.action/NO).toFixed(2))}, depravity:${num((0.09+Multiplier.depravity/NO).toFixed(2))}, upkeep:${num((upkeep*N1).toFixed(2))}`;
-
-	if (income >= target) profit = 1; delete V.SF.Subsidy; cashX(income, "specialForces");
-	if (S.Troops > unitCap) S.Troops = unitCap;
-	if (V.arcologies[0].prosperity > V.ProsperityCap) V.arcologies[0].prosperity = V.ProsperityCap;
-
-	if (S.Drugs >= 8 || S.Drugs >= 10) {
-		let survivalChance = 50;
-		if (S.Drugs >= 8) {
-			survivalChance -= 5;
-		} else if (S.Drugs >= 10) {
-			survivalChance += 5;
+		income += ( (baseLine* (1+Multiplier.troop/NO).toFixed(2) * (1+Multiplier.unit/NO).toFixed(2) * (1+Multiplier.action/NO).toFixed(2) * (1+Multiplier.depravity/NO).toFixed(2) ) - (upkeep*N1).toFixed(2) )/( (V.SF.Size/2+S.Troops/2)*5 );
+		if (V.SF.Target === "raiding") income *= 1.25; else income *= 1.15;
+		if (V.economy < 100) if (V.SF.Target === "raiding") income *= 14.25; else income *= 14.15;// Remove line if hard mode ever gets fixed.
+		S.Troops += FNG; income = Math.ceil(income);
+		if (V.debugMode > 0) r += `<br>income:${num(income)}, troop:${num((0.09+Multiplier.troop/NO).toFixed(2))}, unit:${num((0.09+Multiplier.unit/NO).toFixed(2))}, action:${num((0.09+Multiplier.action/NO).toFixed(2))}, depravity:${num((0.09+Multiplier.depravity/NO).toFixed(2))}, upkeep:${num((upkeep*N1).toFixed(2))}`;
+
+		if (income >= target) profit = 1; delete V.SF.Subsidy; cashX(income, "specialForces");
+		if (S.Troops > unitCap) S.Troops = unitCap;
+		if (V.arcologies[0].prosperity > V.AProsperityCap) V.arcologies[0].prosperity = V.AProsperityCap;
+
+		if (S.Drugs >= 8 || S.Drugs >= 10) {
+			let survivalChance = 50;
+			if (S.Drugs >= 8) {
+				survivalChance -= 5;
+			} else if (S.Drugs >= 10) {
+				survivalChance += 5;
+			}
+			if (jsRandom(0, 100) > survivalChance) deaths = jsRandom(0, ((S.Drugs*2)+4));
+			if (deaths > 0) S.Troops -= deaths;
 		}
-		if (jsRandom(0, 100) > survivalChance) deaths = jsRandom(0, ((S.Drugs*2)+4));
-		if (deaths > 0) S.Troops -= deaths;
-	}
-	if (V.SF.UC.Assign === 1 && V.SF.UC.Lock < 1) V.SF.UC.Assign = 0;
-	if (V.SF.Upgrade !== undefined) V.SF.Upgrade = 0; V.SF.Gift = 0;
-	V.SF.Colonel.Talk = 0; V.SF.Colonel.Fun = 0;
+		if (V.SF.UC.Assign === 1 && V.SF.UC.Lock < 1) V.SF.UC.Assign = 0;
+		if (V.SF.Upgrade !== undefined) V.SF.Upgrade = 0; V.SF.Gift = 0;
+		V.SF.Colonel.Talk = 0; V.SF.Colonel.Fun = 0;
 
-	r += `<br>__Week ${V.week} (AO:${V.terrain}) operational report for ${V.SF.Lower}__:`;
-	r += `<br>${V.SF.Caps} focused their ${num(S.Troops)} troops on `;
+		r += `<br>__Week ${V.week} (AO:${V.terrain}) operational report for ${V.SF.Lower}__:`;
+		r += `<br>${V.SF.Caps} focused their ${num(S.Troops)} troops on `;
 
-	if (V.SF.Target === "recruit") {
-		r += `recruiting and training more personnel. Smaller parties ventured out to protect the arcology's trade routes and strike targets of opportunity.`;
-	} else if (V.SF.Target === "secure") {
-		r += `securing the trade routes between the arcology and the surrounding area. Smaller parties ventured out to strike targets of opportunity and process new recruits.`;
-	} else {
-		r += `locating and striking targets of opportunity, capturing both material loot and new slaves. Smaller parties secured the most important of the arcology's trade routes and processed new recruits.`;
-	}
+		if (V.SF.Target === "recruit") {
+			r += `recruiting and training more personnel. Smaller parties ventured out to protect the arcology's trade routes and strike targets of opportunity.`;
+		} else if (V.SF.Target === "secure") {
+			r += `securing the trade routes between the arcology and the surrounding area. Smaller parties ventured out to strike targets of opportunity and process new recruits.`;
+		} else {
+			r += `locating and striking targets of opportunity, capturing both material loot and new slaves. Smaller parties secured the most important of the arcology's trade routes and processed new recruits.`;
+		}
 
-	if (V.SF.UC.Assign > 0) {
-		r += `<br>A ${V.SF.UC.Assign < 2 ? 'small':'large'} portion of the force was assigned as ${V.SF.UC.Assign < 2 ? 'part':'full'} time undercover officers.`;
-	}
-	if (deaths > 0) {
-		r += ` <span class='red'>${deaths} soldiers fatally overdosed on the drug cocktail</span>`;
-		if (V.SF.MercCon.CanAttend === -1) r += `, The Colonel's much heavier than average drug use saves her from this side effect.`;
-	}
+		if (V.SF.UC.Assign > 0) {
+			r += `<br>A ${V.SF.UC.Assign < 2 ? 'small':'large'} portion of the force was assigned as ${V.SF.UC.Assign < 2 ? 'part':'full'} time undercover officers.`;
+		}
+		if (deaths > 0) {
+			r += ` <span class='red'>${deaths} soldiers fatally overdosed on the drug cocktail</span>`;
+			if (V.SF.MercCon.CanAttend === -1) r += `, The Colonel's much heavier than average drug use saves her from this side effect.`;
+		}
 
-	r += `<br>These activities have, overall, <span class='green'>improved your arcology's prosperity</span>.`;
-	r += ` The goods procured by ${V.SF.Lower} after accounting for the spoils retained by individual soldiers were `;
+		r += `<br>These activities have, overall, <span class='green'>improved your arcology's prosperity</span>.`;
+		r += ` The goods procured by ${V.SF.Lower} after accounting for the spoils retained by individual soldiers were `;
 
-	if (profit > 0) {
-		r += `<span class='green'>more than sufficient to cover expenses.</span> Excess material and human assets totaling <span class='yellowgreen'>${cashFormat(income)}</span> (after liquidation) were transferred to your accounts.`;
-		if (V.economy < 100) r += ` The rapidly degrading global economy has one upside,<span class='green'> ${V.SF.Caps} was able to more easily use more 'persuasive' techniques thus leading to an increase in profit</span>.`;
-	} else {
-		r += `<span class='red'>barely enough to cover expenses.</span> More growth will be needed to ensure profitability, <span class='yellow'>hopefully purchasing more upgrades will help</span>.`;
-		r += ` Per the estimates that ${SFC()} provides, an additional <span class='yellowgreen'>${cashFormat(target-income)}</span> is required for sufficient cover.`;
-	}
+		if (profit > 0) {
+			r += `<span class='green'>more than sufficient to cover expenses.</span> Excess material and human assets totaling <span class='yellowgreen'>${cashFormat(income)}</span> (after liquidation) were transferred to your accounts.`;
+			if (V.economy < 100) r += ` The rapidly degrading global economy has one upside,<span class='green'> ${V.SF.Caps} was able to more easily use more 'persuasive' techniques thus leading to an increase in profit</span>.`;
+		} else {
+			r += `<span class='red'>barely enough to cover expenses.</span> More growth will be needed to ensure profitability, <span class='yellow'>hopefully purchasing more upgrades will help</span>.`;
+			r += ` Per the estimates that ${App.SF.SFC()} provides, an additional <span class='yellowgreen'>${cashFormat(target-income)}</span> is required for sufficient cover.`;
+		}
 
-	r += ` ${V.SF.Caps} managed to recruit ${FNG} new soldiers this week, and your reputation has <span class='green'>increased through the improvement of trade security</span>.`;
-	r += `<br>//Your instructions to ${SFC()}://`;
-
-	r += `<br>&nbsp;Deployment focus: `; // The below lines are indented to increase readability.
-		r += `<span id="focus"> <<if $SF.Target == "recruit">>''Recruiting and Training''<<elseif $SF.Target == "secure">>''Securing Trade Routes''<<else>>''Raiding and Slaving''<</if>></span>.&nbsp;&nbsp;`;
-		r += `<<link "Recruit and Train">> <<set $SF.Target="recruit">> <<replace "#focus">>''Recruiting and Training''<</replace>> <</link>> | <<link "Secure Trade Routes">> <<set $SF.Target="secure">> <<replace "#focus">>''Securing Trade Routes''<</replace>> <</link>> | <<link "Raiding and Slaving">> <<set $SF.Target="raiding">> <<replace "#focus">>''Raiding and Slaving''<</replace>> <</link>>`;
-
-	r += `<br>&nbsp;Rules of Engagement: `; // The below lines are indented to increase readability.
-		r += `<span id="roe"> <<if $SF.ROE === "hold">>''Hold Fire''<<elseif $SF.ROE === "limited">>''Limited Fire''<<else>>''Free Fire''<</if>></span>.&nbsp;&nbsp;`;
-		r += `<<link "Hold Fire">> <<set $SF.ROE="hold">> <<replace "#roe">>''Hold Fire''<</replace>> <</link>> | <<link "Limited Fire">> <<set $SF.ROE="limited">> <<replace "#roe">>''Limited Fire''<</replace>> <</link>> | <<link "Free Fire">> <<set $SF.ROE="free">> <<replace "#roe">>''Free Fire''<</replace>> <</link>>`;
-
-	r += `<br>&nbsp;Accountability: `; // The below lines are indented to increase readability.
-		r += `<span id="accountability"> <<if $SF.Regs === "strict">>''Strict Accountability''<<elseif $SF.Regs === "some">>''Some Accountability''<<else>>''No Accountability''<</if>></span>.&nbsp;&nbsp;`;
-		r += `<<link "Strict Accountability">> <<set $SF.Regs="strict">> <<replace "#accountability">>''Strict Accountability''<</replace>> <</link>> | <<link "Some Accountability">> <<set $SF.Regs="some">> <<replace "#accountability">>''Some Accountability''<</replace>> <</link>> | <<link "No Accountability">> <<set $SF.Regs="none">> <<replace "#accountability">>''No Accountability''<</replace>> <</link>>`;
-
-	if (V.SF.MercCon.CanAttend === 1) {
-		V.SF.MercCon.Income = 0; V.SF.MercCon.Menials = 0;
-		let tradeShowAttendes = 200, menialGiftsPerAttendee = 5, NewMercs = 0;
-		let menialGifts = Math.ceil(jsRandom(1, ((tradeShowAttendes*menialGiftsPerAttendee)/10)));
-		let TSProfit = Math.ceil(500000*(1+(V.SF.Size/1000))*(1+(V.arcologies[0].prosperity/1000))*T.Env);
-
-		V.SF.MercCon.Menials += menialGifts; V.SF.MercCon.TotalMenials += menialGifts;
-		V.menials += menialGifts; V.SF.MercCon.History += 1;
-		V.SF.MercCon.Income += TSProfit; V.SF.MercCon.Revenue += TSProfit;
-		cashX(TSProfit, "specialForces");
-
-		if (V.secExp > 0 && V.mercenaries > 0) {
-			V.SF.MercCon.Mercs = 0;
-			NewMercs = jsRandom(1, (tradeShowAttendes/10));
-			V.mercFreeManpower += NewMercs; V.SF.MercCon.TotalMercs += NewMercs;
-			V.SF.MercCon.Mercs += NewMercs;
-			r += `<br>''TradeShow'': During a break, The Colonel managed to sell some generic schematics to the ${tradeShowAttendes} attendees, some of whom decided to also give a few menial slaves as a bonus.<br>`;
+		r += ` ${V.SF.Caps} managed to recruit ${FNG} new soldiers this week, and your reputation has <span class='green'>increased through the improvement of trade security</span>.`;
+		r += `<br>//Your instructions to ${App.SF.SFC()}://`;
+
+		r += `<br>&nbsp;Deployment focus: `; // The below lines are indented to increase readability.
+			r += `<span id="focus"> <<if $SF.Target == "recruit">>''Recruiting and Training''<<elseif $SF.Target == "secure">>''Securing Trade Routes''<<else>>''Raiding and Slaving''<</if>></span>.&nbsp;&nbsp;`;
+			r += `<<link "Recruit and Train">> <<set $SF.Target="recruit">> <<replace "#focus">>''Recruiting and Training''<</replace>> <</link>> | <<link "Secure Trade Routes">> <<set $SF.Target="secure">> <<replace "#focus">>''Securing Trade Routes''<</replace>> <</link>> | <<link "Raiding and Slaving">> <<set $SF.Target="raiding">> <<replace "#focus">>''Raiding and Slaving''<</replace>> <</link>>`;
+
+		r += `<br>&nbsp;Rules of Engagement: `; // The below lines are indented to increase readability.
+			r += `<span id="roe"> <<if $SF.ROE === "hold">>''Hold Fire''<<elseif $SF.ROE === "limited">>''Limited Fire''<<else>>''Free Fire''<</if>></span>.&nbsp;&nbsp;`;
+			r += `<<link "Hold Fire">> <<set $SF.ROE="hold">> <<replace "#roe">>''Hold Fire''<</replace>> <</link>> | <<link "Limited Fire">> <<set $SF.ROE="limited">> <<replace "#roe">>''Limited Fire''<</replace>> <</link>> | <<link "Free Fire">> <<set $SF.ROE="free">> <<replace "#roe">>''Free Fire''<</replace>> <</link>>`;
+
+		r += `<br>&nbsp;Accountability: `; // The below lines are indented to increase readability.
+			r += `<span id="accountability"> <<if $SF.Regs === "strict">>''Strict Accountability''<<elseif $SF.Regs === "some">>''Some Accountability''<<else>>''No Accountability''<</if>></span>.&nbsp;&nbsp;`;
+			r += `<<link "Strict Accountability">> <<set $SF.Regs="strict">> <<replace "#accountability">>''Strict Accountability''<</replace>> <</link>> | <<link "Some Accountability">> <<set $SF.Regs="some">> <<replace "#accountability">>''Some Accountability''<</replace>> <</link>> | <<link "No Accountability">> <<set $SF.Regs="none">> <<replace "#accountability">>''No Accountability''<</replace>> <</link>>`;
+
+		if (V.SF.MercCon.CanAttend === 1) {
+			V.SF.MercCon.Income = 0; V.SF.MercCon.Menials = 0;
+			let tradeShowAttendes = 200, menialGiftsPerAttendee = 5, NewMercs = 0;
+			let menialGifts = Math.ceil(jsRandom(1, ((tradeShowAttendes*menialGiftsPerAttendee)/10)));
+			let TSProfit = Math.ceil(500000*(1+(V.SF.Size/1000))*(1+(V.arcologies[0].prosperity/1000))*T.Env);
+
+			V.SF.MercCon.Menials += menialGifts; V.SF.MercCon.TotalMenials += menialGifts;
+			V.menials += menialGifts; V.SF.MercCon.History += 1;
+			V.SF.MercCon.Income += TSProfit; V.SF.MercCon.Revenue += TSProfit;
+			cashX(TSProfit, "specialForces");
+
+			if (V.secExp > 0 && V.mercenaries > 0) {
+				V.SF.MercCon.Mercs = 0;
+				NewMercs = jsRandom(1, (tradeShowAttendes/10));
+				V.mercFreeManpower += NewMercs; V.SF.MercCon.TotalMercs += NewMercs;
+				V.SF.MercCon.Mercs += NewMercs;
+				r += `<br>''TradeShow'': During a break, The Colonel managed to sell some generic schematics to the ${tradeShowAttendes} attendees, some of whom decided to also give a few menial slaves as a bonus.<br>`;
+			}
 		}
 	}
 	return r;
 };
 
-window.Count = function() {
+App.SF.Count = function() {
 	const V = State.variables, T = State.temporary, C = Math.clamp, S = V.SF.Squad, E = V.economy;
 	T.FU = 10; S.Firebase = C(S.Firebase, 0, T.FU);
 	T.AU = 10; S.Armoury = C(S.Armoury, 0, T.AU);
@@ -513,19 +1343,25 @@ window.Count = function() {
 	}
 
 	if (V.SF.Size >= 30) T.T1 = 1; T.SFSubsidy = 5000*(1+((V.SF.Squad.Troops/100)+(V.SF.Size/100)));
-	SFNameCapsCheck();
+	App.SF.NameCapsCheck();
 	if (V.SF.IntroProgress > -1) delete V.SF.IntroProgress;
-	if (V.SF.MercCon === undefined) MercCon();
+	if (V.SF.MercCon === undefined) App.SF.Init();
 	if (V.SF.Size === T.max) delete V.SF.Upgrade;
 	if (V.SF.MercCon.CanAttend !== -2 || V.SF.MercCon.CanAttend !== -3) V.SF.MercCon.CanAttend = -1;
+	if (V.SF.BadOutcome !== undefined) delete V.SF.BadOutcome;
+	if (V.SF.FS === undefined) V.SF.FS = {Tension:-1};
+	if (V.SF.tour === undefined) V.SF.tour = V.Tour || 0; delete V.Tour;
+	if (V.arcologies[0].SFRaid !== undefined) delete V.arcologies[0].SFRaid;
+	if (V.arcologies[0].SFRaidTarget !== undefined) delete V.arcologies[0].SFRaidTarget;
+	if (V.SF.Facility !== undefined) delete V.SF.Facility;
 };
 
-window.SFNameCapsCheck = function() {
+App.SF.NameCapsCheck = function() {
 	const V = State.variables;
 	if (V.SF.Lower !== "the special force") V.SF.Caps = V.SF.Lower.replace("the ", "The ");
 };
 
-window.SFUpgradeCost = function(cost, unit) {
+App.SF.UpgradeCost = function(cost, unit) {
 	"use strict"; const V = State.variables, T = State.temporary, S = V.SF.Squad; let value = 0;
 	value = cost*T.Env*(1.15+(V.SF.Size/10))*(1.15+(unit/100));
 	if ([S.Sub, S.AircraftCarrier, S.MissileSilo, S.GiantRobot, S.Satellite.lv, S.GunS, S.SpacePlane, S.Drones].includes(unit)) value *= V.HackingSkillMultiplier;
@@ -554,7 +1390,7 @@ window.progress = function(x, max) {
 	return `${out}`;
 };
 
-window.SFC = function() {
+App.SF.SFC = function() {
 	const V=State.variables;
 	if (V.SF.MercCon.CanAttend === -1) {
 		return `The Colonel`;
@@ -566,7 +1402,7 @@ window.SFC = function() {
 	}
 };
 
-window.SFCR = function() {
+App.SF.ColonelStatus = function() {
 	const V = State.variables, C = V.SF.Colonel;
 	if (C.Status <= 19) {
 		return `boss`;
@@ -577,7 +1413,7 @@ window.SFCR = function() {
 	}
 };
 
-window.Interactions = function() {
+App.SF.Interactions = function() {
 	"use strict"; let choice = ``, time = ``;
 	const V = State.variables, C = V.SF.Colonel;
 	if (V.SF.Gift > 0) {
@@ -607,58 +1443,7 @@ window.Interactions = function() {
 	return `${time} <br>${choice}`;
 };
 
-window.BadOutcome = function() {
-	"use strict";
-	const V = State.variables;
-	let r = ``;
-	V.SF.Active = -2;
-
-	switch(V.SF.Colonel.Core) {
-		case "Shell-Shocked":
-			V.SF.BadOutcome = "lockdown"; V.trinkets.push("${t} explosives detonator");
-			r += `Unnerved by your ever-increasing influence over your men and undercutting of her authority, The Colonel uses heavy explosives at midnight to seal off The Firebase from your access. When you step off of your express elevator, you are met not with two guards, but several armed proximity mines next to an incredibly thick wall of smoking rubble. No doubt there are machine gun nests, anti-tank nests, and lots more proximity mines just waiting for you on the other side, should you somehow get through the wall of debris.`;
-			r += `<br>The ${V.SF.Lower} still deploys into the old world to plunder as it pleases, but no longer for you. You receive no money from their exploits, and their total defiance and independence of you is a permanent stain on your reputation. Of course, you'll never have the needed military power to dislodge them, especially with all the redundant fortifications, crossfire envelopes, and myriad traps that paranoid bitch had built around each entrance ever since she went rouge. Trying to sabotage certain support beams from above to make the Firebase facility collapse in on itself could easily cause enough damage to topple other parts of the arcology too, and such a thing would be very difficult to cover up. In other words, you're stuck with them. The Firebase has become a permanent tumor on your Arcology and good name.`;
-			break;
-		case "Cruel":
-			V.SF.BadOutcome = "Revolt"; V.trinkets.push("${t} dog tags"); repX((0 - V.rep), "specialForces");
-			V.arcologies[0].prosperity -= 50; V.ASlaves = 49; cashX(-10000, "specialForces");
-			V.ACitizens = 751; V.menials = 0; V.researchLab.menials = 0;
-			V.researchLab.hired = 0; V.fuckdolls = 0; V.menialBioreactors = 0;
-			V.activeUnits = 0; V.secBots.troops = 0; V.createdSlavesUnits = 0;
-			V.createdMilitiaUnits = 0; V.createdMercUnits = 0;
-			r += `<br>The ${V.SF.Lower} still deploys into the old world to plunder as it pleases, but no longer for you. You receive no money from their exploits, and their total defiance and independence of you is a permanent stain on your reputation. Of course, you'll never have the needed military power to dislodge them, especially with all the redundant fortifications, crossfire envelopes, and myriad traps that paranoid bitch had built around each entrance ever since she went rouge. Trying to sabotage certain support beams from above to make the Firebase facility collapse in on itself could easily cause enough damage to topple other parts of the arcology too, and such a thing would be very difficult to cover up. In other words, you're stuck with them. The Firebase has become a permanent tumor on your Arcology and good name.`;
-			break;
-		case "Cruel and Psychopathic":
-			V.SF.BadOutcome = "Revolt"; V.trinkets.push("${t} dog tags"); repX((0 - V.rep), "specialForces");
-			r += `<br>Finally fed up with your constant intrusions into her territory and crew, The Colonel riles up her people for an utterly ferocious rebellion. The promises of rape and plunder and dominion over some of the wealthiest tenants in the entire Free City (and their world-class slaves) are all that's needed to give the selfish lot of them a nearly unshakable resolve in the task of delivering their overlord Her most coveted prize: You.`;
-			r += `<br>It is now midnight. The lights are the first thing they disable, as they still have the excellent night vision equipment you purchased for them. Some of your citizens start panicking almost immediately at the sudden blackout; this is very reminiscent of the Daughters of Liberty attack that still haunts many of their memories. Things like this were never supposed to happen again. You had promised them that you'd create an army that would protect them...`;
-			r += `<br>Her army vanguard strikes fast and hard throughout the main Plaza, cutting through your security personnel, defensive platoons, and drones with an ease that stinks of months of careful planning and study. Your defensive platoons, veterans of many Battles, are outmaneuvered at every turn; their hidden ammunition caches are found empty, their communications networks are mysteriously scrambled, and key chokepoints are found to be booby-trapped before your men can even get to them; their well-rehearsed arcology defense routines have gone to ash. Assuming you ever get a chance to speak to The Colonel again, you would ask if her betrayal was actually inevitable rather than something you triggered.`;
-			r += `<br>You watch with immense disappointment as the very APC's and IFV's that you paid for now charge into resisting storefronts to storm the armed civilians inside with heavy infantry at point blank range. Battle Tanks trample wounded civilians in the streets as they maneuver to blast your citizens' hastily-made holdouts to pieces, burying dozens of civilian loyalists under mountains of rubble while hundreds more are gunned down in the streets for want of adequate cover. The Plaza is lost; the enemy vanguard has gained access to the Residential Sectors upstairs. Enticed, entire platoons of her vanguard decide to become bandits, ignoring their Colonel's orders and scattering off from the main force to kick down many apartment doors and help themselves to whatever desirable goods or inhabitants they find within.`;
-			r += `<br>Outside, her many aircraft swarm the local airspace to patrol the Arcology outskirts, conduct recon scans of the upper levels, or monitor your sealed penthouse outside the range of your SAM turrets, while shooting down any other fleeing VTOL's. You will not be escaping by air today. No one will. No escaping by land either: Swarms of her drones are tasing fleeing noncombatants by the hundreds for later enslavement, as the remainder of her army begins to pour into the bloody Plaza. This is your Arcology's darkest hour.`;
-			r += `<br>And yet your Mercenaries stand ready. On security feeds throughout the Residential Sectors and Garrison you see your elite sellswords charging out of their lodgings in full kit. They are few, but this is their home, and you are their Patron and Commander. They hold firm, fighting like legends of old in some places, and fighting like animals in others. The Mercenaries trapped downstairs near The Garrison take to the Markets, pinning down most of The Colonel's reinforcements from various shopping outlets using towed quad anti-aircraft guns, and ultimately cutting off many of the assets needed for The Colonel's ongoing assault upstairs. Enemy troop carriers laden with heavy infantry breach the shopping centers in order to dislodge them, only to have their inhabitants cooked alive before they can disembark in time or shot to pieces even when they do. Keeping these Mercenaries alive are the roving exosuit-clad tank hunter duos that frag entire armor platoons en route to these shopping outlets, resorting to carving open enemy AFV's up close with their powered CQB weapons once they've run out of missiles. Back in the Residencies upstairs, in the still-evacuating streets and atriums, your actively-camouflaged snipers take up choice positions on various balconies and overpasses, sowing panic among the advancing traitors with their impressive anti-material rifles with one explosive headshot after another, sometimes even hitting them through walls and buildings. In large indoor parks leading up to the main Residential courtyard, Mercenary fireteams force enemy flankers to flee every single footpath they walk through, harassing constantly and preventing any hostile reconnaissance or infiltration from being done.`;
-			r += `<br>The main Residential courtyard features the Residential Sectors' massive elevator complex, which will give The Colonel's forces rapid access to the Promenade, and ultimately, You. In front of it, your Mercenary Captain stands atop one of the many meters-thick sandbag walls his men just assembled there, leading the raging defensive blockade in bringing the vanguard's assault to a gory halt. ${V.SF.Lower}'s bodies and bits and debris pile up in small walls on the outskirts under the burning heat of hundreds of flying autocannon rounds and dozens of screeching missiles. Before the vanguard's morale can break however, The Colonel shows up in person behind her own lines, kitted in a customized power armor and dragging, of all things, a hydraulic trebuchet loaded with a crudely-welded large metal box. She launches the box from beyond your Mercenaries' line of sight, sending it reeling towards them and predicting that they will try to shoot it out of the sky. They do, not wanting the slow but strange projectile to hit them directly, only learning of their folly when the metal 'box' detonates midair and releases a dense cloud of cluster bombs over their position. The munitions themselves disable some of the exosuits, but they don't kill too many on their own. However, the bomblets do succeed in detonating the various ammo dumps that were feeding your Mercenaries' blazing guns. The chain explosions, resulting fires, destroyed cover, and widespread casualties and confusion all create the perfect opportunity for The Colonel to storm the previously implacable barricade at the head of her troops, with her followers rushing the merc lines and blasting off the heavy armor plating of your disoriented Mercenaries themselves before stabbing them to death, or in some cases, hauling off the dis-armored and defeated female Mercenaries they discover for immediate use. As the few intact Mercenaries remaining desperately struggle to hold off the advancing horde with their remaining ammo, The Colonel takes on your dazed Mercenary Captain in single combat. When their ammunition runs dry, and their blasted battlesuits break down, they both eject, and then the knives come out. Minutes later, she stabs him in the side of his skull after she dodges yet another attempt to land a killing blow on her. With the source of Mercenary command and control gone, The Colonel staunches her own bleeding, yanks a trooper out of a near-pristine battlesuit that she now claims for herself, and directly organizes the isolation and extermination of the smaller teams of Mercenaries that are bleeding her troops everywhere else. She routs your Mercenaries for good with the razing of their Garrison structure. The ${V.SF.Lower} now enjoys absolute air and ground superiority. Soon the surviving rear of her army is brought upstairs from the killing floors down in the Markets, and the many elevators and cargo lifts of the elevator complex are boarded, with your executive override codes to remotely shut down the elevators somehow being manually bypassed by her combat engineers. It won't be long now.`;
-			r += `<br>Dawn has broken over the Free City. Only five hours into the slaughter (of which your Mercenaries no doubt bought you at least three), it becomes very clear to you that the only way to save your arcology is to destroy it. Everything and Everyone will burn before you let this crazy bitch and her rabid dogs get their dirty hands on you or your slaves. On your order, your most loyal subordinates, the ones who were with you since the early days to patrol your Arcology before you even had drones to protect it, fight their way to through the carnage of your panicking civilians on The Promenade to get to the exact hidden elevators that your Personal Assistant specifies for them. Their destination is the arcology's reactor complex, of course. Following the PA's instructions precisely, they arm their many high-yield explosive charges on your now-exposed and de-stabilized reactor, and in one final service to you, detonate them, creating a colossal explosion. The rapidly ascending heretics quite literally have the rug pulled from under them, as the blast takes out nearly all of the arcology's lesser foundational support beams, thus collapsing many thousands of metric tons of concrete, steel, plastic, and plaster out from underneath the upward bound Colonel and her men... And everyone else, unfortunately. With no foundation any longer, all of your arcology's interior Sectors are utterly gutted from the bottom-up by gravity itself, and everything beneath your ration-stocked, backup-powered Penthouse crumbles to the earth. The massive cloud of dust created by the widespread fires and interior collapse ends up covering the entire Free City for hours. Her aircraft, now bereft of their logistical support and command structure, immediately fly off to neighboring arcologies to offer their services to the various employers there, seeing as the coup has failed and they have nowhere else to go. The skies are free for You to travel as you please, but You aren't going anywhere.`;
-			r += `<br>It is late evening when the tremors finally stop. Everything below your Penthouse is ruin, and your arcology, its population, and your reputation are now essentially dust. However, the arcology did not fall. It. Is. Still. Yours. You shall rise again, not flee this tragedy in shame. Of course, no one will ever know that you sacrificed the arcology deliberately in order to save yourself; it is all too easy to claim that The Colonel carelessly damaged the reactor complex during her assault, ironically causing her own defeat. Frankly, sacrificing most of your tenants doesn't bother you as much as it probably should; maybe its because you know that if The Colonel and her men had won, all those people were as good as dead anyway.`;
-			r += `<br>You know that if you want to survive, you'll need to surround yourself with workers and allies to rebuild fast, else your rivals gobble you up. It costs you a horrific sum to clear and process the wreckage and rebuild the basic Sector superstructures and infrastructure for your arcology on such short notice, even after liquidating everything your workers salvage. Your powerful friends still residing in the old world or other Free Cities have lent you a surprising amount of aid too, with quite a few lent super-heavy construction assets getting huge amounts of work done quickly. Even then, what you've been able to rebuild is very little. After a nearly sleepless, sexless week of immense toil, you've successfully organized tens of thousands of people in restoring the arcology to a barely functional condition (along with rudimentary imitations of all your upgrades), and you've even got some new Garrison Mercenaries in by week's end too... But its just not the same. If it weren't for your bruised weather-plating your arcology would look like a giant skeleton. Inside, it feels like a concrete boneyard; everything has been built cheap and utilitarian, and the walls aren't even painted. With only a few operational services staffed by commuters from neighboring arcologies, there is just an eerie silence just about everywhere. With few amenities for relief, there are going to be many long days ahead for your few tenants, most of them being wealthy but distraught returning travelers who left before the attack. Maybe your slaves can help entertain them. A lot of these people are VIP's it seems.`;
-			r += `<br>It is now midnight. In a rare moment of reflection, you contemplate that what The Colonel just did to your arcology was exactly what you were all too happy to have her do to dozens, if not hundreds of innocent villages and townships under your shadow during her 'Raiding and Slaving' operations. Nevertheless, You have hard work ahead of you, especially now that your enemies see that you are now much weaker than you have ever been.`;
-			r += `<br>The Colonel's body was never found.`;
-			break;
-		case "Kind":
-			V.SF.BadOutcome = "Exodus"; V.trinkets.push("${t} gift card"); V.menials += 73;
-			cashX(55000, "specialForces");
-			r += `Your Colonel has had enough of your meddling. In her eyes, you've broken faith with her. She asked one thing of you in return for her full support, and you could not even give her that.`;
-			r += `<br>At midnight, a great mechanized convoy, the biggest you've seen in a long while, streams out of your Arcology. Troop Carriers, Aircraft, Heavy Trucks, and other war machines of varying sizes pour out of the Firebase in tight formation. The Colonel is refusing your calls, and you know it would be ill advised to go out there yourself or to try to stop them with force. The many bandits and mercenary groups that the convoy will inevitably pass by will probably feel this way as well. You have no idea where they are going or how they will end up, but with their wealth and weaponry, you are not worried.`;
-			r += `<br>Upon your inspection of the abandoned firebase itself, most of the heavier installations have been dismantled and carried away, but about ${cashFormat(55000)} in miscellaneous supplies and 73 menials have been left behind, presumably because the convoy had no space for them. On The Colonel's old pavilion, you see a white gift card standing upright.`;
-			r += `<br>When you climb the crates to take it and read it, you see The Colonel's handwritten sentiments about the way things turned out; her gratitude for taking her in when you did, her disappointment in your actions, a detailed account of your failings, her regrets that things had to end this way, and finally, her well wishes for your future endeavors.`;
-			r += `<br>Disgusted, you pocket the gift card and leave your employees and menials to gather up the valuables here before stalking back to your Penthouse. The former Firebase is returned to being a warehouse facility.`;
-			break;
-		default:
-			break;
-	}
-	return r;
-};
-
-window.UnitText = function(input) {
+App.SF.UnitText = function(input) {
 	"use strict"; const V = State.variables, S = V.SF.Squad;
 	// Sorted by case
 	let appear = `is currently constructed in a haphazard fashion.`;
@@ -714,8 +1499,7 @@ window.UnitText = function(input) {
 
 	let activate2 = `has been recommissioned for use by ${V.SF.Lower}. Currently, it `;
 	let barrels = `Miniguns and Gatling cannons line`, distance = `, though the distance to ground targets renders the smaller calibers somewhat less useful`;
-	// eslint-disable-next-line camelcase
-	let b4 = ``, c2 = ``, fuel = ``, GS_Speed = ``, countermeasures = ``, ammunition = ``, DFA = ``, autocannon = ``;
+	let b4 = ``, c2 = ``, fuel = ``, gsSpeed = ``, countermeasures = ``, ammunition = ``, DFA = ``, autocannon = ``;
 
 	let loc1 = `An unused science satellite has been purchased from an old world nation. While currently useless, it holds potential to be a powerful tool.`;
 	let gyro = ``, telemetry = ``, thrusters = ``, solar = ``, surviv = ``;
@@ -779,7 +1563,7 @@ window.UnitText = function(input) {
 			}
 			break;
 		case 'armory':
-			if (S.Armoury >= 0) { const text2 = `<br><br>''Armory:''<br>`; radio = `Radios have been wired into the soldiers helmets`; helmets = `.`;
+			if (S.Armoury >= 0) { const text2 = `\n\n''Armory:''<br>`; radio = `Radios have been wired into the soldiers helmets`; helmets = `.`;
 				if (S.Armoury >= 2) helmets = ` and a HUD has been integrated into the soldier's eyewear.`;
 				if (S.Armoury >= 3) ammo0 = `Tactical vests have been provided, allowing soldiers to carry additional ammo.`;
 				if (S.Armoury >= 4) armor1 = `The body armor is a newer variant, able to stop small arms fire and protect against shrapnel.`;
@@ -793,7 +1577,7 @@ window.UnitText = function(input) {
 			}
 			break;
 		case 'drugs':
-			if (S.Drugs >= 0) { const text3 = `<br><br>''Drug Lab:''`; amphet = `Amphetamines have been added to the cocktail at a low dosage to act as a stimulant, physical performance enhancer, cognition control enhancer. Some side-effects exist.`;
+			if (S.Drugs >= 0) { const text3 = `\n\n''Drug Lab:''`; amphet = `Amphetamines have been added to the cocktail at a low dosage to act as a stimulant, physical performance enhancer, cognition control enhancer. Some side-effects exist.`;
 				if (S.Drugs >= 2) phen = `Phencyclidine has been added to the cocktail at a low dosage as a dissociative psychotropic for soldiers in battle to introduce feelings of detachment, strength and invincibility, and aggression. Some side-effects reduce the tolerable dosage before soldiers go on uncontrollable violent outbreaks.`;
 				if (S.Drugs >= 3) steroid = `Testosterone is being produced for soldiers in training as a natural muscle growth stimulant and to invoke aggression.`;
 				if (S.Drugs >= 4) downer = `Zaleplon is being produced as a downer to counteract the battle cocktail and encourage rest before combat.`;
@@ -807,7 +1591,7 @@ window.UnitText = function(input) {
 			}
 			break;
 		case 'UAV':
-			if(S.Firebase >= 2 && S.Drones >= 1) { const text4 = `<br><br>''Drone Bay:''`;
+			if(S.Firebase >= 2 && S.Drones >= 1) { const text4 = `\n\n''Drone Bay:''`;
 				if (S.Drones >= 2) a = `equipped with missiles are resting on one side of the drone bay`; b = `; as well as destroying the occasional target.`;
 				if (S.Drones >= 3) c = `A fleet of`; d = `large delivery quadcopters have been converted for military service to support ground forces as combat drones.`;
 				if (S.Drones >= 4) d = `combat drones take up the rest of the space in the drone bay. They have a`; e = `small automatic rifle`; f = `mounted to the underside.`;
@@ -888,7 +1672,8 @@ window.UnitText = function(input) {
 				if (S.TA >= 9) Radar = `Radar-absorbent materials have replaced the old skin, making it difficult to pick up the VTOL on radar.`;
 				if (S.TA >= 10) type = `tiltjet`; engines01 = ``; engines0 = `The tiltrotors have been replaced with tiltjets, allowing for much greater airspeed and acceleration.`;
 				return `${text9} A ${Num} of transport ${type} VTOL have been recommissioned for use by ${V.SF.Lower}. The VTOLs are resting on large pads near the base to load either a ${capacity} tons of material. ${engines0} ${engines01} ${Armor} ${landing} ${counter} ${Radar} ${miniguns}`;
-			} break;
+			}
+			break;
 		case 'SP':
 			if (S.SpacePlane >= 1) { const text10 = `<br>&nbsp;''Spaceplane:''`;
 				if (S.SpacePlane >= 2) b5 = ``; shield = `The current heat shielding has been upgraded, reducing the likelihood of heat damage during reentry.`;
@@ -909,14 +1694,12 @@ window.UnitText = function(input) {
 				if (S.GunS >= 3) c2 = `The underside of the aircraft has been better armored against small-arms fire`; countermeasures = `.`;
 				if (S.GunS >= 4) fuel = `Larger fuel tanks have been installed in the wings and fuselage, allowing the gunship to provide aerial support for longer periods before refueling.`;
 				if (S.GunS >= 5) barrels = `25 mm Gatling cannons`; distance = `; allowing the gunship to eliminate infantry`; DFA = ` and light vehicles from above`; autocannon = ` and a 40 mm autocannon are mounted on`;
-				// eslint-disable-next-line camelcase
-				if (S.GunS >= 6) GS_Speed = `The engines have been replaced, allowing both faster travel to a target, and slower travel around a target.`;
+				if (S.GunS >= 6) gsSpeed = `The engines have been replaced, allowing both faster travel to a target, and slower travel around a target.`;
 				if (S.GunS >= 7) countermeasures = `; and multi-spectrum countermeasures have been installed to protect against guided missiles.`;
 				if (S.GunS >= 8) b4 = `Upgraded multi-spectrum sensors can clearly depict targets even with IR shielding.`;
 				if (S.GunS >= 9) ammunition = `The ammunition storage has been increased, only slightly depriving loaders of a place to sit.`;
 				if (S.GunS >= 10) DFA = `; both light and heavy vehicles, and most enemy cover from above`; autocannon = `; a 40 mm autocannon, and a 105 mm howitzer are mounted on`;
-				// eslint-disable-next-line camelcase
-				return `${text11} A large gunship ${activate2} is being refueled in the hangar. ${barrels}${autocannon} the port side of the fuselage${distance}${DFA}. ${b4} ${ammunition} ${GS_Speed} ${c2}${countermeasures} ${fuel}`;
+				return `${text11} A large gunship ${activate2} is being refueled in the hangar. ${barrels}${autocannon} the port side of the fuselage${distance}${DFA}. ${b4} ${ammunition} ${gsSpeed} ${c2}${countermeasures} ${fuel}`;
 			}
 			break;
 		case 'sat':
@@ -932,7 +1715,8 @@ window.UnitText = function(input) {
 				if (S.Satellite.lv >= 9) lens = `A higher quality and adjustable lens has been installed on the laser, allowing scalpel precision on armor or wide-area blasts on unarmored targets.`;
 				if (S.Satellite.lv >= 10) kin = `A magazine of directable tungsten rods have been mounted to the exterior of the satellite, allowing for kinetic bombardment roughly equal to a series of nuclear blasts.`;
 				return `${text12} ${loc1} ${gyro} ${thrusters} ${telemetry} ${solar} ${reactor} ${surviv} ${laser1}${heat} ${lens} ${kin}`;
-			} break;
+			}
+			break;
 		case 'GR':
 			if (S.GiantRobot >= 1) { const text13 = `<br>&nbsp;''Giant Robot:''`;
 				if (S.GiantRobot >= 2) loc = ``; armor8 = `Armor plating has been mounted over the majority of the robot.`;
@@ -945,7 +1729,8 @@ window.UnitText = function(input) {
 				if (S.GiantRobot >= 9) ammo2 = `; with spare ammunition drums kept along the robot's waist.`;
 				if (S.GiantRobot >= 10) missile = `Missile pods have been mounted on the shoulders.`;
 				return `${text13} A prototype giant robot ${loc} rests in a gantry along the side of the arcology. The robot is as tall as a medium-sized office building, focusing on speed over other factors. ${power} ${armor8} ${actuator} ${heatsink} The main armament is ${knife} ${cannon1}${ammo2} ${missile}`;
-			} break;
+			}
+			break;
 		case 'ms':
 			if (S.MissileSilo >= 1) { const text14 = `<br>&nbsp;''Cruise Missile:''`;
 				if (S.MissileSilo >= 2) b2 = `a modern missile`; c8 = `; tipped with a conventional warhead`;
@@ -1003,159 +1788,13 @@ window.UnitText = function(input) {
 				return `${text17} An air cushion transport vehicle, or hovercraft ${recom2} is parked on the pier of the Naval Yard, ready to ferry ${tons} tons of soldiers and vehicles. ${guns} ${guns2} ${fans} ${turbines} ${speed} ${skirt} ${armor10} ${ramps} ${HATframe} ${loadout}`;
 			}
 			break;
-		default:
-			break;
 	}
-		/* if (V.SF.Facility.Toggle > 0 && V.SF.Facility.Active > 0) { r += `<br><br>''${V.SF.Facility.Caps}:''`;
+		/* if (V.SF.Facility.Toggle > 0 && V.SF.Facility.Active > 0) { r += `\n\n''${V.SF.Facility.Caps}:''`;
 			if (passage() === "Firebase") {
-				r += `<br>[[Enter the building|<<= SFReport()>>][]]`;
+				r += `<br>[[Enter the building|<<= App.SF.AAR()>>][]]`;
 			}
 			} else if (passage() === "SF_Report") {
 				<<include "SF_.SupportFacilityReport">>
 			}
 		}*/
 };
-
-/* window.FSIntegrationMenu = function() {
-	const V = State.variables;
-	const UpgradeOptions = ['Slaves','FoodsAndMedia','CommonArea','Barracks', 'SlaveProcessingCages','CommandCenter','Armory','DrugLab','Garage','Hangar', 'DroneBay','PersonalItems','VehicleUpgrades','CommonAreaVendors', 'RoleplayingManadated','ColonelCompilance','ColonelGift'];
-	const FS_OPTIONS = ['Repopulation','Eugenics','Gender radicalism','Gender traditionalism','Paternalism','Degradationism','Body Purism', 'Transformation Fetishism','Youth Preferentialism','Maturity Preferentialism','Slimness Enthusiasm','Asset Expansionism','Slave Pastoralism','Physical Idealism','Hedonistic Decadence','Chattel Religionism','Roman Revivalism','Aztec Revivalism','Egyptian Revivalism','Edo Revivalism','Arabian Revivalism','Chinese Revivalism','Multiculturalism'];
-	var text = ``;
-	if (V.SF.FS === undefined) {
-		text += `<br><br>`;
-		//text += ``;
-		V.SF.FS={Acceptance:{'FS':[],'Percent':[]}, Upgrade:0, Annoyance:0, Options:{ 'Slaves':[], 'FoodsAndMedia':[], 'CommonArea':[], 'Barracks':[], 'SlaveProcessingCages':[], 'CommandCenter':[], 'Armory':[], 'DrugLab':[], 'Garage':[], 'Hangar':[], 'DroneBay':[], 'PersonalItems':[], 'VehicleUpgrades':[], 'CommonAreaVendors':[], 'RoleplayingManadated':[], 'ColonelCompilance':[], 'ColonelGift':[] }};
-		V.SF.Colonel.Talk = 1;
-	} else {
-		text += `You walk past The Colonel and move towards the common area to meet with an exclusive group of her very influential officers that are currently relaxing at their favorite table. These men and women are known for their competence, popularity, and authority within in their respective divisions of the ${V.SF.Lower}, they are hard to replace, and they are always looking to earn more coin; they are the perfect weak link for trickling your Future Society influences down into the Firebase. As the officers make room at their table for you to sit and join them for discussion, you spot The Colonel staring at you from afar, and she does not look happy with you. As you are her employer, she cannot stop you from speaking with her soldiers or moving around as you please, but she can tell that you are up to no good: <br><br>`;
-		const MEMU_OPTION = function(VisableName,ArraryName,Cost) {
-			var FinalVisableName = VisableName;
-			if (ArraryName === 'ColonelGift') {
-				switch(POS) {
-					case 'Repopulation': FinalVisableName += ` Repopulationist`; break;
-					case 'Eugenics': FinalVisableName += `Eugenicist`; break;
-					case 'Gender radicalism': FinalVisableName += `Radicalist`; break;
-					case 'Gender traditionalism': FinalVisableName += `Traditionalist`; break;
-					case 'Paternalism': FinalVisableName += `Paternalist`; break;
-					case 'Degradationism': FinalVisableName += `Degradationist`; break;
-					case 'Body Purism': FinalVisableName += `Purist`; break;
-					case 'Transformation Fetishism': FinalVisableName += `Transformationist`; break;
-					case 'Youth Preferentialism': FinalVisableName += `Youth`; break;
-					case 'Maturity Preferentialism': FinalVisableName += `Maturity`; break;
-					case 'Slimness Enthusiasm': FinalVisableName += `Enthusiast`; break;
-					case 'Asset Expansionism': FinalVisableName += `Expansionist`; break;
-					case 'Slave Pastoralism': FinalVisableName += `Pastoralist`; break;
-					case 'Physical Idealism': FinalVisableName += `FS`; break;
-					case 'Hedonistic Decadence': FinalVisableName += `Hedonist`; break;
-					case 'Chattel Religionism': FinalVisableName += `Religionist`; break;
-					case 'Roman Revivalism': FinalVisableName += `Roman`; break;
-					case 'Aztec Revivalism': FinalVisableName += `Aztec`; break;
-					case 'Egyptian Revivalism': FinalVisableName += `Egyptian`; break;
-					case 'Edo Revivalism': FinalVisableName += `Edo`; break;
-					case 'Arabian Revivalism': FinalVisableName += `Arabian`; break;
-					case 'Chinese Revivalism': FinalVisableName += `Chinese`; break;
-					case 'Multiculturalism': FinalVisableName += `Multi-Culturalistic`; break;
-				}
-				if (POS !== 'Multiculturalism') {
-					FinalVisableName += `-themed`
-				}
-				FinalVisableName += ` personal gift optimized for this FS`;
-			}
-			text += `<<link "${FinalVisableName}""Firebase">>
-			if ([${POS}].includes(V.SF.FS.FS)) {
-				if ([${POS}].includes(V.SF.FS.Slaves)) {
-						if (ArraryName !== 'ColonelGift') {
-							if (ArraryName !== 'ColonelCompilance') {
-								V.SF.FS.Acceptance.Percent[V.SF.FS.FS.Slaves.indexOf(${POS})] += 6;
-							} else {
-								V.SF.FS.Acceptance.Percent[V.SF.FS.FS.Slaves.indexOf(${POS})] += 10;
-							}
-						}
-					}
-			} else {
-				V.SF.FS.Acceptance.FS.push('${POS}');
-				V.SF.FS.Acceptance.Percent.push(6);
-			}
-			V.SF.FS.ArraryName.push('${POS}');
-			if (ArraryName !== 'ColonelGift') {
-				V.SF.FS.Annoyance += 15;
-			} else {
-				V.SF.FS.Annoyance -= 15;
-			}
-			V.Cash -= cost;
-			V.SF.FS.Upgrade = 1;
-			<</link>> //costs <span class='yellowgreen'>${cashFormat($Cost)},</span> `;
-			if (ArraryName !== 'ColonelGift') { text += `increases`;
-				} else { text += `reduces`; } text += ` The Colonel's annoyance by 15%`;
-			if (ArraryName !== 'ColonelGift') { text += ` and will increase the acceptance of this FS by `;
-				if (ArraryName !== 'ColonelCompilance') { text += `6%`; } else { text += `10%`; }
-			}
-			text += `.`;
-		}
-		const FSlist = FS_OPTIONS;
-		for(let i = 0;i<FSlist.length;i++) {
-			let FSPOS = FSlist[i];
-			if (i > 0) text += `<br>`;
-			switch(FSPOS) {
-				case 'Repopulation': text += `Repopulation Efforts: focus on mass breeding in order to repopulate the future world.`; break;
-				case 'Eugenics': text += `Eugenics: rebuilding society using restrictive breeding programs reserved solely for society's finest. `; break;
-				case 'Gender radicalism': text += `Gender radicalism: a radical redefinition of gender that identifies powerful people as male, and everyone else as female.`; break;
-				case 'Gender traditionalism': text += `Gender traditionalism: a societal preference for feminine slaves and support for slave pregnancy. `; break;
-				case 'Paternalism': text += `Paternalism: a vision of slave improvement, including slaves' health, mental well-being, and education. `; break;
-				case 'Degradationism': text += `Degradationism: a belief that slaves are not human and should not be treated decently.`; break;
-				case 'Body Purism': text += `Body Purism: societal disapproval of implant surgery. `; break;
-				case 'Transformation Fetishism': text += `Transformation Fetishism: societal fetishization of implant surgery.`; break;
-				case 'Youth Preferentialism': text += `Youth Preferentialism: increased interest in girls just past their majority. `; break;
-				case 'Maturity Preferentialism': text += `Maturity Preferentialism: increased interest in mature slaves. `; break;
-				case 'Slimness Enthusiasm': text += `Slimness Enthusiasm: a fashion for slaves with girlish figures.`; break;
-				case 'Asset Expansionism': text += `Asset Expansionism: societal hunger for huge assets of whatever origin.`; break;
-				case 'Slave Pastoralism': text += `Slave Pastoralism: societal acceptance of slave products like milk.`; break;
-				case 'Physical Idealism': text += `Physical Idealism: societal reverence for the idealized human form, including height, health and muscle.`; break;
-				case 'Hedonistic Decadence': text += `Hedonistic Decadence: societal acceptance of overindulgence and immediate gratification. Be it food, drink, sex, drugs or whatever one's desire may be.`; break;
-				case 'Chattel Religionism': text += `Chattel Religionism: a new strain of religion that emphasizes the slaveholding portions of religious history.`; break;
-				case 'Roman Revivalism': text += `Roman Revivalism: a vision of a new Rome.`; break;
-				case 'Aztec Revivalism': text += `Aztec Revivalism: a vision of a new Aztec Empire.`; break;
-				case 'Egyptian Revivalism': text += `Egyptian Revivalism: a vision of a Pharaoh's Egypt.`; break;
-				case 'Edo Revivalism': text += `Edo Revivalism: a vision of Edo Japan.`; break;
-				case 'Arabian Revivalism': text += `Arabian Revivalism: a vision of the Sultanate of old.`; break;
-				case 'Chinese Revivalism': text += `Chinese Revivalism: a vision of ancient China.`; break;
-				case 'Multiculturalism': text + = `Multiculturalism: a commitment to allow your arcology's citizens cultural freedom.`; break;
-			}
-			text += `\n&nbsp;Smuggle in FS-optimized : `;
-			const Optionslist = UpgradeOptions;
-			for (let i = 0;i<Optionslist.length;i++) {
-				var OptPOS = Optionslist[i];
-				var title = ``;
-				switch(OptPOS) {
-					var cost=200000;
-					case 'FoodsAndMedia': title='Common area decorations'; break;
-					case 'CommonArea': title='Barracks decorations'; break;
-					case 'Barracks': title='Barracks decorations`; break;
-					case 'SlaveProcessingCages': title='Slave Processing Cages decorations'; break;
-					case 'CommandCenter': title='Command Center decorations'; break;
-					case 'Armory': title='Armory decorations'; break;
-					case 'DrugLab': title='Drug Lab decorations'; break;
-					case 'Garage': title='Garage decorations'; break;
-					case 'Hangar': title='Hangar decorations'; break;
-					case 'DroneBay': title='Drone Bay decorations'; cost=50000; break;
-					case 'PersonalItems': title='Personal Items'; break;
-					case 'VehicleUpgrades': title='Vehicle Upgrade'; cost=300000; break;
-					case 'CommonAreaVendors': title='Firebase Vendors'; cost=300000; break;
-					case 'RoleplayingManadated': title='Mandate FS-Roleplaying'; cost=500000; break;
-					case 'ColonelCompilance': title='colonel compliance'; cost = 1000000; break;
-				}
-				if (![FSPOS].includes(V.SF.Acceptance.FS)) {
-					MEMU_OPTION('Slaves','Slaves',cost), text += ` `;
-				} else {
-					if (![FSPOS].includes(V.SF.FS.OptPOS)) {
-						MEMU_OPTION('title','OptPOS',cost), text += ` `;
-					} else if (![FSPOS].includes(V.SF.FS.ColonelGift)) {
-						text += `\n&nbsp;&nbsp;`, MEMU_OPTION('Buy the Colonel a ','ColonelGift',1000000), text += ` `;
-					}
-				}
-			}
-		}
-	}
-	text += `<br>`;
-	return text;
-};*/
diff --git a/src/SpecialForce/Upgrades.tw b/src/SpecialForce/Upgrades.tw
index 2d7ed05ea011ca9e5aa62cbbf38e50a8634f66c3..2715f3ec8693d4c03ad5f6ba1338a859252f80ca 100644
--- a/src/SpecialForce/Upgrades.tw
+++ b/src/SpecialForce/Upgrades.tw
@@ -9,7 +9,7 @@
 
 		<br>Which facility or equipment do you wish to upgrade this week? <br>
 		<<if $SF.Squad.Firebase < 5||_T1 && $SF.Squad.Firebase < _FU>> <br>
-			<<set _cF = SFUpgradeCost(100000,$SF.Squad.Firebase)>>
+			<<set _cF = App.SF.UpgradeCost(100000,$SF.Squad.Firebase)>>
 			<<if $cash >= _cF>>
 				[[Upgrade Firebase|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.Firebase++, cashX(forceNeg(_cF), "specialForces")]]
 			<<else>>//Cannot afford to upgrade the Firebase.//<</if>>
@@ -17,7 +17,7 @@
 		<<elseif $SF.Squad.Firebase === _FU>> <br>//The Firebase has been fully upgraded.//<br><</if>>
 
 		<<if $SF.Squad.Armoury < 5||_T1 && $SF.Squad.Armoury < _AU>> <br>
-			<<set _cA = SFUpgradeCost(40000,$SF.Squad.Armoury)>>
+			<<set _cA = App.SF.UpgradeCost(40000,$SF.Squad.Armoury)>>
 			<<if $cash >= _cA>>
 				[[Upgrade Armory|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.Armoury++, cashX(forceNeg(_cA), "specialForces")]]
 			<<else>>//Cannot afford to upgrade the Armory.//<</if>>
@@ -25,7 +25,7 @@
 		<<elseif $SF.Squad.Armoury === _AU>> //The Armory has been fully upgraded.//<br><</if>>
 
 		<<if $SF.Squad.Drugs < 5||_T1 && $SF.Squad.Drugs < _DrugsU>> <br>
-			<<set _cDrugs = SFUpgradeCost(40000,$SF.Squad.Drugs)>>
+			<<set _cDrugs = App.SF.UpgradeCost(40000,$SF.Squad.Drugs)>>
 			<<if $cash >= _cDrugs>>
 				[[Upgrade Drug Lab|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.Drugs++, cashX(forceNeg(_cDrugs), "specialForces")]]
 			<<else>>//Cannot afford to upgrade the Drug Lab.//<</if>>
@@ -33,7 +33,7 @@
 		<<elseif $SF.Squad.Drugs === _DrugsU>> //The Drug Lab has been fully upgraded.//<br><</if>>
 
 		<<if $SF.Squad.Firebase >= 2 && ($SF.Squad.Drones < 5 ||_T1 && $SF.Squad.Drones < _DU)>> <br>
-			<<set _cDrones = SFUpgradeCost(45000,$SF.Squad.Drones)>>
+			<<set _cDrones = App.SF.UpgradeCost(45000,$SF.Squad.Drones)>>
 			<<if $cash >= _cDrones>>
 				[[Upgrade Drone Bay|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.Drones++, cashX(forceNeg(_cDrones), "specialForces")]]
 			<<else>>//Cannot afford to upgrade the Drone Bay.//<</if>>
@@ -42,7 +42,7 @@
 
 		<<if $SF.Squad.Firebase >= 1 && $terrain !== "oceanic">><br>''Garage''<br>
 			<div style="margin-left:2em"><<if ($SF.Squad.AV < 5||_T1 && $SF.Squad.AV < _AVU)>>
-				<<set _cAV = SFUpgradeCost(60000,$SF.Squad.AV)>>
+				<<set _cAV = App.SF.UpgradeCost(60000,$SF.Squad.AV)>>
 				<<if $cash >= _cAV>>
 					[[Upgrade Attack Vehicle Fleet|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.AV++, cashX(forceNeg(_cAV), "specialForces")]]
 				<<else>>//Cannot afford to upgrade the Attack Vehicle Fleet.//<</if>>
@@ -51,7 +51,7 @@
 			</div>
 
 			<div style="margin-left:2em"><<if ($SF.Squad.TV < 5||_T1 && $SF.Squad.TV < _TVU)>>
-				<<set _cTV = SFUpgradeCost(60000,$SF.Squad.TV)>>
+				<<set _cTV = App.SF.UpgradeCost(60000,$SF.Squad.TV)>>
 				<<if $cash >= _cTV>>
 					[[Upgrade Transport Vehicle Fleet|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.TV++, cashX(forceNeg(_cTV), "specialForces")]]
 				<<else>>//Cannot afford to upgrade Transport Vehicle Fleet.//<</if>>
@@ -60,7 +60,7 @@
 			</div>
 
 			<div style="margin-left:2em"><<if _T1 && $SF.Squad.PGT < _PGTU>>
-				<<set _cPGT = SFUpgradeCost(735000,$SF.Squad.PGT)>>
+				<<set _cPGT = App.SF.UpgradeCost(735000,$SF.Squad.PGT)>>
 				<<if $cash >= _cPGT>>
 					[[Upgrade Prototype Goliath tank|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.PGT++, cashX(forceNeg(_cPGT), "specialForces")]]
 				<<else>>//Cannot afford to upgrade Prototype Goliath Tank.//<</if>>
@@ -70,7 +70,7 @@
 
 		<<if $SF.Squad.Firebase >= 4>>''Hangar''<br>
 			<div style="margin-left:2em"><<if $SF.Squad.AA < 5||_T1 && $SF.Squad.AA < _AAU>>
-				<<set _cAA = SFUpgradeCost(70000,$SF.Squad.AA)>>
+				<<set _cAA = App.SF.UpgradeCost(70000,$SF.Squad.AA)>>
 				<<if $cash >= _cAA>>
 					[[Upgrade Attack Aircraft Fleet|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.AA++, cashX(forceNeg(_cAA), "specialForces")]]
 				<<else>>//Cannot afford to upgrade Attack Aircraft Fleet.//<</if>>
@@ -79,7 +79,7 @@
 			</div>
 
 			<div style="margin-left:2em"><<if $SF.Squad.TA < 5||_T1 && $SF.Squad.TA < _TAU>>
-				<<set _cTA = SFUpgradeCost(70000,$SF.Squad.TA)>>
+				<<set _cTA = App.SF.UpgradeCost(70000,$SF.Squad.TA)>>
 				<<if $cash >= _cTA>>
 					[[Upgrade Transport Aircraft Fleet|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.TA++, cashX(forceNeg(_cTA), "specialForces")]]
 				<<else>>//Cannot afford to upgrade the Transport Aircraft Fleet.//<</if>>
@@ -88,7 +88,7 @@
 			</div>
 
 			<div style="margin-left:2em"><<if _T1 && $SF.Squad.SpacePlane < _SPU>>
-				<<set _cSP = SFUpgradeCost(250000,$SF.Squad.SpacePlane)>>
+				<<set _cSP = App.SF.UpgradeCost(250000,$SF.Squad.SpacePlane)>>
 				<<if $cash >= _cSP>>
 					[[Upgrade Spaceplane|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.SpacePlane++, cashX(forceNeg(_cSP), "specialForces")]]
 				<<else>>//Cannot afford to upgrade the Spaceplane.//<</if>>
@@ -97,7 +97,7 @@
 			<<elseif $SF.Squad.SpacePlane === _SPU>> //The Spaceplane has been fully upgraded.//<br> <</if>></div>
 
 			<div style="margin-left:2em"><<if _T1 && $SF.Squad.GunS < _GunSU>>
-				<<set _cGunS = SFUpgradeCost(350000,$SF.Squad.GunS)>>
+				<<set _cGunS = App.SF.UpgradeCost(350000,$SF.Squad.GunS)>>
 				<<if $cash >= _cGunS>>
 					[[Upgrade Gunship|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.GunS++, cashX(forceNeg(_cGunS), "specialForces")]]
 				<<else>>//Cannot afford to upgrade Gunship.//<</if>>
@@ -107,7 +107,7 @@
 
 		<<if _T1>>''Launch Bay''
 			<div style="margin-left:2em"><<if $SF.Squad.Satellite.lv < _SatU && $SF.Squad.Satellite.InOrbit < 1>>
-				<<set _cSat = SFUpgradeCost(525000,$SF.Squad.Satellite.lv)>>
+				<<set _cSat = App.SF.UpgradeCost(525000,$SF.Squad.Satellite.lv)>>
 				<<if $cash >= _cSat>>
 					[[Upgrade Satellite|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.Satellite.lv++, cashX(forceNeg(_cSat), "specialForces")]]
 				<<else>>//Cannot afford to upgrade Satellite.//<</if>>
@@ -117,7 +117,7 @@
 
 			<<if $terrain !== "oceanic">>
 			<div style="margin-left:2em"><<if $SF.Squad.GiantRobot < _GRU>>
-				<<set _cGR = SFUpgradeCost(550000,$SF.Squad.GiantRobot)>>
+				<<set _cGR = App.SF.UpgradeCost(550000,$SF.Squad.GiantRobot)>>
 				<<if $cash >= _cGR>>
 					[[Upgrade Giant Robot|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.GiantRobot++, cashX(forceNeg(_cGR), "specialForces")]]
 				<<else>>//Cannot afford to upgrade the Giant Robot.//<</if>>
@@ -126,7 +126,7 @@
 			<<else>>//The Giant Robot has been fully upgraded.//<br><</if>></div><</if>>
 
 			<div style="margin-left:2em"><<if $SF.Squad.MissileSilo < _MSU>>
-				<<set _cMS = SFUpgradeCost(565000,$SF.Squad.MissileSilo)>>
+				<<set _cMS = App.SF.UpgradeCost(565000,$SF.Squad.MissileSilo)>>
 				<<if $cash >= _cMS>>
 					[[Upgrade Cruise Missile|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.MissileSilo++, cashX(forceNeg(_cMS), "specialForces")]]
 				<<else>>//Cannot afford to upgrade Cruise Missile.//<</if>>
@@ -136,7 +136,7 @@
 
 		<<if _T1 && ($terrain == "oceanic" || $terrain == "marine")>>''Naval Yard''<br>
 			<div style="margin-left:2em"><<if $SF.Squad.AircraftCarrier < _ACU>>
-				<<set _cAC = SFUpgradeCost(650000,$SF.Squad.AircraftCarrier)>>
+				<<set _cAC = App.SF.UpgradeCost(650000,$SF.Squad.AircraftCarrier)>>
 				<<if $cash >= _cAC>>
 					[[Upgrade Aircraft Carrier|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.AircraftCarrier++, cashX(forceNeg(_cAC), "specialForces")]]
 				<<else>>//Cannot afford to upgrade Aircraft Carrier.//<</if>>
@@ -145,7 +145,7 @@
 			<<else>>//The Aircraft Carrier has been fully upgraded.//<br><</if>></div>
 
 			<div style="margin-left:2em"><<if $SF.Squad.Sub < _SubU>>
-				<<set _cSub = SFUpgradeCost(700000,$SF.Squad.Sub)>>
+				<<set _cSub = App.SF.UpgradeCost(700000,$SF.Squad.Sub)>>
 				<<if $cash >= _cSub>>
 					[[Upgrade Submarine|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.Sub++, cashX(forceNeg(_cSub), "specialForces")]]
 				<<else>>//Cannot afford to upgrade Submarine//<</if>>
@@ -154,7 +154,7 @@
 			<<else>>//The Submarine has been fully upgraded.//<br><</if>></div>
 
 			<div style="margin-left:2em"><<if $SF.Squad.HAT < _HATU>>
-				<<set _cHAT = SFUpgradeCost(665000,$SF.Squad.HAT)>>
+				<<set _cHAT = App.SF.UpgradeCost(665000,$SF.Squad.HAT)>>
 				<<if $cash >= _cHAT>>
 					[[Upgrade Amphibious Transport|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Squad.HAT++, cashX(forceNeg(_cHAT), "specialForces")]]
 				<<else>>//Cannot afford to upgrade Amphibious Transport.//<</if>>
@@ -165,7 +165,7 @@
 	<</if>>
 
 	/* <div style="margin-left:2em"><<if _T1 && $SF.Facility.Toggle > 0 && $SF.Facility.Active < 1>>
-	<<set _cSFF = SFUpgradeCost(735000,$SF.Facility.Active)>>
+	<<set _cSFF = App.SF.UpgradeCost(735000,$SF.Facility.Active)>>
 		<<if $cash >= _cSFF>>
 			[[Build $SF.Lower's support facility|Firebase][$SF.Upgrade = 1, $SF.Colonel.Talk += 1, $SF.Facility.Active++, cashX(forceNeg(_cSFF), "specialForces")]]
 		<<else>>//Cannot afford to build $SF.Lower's support facility.//<</if>>
diff --git a/src/SpecialForce/WeeklyChoices.tw b/src/SpecialForce/WeeklyChoices.tw
index 4ae342a95dec4e1e76c3e34cae014a8fee495248..6dd821063ac844aa46f2685320f579feb873e478 100644
--- a/src/SpecialForce/WeeklyChoices.tw
+++ b/src/SpecialForce/WeeklyChoices.tw
@@ -50,6 +50,7 @@
 
 <<if $SF.Colonel.Talk === 0 && $SF.Colonel.Fun === 0 && $SF.MercCon.CanAttend === -1>> <span id="result0">
 <br>"If you need me for anything else, let me know."
+	<<= App.SF.fsIntegration()>>
 	<<if $SF.MercCon.History >= 1>> <br>
 		<<link "Merc meetup report.">> <<replace "#result0">>
 			<br><br>While at the recent merc meetup, The Colonel made @@.yellowgreen;<<print cashFormat(Math.ceil($SF.MercCon.Income))>>@@ selling generic schematics to her friends, <<print num($SF.MercCon.Menials)>> menial slaves were won in a poker game, and <<print num($SF.MercCon.TotalMercs)>> mercenaries were persuaded to join $SF.Lower.
diff --git a/src/art/vector/VectorArtJS.js b/src/art/vector/VectorArtJS.js
index 01ce74f463ea21d92a319736087afb1d80170902..81a378bc07f40a2eb39dc0a0bc2be09872df4072 100644
--- a/src/art/vector/VectorArtJS.js
+++ b/src/art/vector/VectorArtJS.js
@@ -284,7 +284,7 @@ window.VectorArt = (function() {
 				case "a slutty qipao":
 				case "a long qipao":
 				case "a toga":
-				case "a penitent nuns habit":	
+				case "a penitent nuns habit":
 					if ((canAchieveErection(slave)) && (slave.chastityPenis !== 1)) {
 						penisArtString = jsInclude(`Art_Vector_Bulge_Outfit_Hard_${penisSize}`);
 						break; /* IN CASE OF NO ERECTION, SKIP TO A NORMAL BULGE */
@@ -318,9 +318,9 @@ window.VectorArt = (function() {
 				case "a sweater and panties":
 				case "a t-shirt and jeans":
 				case "a t-shirt and panties":
-				case "a tank-top and panties":					
+				case "a tank-top and panties":
 				case "conservative clothing":
-				case "stretch pants and a crop-top":				
+				case "stretch pants and a crop-top":
 					penisArtString = jsInclude(`Art_Vector_Bulge_Outfit_${penisSize}`);
 					break;
 				/* SMALL BULGE ONLY (SHORT) OUTFITS */
@@ -333,14 +333,14 @@ window.VectorArt = (function() {
 				case "panties":
 				case "an oversized t-shirt and boyshorts":
 				case "a scalemail bikini":
-				case "a skimpy loincloth":	
+				case "a skimpy loincloth":
 				case "striped panties":
 				case "striped underwear":
-				case "a t-shirt and thong":				
+				case "a t-shirt and thong":
 				case "a thong":
 				case "a tube top and thong":
-				case "attractive lingerie for a pregnant woman":	
-				case "harem gauze":				
+				case "attractive lingerie for a pregnant woman":
+				case "harem gauze":
 					if (slave.belly <= 4000) {
 						if (slave.dick > 3)
 							penisArtString = jsInclude("Art_Vector_Bulge_Outfit_3");
@@ -739,7 +739,7 @@ window.VectorArt = (function() {
 			case "a t-shirt":
 			case "a tank-top":
 			case "a tube top":
-			case "an oversized t-shirt":			
+			case "an oversized t-shirt":
 			case "body oil":
 			case "chains":
 			case "choosing her own clothes":
diff --git a/src/art/vector_revamp/vectorRevampedArtControl.js b/src/art/vector_revamp/vectorRevampedArtControl.js
index a08cabbd3e8989fd91bd0457a1b3e5d6afb445f1..0b668da0af0a4cc7e6f75b73fd7f804fe725b996 100644
--- a/src/art/vector_revamp/vectorRevampedArtControl.js
+++ b/src/art/vector_revamp/vectorRevampedArtControl.js
@@ -711,7 +711,7 @@ class RevampedArtControl {
 			case "a leotard":
 				/*return this.clothingControl.leotard;*/
 				break;
-			
+
 		}
 		return clothing;
 	}
diff --git a/src/endWeek/saServeThePublic.js b/src/endWeek/saServeThePublic.js
index 6a627cac402a63320063d5c1488b1c558244048a..be3888c5a80289e638ee60afcccd3b3f190dd65b 100644
--- a/src/endWeek/saServeThePublic.js
+++ b/src/endWeek/saServeThePublic.js
@@ -64,7 +64,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function gatherStatistics(slave) {
 		/* Statistics gathering */
@@ -75,7 +75,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function jobPreface(slave) {
 		if (slave.devotion > 95 || slave.energy > 95) {
@@ -95,7 +95,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function bonusMultiplierText(slave) {
 		if (V.club > 0) {
@@ -212,7 +212,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function usageCountDescriptions(slave) {
 		r += ` ${His} appearance attracted ${slave.sexAmount} members of the public (${Math.trunc(slave.sexAmount / 7)} a day)`;
@@ -255,7 +255,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function comingOfAge(slave) {
 		if (slave.physicalAge === V.minimumSlaveAge && slave.physicalAge === V.fertilityAge && canGetPregnant(slave) && (arcology.FSRepopulationFocus !== "unset" || arcology.FSGenderFundamentalist !== "unset") && arcology.FSRestart === "unset") {
@@ -281,7 +281,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function mentalEffects(slave) {
 		if (slave.behavioralQuirk === "advocate") {
@@ -302,7 +302,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function physicalEffects(slave) {
 		let injury = 0;
@@ -448,7 +448,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function slaveSkills(slave) {
 		let skillIncrease;
@@ -559,7 +559,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function publicReactions(slave) {
 		let sstp;
@@ -1203,7 +1203,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function addFlaw(slave) {
 		if (slave.devotion < 10) {
@@ -1224,7 +1224,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function addRep(slave) {
 		if (slave.assignment !== "recruit girls") {
@@ -1241,7 +1241,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function applyFSDecoration(slave) {
 		/* FACILITY DECORATION IMPACTS */
@@ -1324,7 +1324,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function sexCounts(slave) {
 		/* SEX ACT COUNTS AND SEXUAL SATISFACTION */
@@ -1406,7 +1406,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function sexualSatiation(slave) {
 		if (slave.need) {
@@ -1489,7 +1489,7 @@ window.saServeThePublic = (function saServeThePublic() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function assignmentVignette(slave) {
 		let vignette;
diff --git a/src/endWeek/saWhore.js b/src/endWeek/saWhore.js
index d9729133642d8afe877d4aa5dba5f2cf6f9ddd41..b4352599a9b7011cc5697616e6c0596b2873370c 100644
--- a/src/endWeek/saWhore.js
+++ b/src/endWeek/saWhore.js
@@ -234,7 +234,7 @@ window.saWhore = (function saWhore() {
 		}
 		T.incomeStats.customers = beauty;
 	}
-	
+
 	/**
 	 * @param {App.Entity.SlaveState} slave
 	 */
@@ -727,7 +727,7 @@ window.saWhore = (function saWhore() {
 		if ((slave.releaseRules === "restrictive" || slave.releaseRules === "chastity") && slave.standardReward !== "orgasm") {
 			r += ` ${He}'s a better whore because prostitution is ${his} main sexual outlet.`;
 		}
-		
+
 		if (V.familyTesting === 1) {
 			if (totalRelatives(slave) > 0) {
 				let children = [];
@@ -1396,7 +1396,7 @@ window.saWhore = (function saWhore() {
 			cashX(cash, "whoring in an unregistered building", slave);
 		}
 	}
-	
+
 	/**
 	 * @param {App.Entity.SlaveState} slave
 	 */
diff --git a/src/endWeek/saWorkAGloryHole.js b/src/endWeek/saWorkAGloryHole.js
index f0e681998571cf3f877cacfa3e28333c38bb94e9..ca4aefb3ab2e745e239084b79d74e85ea6d517d6 100644
--- a/src/endWeek/saWorkAGloryHole.js
+++ b/src/endWeek/saWorkAGloryHole.js
@@ -95,7 +95,7 @@ window.saWorkAGloryHole = (function saWorkAGloryHole() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function physicalEffects(slave) {
 		// check usage counts for these — more fucks should be more damaging
@@ -171,7 +171,7 @@ window.saWorkAGloryHole = (function saWorkAGloryHole() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function mentalEffects(slave) {
 		if (slave.fetish === "mindbroken") {
@@ -231,7 +231,7 @@ window.saWorkAGloryHole = (function saWorkAGloryHole() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function jobBody(slave) {
 		r += ` ${His} feelings, skills, and appearance do not matter. ${He} is condemned to a world that consists of a tiny cell, featureless except for the never-ending dicks ${he} is required to service. You `;
@@ -245,7 +245,7 @@ window.saWorkAGloryHole = (function saWorkAGloryHole() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function applyFSDecoration(slave) {
 		/* FACILITY DECORATION IMPACTS */
@@ -330,7 +330,7 @@ window.saWorkAGloryHole = (function saWorkAGloryHole() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function sexCounts(slave) {
 		/* SEX ACT COUNTS AND SEXUAL SATISFACTION */
@@ -438,7 +438,7 @@ window.saWorkAGloryHole = (function saWorkAGloryHole() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * 
+	 *
 	 */
 	function profitReport(slave) {
 		if (V.publicFuckdolls === 0) {
diff --git a/src/facilities/brothel/brothelAssignmentScene.tw b/src/facilities/brothel/brothelAssignmentScene.tw
index 17e42cb82ba0a120796c7151cea154c2c7865999..6129c646e9fd074ed298c561b3653677581cfeb9 100644
--- a/src/facilities/brothel/brothelAssignmentScene.tw
+++ b/src/facilities/brothel/brothelAssignmentScene.tw
@@ -114,14 +114,14 @@ You tell $him $he's to report to <<if $Madam != 0>>$Madam.slaveName immediately,
 			<<case "boobs">>
 				$He sticks out $his chest a little and gestures
 				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
-					that $he's heard a women comes by each day just to have her nipples sucked. $He licks $his lips, clearly savoring the thought.
+					that $he's heard a woman comes by each day just to have her nipples sucked. $He licks $his lips, clearly savoring the thought.
 				<<else>>
 					that $he knows tittyfucking is popular there and can't wait to give $his pair up for sale.
 				<</if>>
 			<<case "pregnancy">>
 				$He gestures
 				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
-					that $he's heard that a pregnant women has been coming every night to pay for a whore to cuddle her. $He asks if $he could be that $girl.
+					that $he's heard that a pregnant woman has been coming every night to pay for a whore to cuddle her. $He asks if $he could be that $girl.
 				<<elseif $activeSlave.vagina == -1>>
 					how much $he wishes $he could get pregnant from all the cum loads $he's going to get shot up $his rear.
 				<<elseif isFertile($activeSlave)>>
@@ -133,7 +133,7 @@ You tell $him $he's to report to <<if $Madam != 0>>$Madam.slaveName immediately,
 				<<elseif $activeSlave.ovaries == 1 && $activeSlave.pubertyXX == 0>>
 					how excited $he is for the day $he starts $his menstrual cycle. Will $he even see $his first period, or will every egg $he makes get fertilized?
 				<<else>>
-					that $he's heard a pregnant women has been coming every night to pay for a whore to cuddle her. $He hopes that one day $he'll be chosen.
+					that $he's heard a pregnant woman has been coming every night to pay for a whore to cuddle her. $He hopes that one day $he'll be chosen.
 				<</if>>
 			<<case "dom">>
 				$He gestures that $he knows citizens sometimes bring their toys there just to let them get pushed around by a whore. $He'd like that to be true. A lot.
@@ -178,7 +178,7 @@ You tell $him $he's to report to <<if $Madam != 0>>$Madam.slaveName immediately,
 			<<case "boobs">>
 				$He sticks out $his chest a little and gestures
 				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
-					that $he's heard a women comes by each day just to have her nipples sucked. $He licks $his lips, clearly savoring the thought.
+					that $he's heard a woman comes by each day just to have her nipples sucked. $He licks $his lips, clearly savoring the thought.
 				<<else>>
 					that $he knows tittyfucking is popular there and can't wait to give $his pair up for sale.
 				<</if>>
@@ -261,7 +261,7 @@ You tell $him $he's to report to <<if $Madam != 0>>$Madam.slaveName immediately,
 			<<case "pregnancy">>
 				$He gestures
 				<<if $activeSlave.attrXX > $activeSlave.attrXY>>
-					that $he's heard that a pregnant women has been coming every night to pay for a whore to cuddle her. $He asks if $he could be that $girl.
+					that $he's heard that a pregnant woman has been coming every night to pay for a whore to cuddle her. $He asks if $he could be that $girl.
 				<<elseif $activeSlave.vagina == -1>>
 					how much $he wishes $he could get pregnant from all the cum loads $he's going to get shot up $his rear.
 				<<elseif isFertile($activeSlave)>>
@@ -273,7 +273,7 @@ You tell $him $he's to report to <<if $Madam != 0>>$Madam.slaveName immediately,
 				<<elseif $activeSlave.ovaries == 1 && $activeSlave.pubertyXX == 0>>
 					how excited $he is for the day $he starts $his menstrual cycle. Will $he even see $his first period, or will every egg $he makes get fertilized?
 				<<else>>
-					that $he's heard a pregnant women has been coming every night to pay for a whore to cuddle her. $He hopes that one day $he'll be chosen.
+					that $he's heard a pregnant woman has been coming every night to pay for a whore to cuddle her. $He hopes that one day $he'll be chosen.
 				<</if>>
 			<<case "dom">>
 				$He gestures that $he knows citizens sometimes bring their toys there just to let them get pushed around by a whore. $He'd like that to be true. A lot.
diff --git a/src/facilities/nursery/childInteract.tw b/src/facilities/nursery/childInteract.tw
index 5cc4cffba7eb01ab3ab888a275f1b5bb62aff231..1f61401755fb1d0e9b442473efca4df611a0d00b 100644
--- a/src/facilities/nursery/childInteract.tw
+++ b/src/facilities/nursery/childInteract.tw
@@ -89,7 +89,7 @@
 				| <<link "Ride $his dick">><<replace "#miniscene">><<set $childSex = 1>><<include "FDick">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 			<</if>>
 		<<else>>
-		| //Remove $his dick chastity belt if you wish to play with $his cock//
+			| //Remove $his dick chastity belt if you wish to play with $his cock//
 		<</if>>
 	<</if>>
 	</span>
diff --git a/src/gui/Encyclopedia/encyclopedia.tw b/src/gui/Encyclopedia/encyclopedia.tw
index 7f0a12977557a9b1005b7c68c4abc1c9b465494c..fe378c141282b4ec29f3e43dd9162153a6753218 100644
--- a/src/gui/Encyclopedia/encyclopedia.tw
+++ b/src/gui/Encyclopedia/encyclopedia.tw
@@ -2713,7 +2713,7 @@ LORE: INTERVIEWS
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;Provides demand for skilled slaves from the corporation.
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;Provides demand for smart slaves from the corporation.
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;Is mutually exclusive with [[Repopulation Focus|Encyclopedia][$encyclopedia = "Repopulationism"]].
-	<br>It is made up of four to five social classes: Slaves, low class citizens, chosen slaves, elite citizens, and the Societal Elite; a group of individuals with vast connections and wealth attracted by the promises of a society built around them. Low class citizens are encouraged to face testing and join the ranks of the elite, though the cost of failing the test is sterilization; a detail that is not revealed until after the test is complete.
+	<br>It is made up of four to five social classes: Slaves, low class citizens, chosen slaves, elite citizens, and the Societal Elite: a group of individuals with vast connections and wealth attracted by the promises of a society built around them. Low class citizens are encouraged to face testing and join the ranks of the elite, though the cost of failing the test is sterilization; a detail that is not revealed until after the test is complete.
 
 <<case "Hedonistic Decadence">>
 	<br>''Hedonistic Decadence'' is a future society model. It:
diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw
index 36edcad3daae9d432b650de84c640b4d914e18ab..9ca15ec5ac464d4ce72a8be20e53760fb47e79b1 100644
--- a/src/init/storyInit.tw
+++ b/src/init/storyInit.tw
@@ -1501,6 +1501,6 @@ You should have received a copy of the GNU General Public License along with thi
 <<set $abbreviateHormoneBalance = 2>>
 
 <<if def $SF.Toggle>> <<set $SF={Toggle:$SF.Toggle}>> <<else>> <<set $SF={Toggle:0}>> <</if>>
-<<set $SF.Active=-1>> <<= Facility()>>
+<<set $SF.Active=-1>>
 
 <<goto "Alpha disclaimer">>
diff --git a/src/js/DefaultRules.js b/src/js/DefaultRules.js
index 95575dbabc3c673ff9796331f618e12979c27b4a..413ec0d01b93fe678dac1e8639a71abeab552a92 100644
--- a/src/js/DefaultRules.js
+++ b/src/js/DefaultRules.js
@@ -82,7 +82,7 @@ window.DefaultRules = (function() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * @returns {map} 
+	 * @returns {map}
 	 */
 	function MergeRules(slave) {
 		// merge all rules applying on a slave into one big rule
diff --git a/src/js/assayJS.js b/src/js/assayJS.js
index 88a8398ea4f3275d87cc72ffbf840a3c654dc6bc..fc76d34bc9d92a76052d837c016287425afef512 100644
--- a/src/js/assayJS.js
+++ b/src/js/assayJS.js
@@ -641,17 +641,14 @@ window.PCTitle = function PCTitle() {
 		}
 	}
 
-	if (V.SF.Active < -1) {
-		switch (V.SF.BadOutcome) {
-			case "lockdown":
-				titles.push("The War Host");
-				break;
-			case "Revolt":
-				titles.push("The Betrayed");
-				break;
-			case "Exodus":
-				titles.push("The Abandoned");
-				break;
+	if (V.SF.Toggle && V.SF.FS.Tension > 100) {
+		switch(V.SF.FS.BadOutcome) {
+			case 'MIGRATION': titles.push("The Abandoned"); break;
+			case 'Revolt': titles.push("The Betrayed"); break;
+			case 'ANNIHILATION': titles.push("The Runner"); break;
+			case 'OCCUPATION': titles.push("The Occupied"); break;
+			case 'ASSIMILATION': titles.push("The Deceived"); break;
+			case 'ISOLATION': titles.push("The Ignored"); break;
 		}
 	}
 
diff --git a/src/js/familyTreeJS.js b/src/js/familyTreeJS.js
index 87f9bab59ea5c47bd0056d63b80d008df6d8c50e..aac1d0673715636891918a6fd318874016e72cd1 100644
--- a/src/js/familyTreeJS.js
+++ b/src/js/familyTreeJS.js
@@ -219,7 +219,7 @@ window.buildFamilyTree = function(slaves = State.variables.slaves, filterID) {
 		'-3': 'Former master',
 		'-4': 'An arcology owner',
 		'-5': 'Client',
-		'-6': 'Social elite',
+		'-6': 'Social Elite',
 		'-7': 'Gene lab'
 	};
 	let outdads = {};
diff --git a/src/js/generateGenetics.js b/src/js/generateGenetics.js
index a326ea7aaf215c0fa2f66d385599dea07d7f67b1..0326fd1d404cb246518578b7c25ab15be4ae3a1f 100644
--- a/src/js/generateGenetics.js
+++ b/src/js/generateGenetics.js
@@ -970,7 +970,7 @@ window.generateGenetics = (function() {
 				}
 			}
 		}
-		
+
 		// Gigantomastia
 		if (father !== 0) {
 			if (mother.geneticQuirks.gigantomastia >= 2 && father.geneticQuirks.gigantomastia >= 2) {
@@ -1001,7 +1001,7 @@ window.generateGenetics = (function() {
 				}
 			}
 		}
-		
+
 		// Macromastia
 		if (father !== 0) {
 			if (mother.geneticQuirks.macromastia >= 2 && father.geneticQuirks.macromastia >= 2) {
diff --git a/src/js/rulesAssistant.js b/src/js/rulesAssistant.js
index 9e9d855940e5b4e661588062d043cffb422a58ef..5cae9ede34fd5f1bb82770e3e78ac59d397f74bf 100644
--- a/src/js/rulesAssistant.js
+++ b/src/js/rulesAssistant.js
@@ -392,7 +392,7 @@ window.emptyDefaultRule = function emptyDefaultRule() {
  * Saves the slave, silently fires the RA, saves the slave's after-RA state, and then reverts the slave.
  * Call and then check potential change against $slaveAfterRA to see if the RA would revert it.
  * @param {App.Entity.SlaveState} slave
- * 
+ *
  */
 window.RulesDeconfliction = function RulesDeconfliction(slave) {
 	const before = clone(slave);
diff --git a/src/js/sexActsJS.js b/src/js/sexActsJS.js
index e509a760fdb4c79d684891f1dd614546cb75e9f3..ec5868851a98ef90bf7fcb191d0b65619f28b852 100644
--- a/src/js/sexActsJS.js
+++ b/src/js/sexActsJS.js
@@ -325,7 +325,7 @@ window.PartnerVCheck = function PartnerVCheck(analTimes = 1, bothTimes = 1) {
  count is how many times to increment either the Vaginal, Anal, or Oral counts, depending on availability of slave.
  If count is left undefined it will assume it to be 1.
  Intended to be a simple "I want to fuck x and not have to code a bunch of logic for it".
- * @param {App.Entity.SlaveState} slave 
+ * @param {App.Entity.SlaveState} slave
  * @param {number} fuckCount
  * @returns {string}
  */
diff --git a/src/js/storyJS.js b/src/js/storyJS.js
index 80f4d3cec927ed5f59f9cd78c5ceac5c3992aae5..97f535d36db4fd072e7b47cd613fa78004f981d8 100644
--- a/src/js/storyJS.js
+++ b/src/js/storyJS.js
@@ -498,7 +498,7 @@ window.jsConsoleInfo = function(obj) {
 
 /**
  * @param {App.Entity.SlaveState} slave
- * 
+ *
  */
 window.SoftenBehavioralFlaw = function SoftenBehavioralFlaw(slave) {
 	switch (slave.behavioralFlaw) {
@@ -535,7 +535,7 @@ window.SoftenBehavioralFlaw = function SoftenBehavioralFlaw(slave) {
 
 /**
  * @param {App.Entity.SlaveState} slave
- * 
+ *
  */
 window.SoftenSexualFlaw = function SoftenSexualFlaw(slave) {
 	switch (slave.sexualFlaw) {
diff --git a/src/npc/fBeg.tw b/src/npc/fBeg.tw
index 664d4b8371a1d715a94283f3556a0b4a324b70f4..123f31b5dd7a8b3ecb9073fc2a2fa250e5f09550 100644
--- a/src/npc/fBeg.tw
+++ b/src/npc/fBeg.tw
@@ -4,70 +4,72 @@
 <<run clearSummaryCache($activeSlave)>>
 <<setLocalPronouns $activeSlave>>
 
-You call $him over to you for inspection. <<BoobsDescription>> You look at $him lustfully and instruct $him to strip. 
-<<if ($activeSlave.sexualFlaw == "shamefast")>> Tears well up in $his eyes at the idea of showing $his naked body. 
-<<elseif ($activeSlave.sexualQuirk == "tease")>> $He blushes with arousal. $He has kept $his innate embarrassment at the thought of being naked, but you have infused this with overwhelming arousal. $His cheeks are red as $he removes $his clothes, giving quite a strip tease as $he does. 
+You call $him over to you for inspection. <<BoobsDescription>> You look at $him lustfully and instruct $him to strip.
+<<if ($activeSlave.sexualFlaw == "shamefast")>> Tears well up in $his eyes at the idea of showing $his naked body.
+<<elseif ($activeSlave.sexualQuirk == "tease")>> $He blushes with arousal. $He has kept $his innate embarrassment at the thought of being naked, but you have infused this with overwhelming arousal. $His cheeks are red as $he removes $his clothes, giving quite a strip tease as $he does.
 <<elseif ($activeSlave.sexualFlaw == "repressed")>>subconsciously uses $his hands to try to cover $his body. $He is still repressing $his own sexuality. That type of behavior may have been allowed in the old world, but it has no place in a Free City.
-<<elseif ($activeSlave.sexualFlaw == "idealistic")>>shakes $his head pleadingly, "But I don't consent" $he responds. You laugh in such a way that tells $him that $his consent is irrelevant. $He is still idealistic, believing that sex should be a consensual expression of love and intimacy. Such ideas were common in the Old World, but they have no place in a Free City. You decide to grab $him and forcefully rip $his clothes from $his body, since obedience could simply be seen as consent. $He screams and plead as you pin her arms, ripping and tearing at the cloth that keeps her beauty from sight. 
-<<elseif ($activeSlave.sexualFlaw == "neglectful")>> replied "Yes 
+<<elseif ($activeSlave.sexualFlaw == "idealistic")>>shakes $his head pleadingly, "But I don't consent" $he responds. You laugh in such a way that tells $him that $his consent is irrelevant. $He is still idealistic, believing that sex should be a consensual expression of love and intimacy. Such ideas were common in the Old World, but they have no place in a Free City. You decide to grab $him and forcefully rip $his clothes from $his body, since obedience could simply be seen as consent. $He screams and plead as you pin her arms, ripping and tearing at the cloth that keeps her beauty from sight.
+<<elseif ($activeSlave.sexualFlaw == "neglectful")>> replied "Yes
 	<<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>>
 	<<else>><<Master>>
-	<</if>>" 
-	$he replies contritely. $He has no sense of self beyond your usefulness of $him, and selflessly sacrifices $his own comfort for your pleasure. 
+	<</if>>"
+	$he replies contritely. $He has no sense of self beyond your usefulness of $him, and selflessly sacrifices $his own comfort for your pleasure.
 <<elseif ($activeSlave.sexualFlaw == "attention whore")>>eagerly begins to shirk $his wear, drawing as much attention to the process as possible.
-<<else>> 
+<<else>>
 	<<if ($activeSlave.devotion < -20)>>
 	$He resists, forcing you to undress $him yourself.
 	<<elseif ($activeSlave.devotion > -20)>> $He obeys, and moves to the center of your office to undress $himself for you.
 	<</if>>
 <</if>>
 <<if ($activeSlave.devotion > -20)>>
-$He begins to undress with
+	$He begins to undress with
 	<<if ($activeSlave.entertainmentSkill >= 100)>> masterful skill, teasing and taunting all the way down. $He rolls $his hips and most sexual parts as $he removes $his clothing.
-	<<elseif ($activeSlave.entertainmentSkill >= 80)>> arousing skill. Even though the goal is just to get 	$him naked, your slave knows that $his job is to entertain you with $his every move. 
-	<<elseif ($activeSlave.entertainmentSkill >= 60)>> notable skill. $He takes the opportunity to give you a light strip tease as $he undresses. 
+	<<elseif ($activeSlave.entertainmentSkill >= 80)>> arousing skill. Even though the goal is just to get 	$him naked, your slave knows that $his job is to entertain you with $his every move.
+	<<elseif ($activeSlave.entertainmentSkill >= 60)>> notable skill. $He takes the opportunity to give you a light strip tease as $he undresses.
 	<<elseif ($activeSlave.entertainmentSkill >= 40)>> a decent effort. $He isn't your most entertaining slave, but $he still makes an effort to arouse you with $his undressing.
-	<<elseif ($activeSlave.entertainmentSkill >= 20)>> some effort to be sexy. $His moves are less than skillful and the undressing is more pragmatic than arousing. 
-	<<else>> no effort to be sexy. $He has no entertainment skill, and the only goal of $his actions is to go from clothed to naked. 
+	<<elseif ($activeSlave.entertainmentSkill >= 20)>> some effort to be sexy. $His moves are less than skillful and the undressing is more pragmatic than arousing.
+	<<else>> no effort to be sexy. $He has no entertainment skill, and the only goal of $his actions is to go from clothed to naked.
 	<</if>>
 <</if>>
 
 <<if ($activeSlave.fetishStrength > 60)>>
 		<<switch $activeSlave.fetish>>
-		<<case "submissive">> As $he begins to strip you grab $him without warning and begin to tear off $his clothes. Your slave expected you to allow $him to obey your command, and so $he is initially taken aback by the sudden force but $his submissive nature keeps $him from resisting. $He is such a submissive slut that you feel obligation to push $his status even further. You bind $his arms tightly behind $his back in a leather monoglove, lacing it tighter until $his elbows are touching. $He gives a soft whimper, but you both know that this is for your benefit and not a protest.  
-			<<if ($activeSlave.nipplePiercing > 1)>> You then retrieve heavy bells and attach them to her nipple rings. 
-			<<else>> You reach into your pocket and retrieve two weighted and belled nipple clamps, attaching them tightly to your slave's delicate nipples. 
+		<<case "submissive">>
+			As $he begins to strip you grab $him without warning and begin to tear off $his clothes. Your slave expected you to allow $him to obey your command, and so $he is initially taken aback by the sudden force but $his submissive nature keeps $him from resisting. $He is such a submissive slut that you feel obligation to push $his status even further. You bind $his arms tightly behind $his back in a leather monoglove, lacing it tighter until $his elbows are touching. $He gives a soft whimper, but you both know that this is for your benefit and not a protest.
+			<<if ($activeSlave.nipplePiercing > 1)>> You then retrieve heavy bells and attach them to her nipple rings.
+			<<else>> You reach into your pocket and retrieve two weighted and belled nipple clamps, attaching them tightly to your slave's delicate nipples.
 			<</if>> You tell her to bounce so that they jingle, reminding her of her status.
-		<<case "masochist">>  Once $he is fully exposed you give $him a firm slap across the tits. $He's a massochist and relishes the pain with sexual arousal. You ask your painslut if $he deserves to be punished. "Oh yes, 
+		<<case "masochist">>
+			Once $he is fully exposed you give $him a firm slap across the tits. $He's a masochist and relishes the pain with sexual arousal. You ask your painslut if $he deserves to be punished. "Oh yes,
 			<<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>>
 			<<else>><<Master>>
-			<</if>>. 
-			Please punish your little slut. Sensing that your slave is getting too much enjoyment from $his beating you cease.  
+			<</if>>.
+			Please punish your little slut. Sensing that your slave is getting too much enjoyment from $his beating you cease.
 		<</switch>>
 <</if>>
 
-You stare at the naked form of your slave standing before you.  
+You stare at the naked form of your slave standing before you.
 
-<<if ($activeSlave.boobsTat == "rude words")>> The words on $his chest stand out at you. You ask $him what $his tits say. "Fuckslave." $he replies. You ask if that's what $he is. 
-	<<if ($activeSlave.behavioralFlaw == "liberated")>> "I'm nobody's property. I'm a free woman!" $He shoots back. "We shall see" you reply. 
-	<<elseif ($activeSlave.devotion < -20)>> $He does $his best to shake $his head. 
-	<<else>> "Yes <<Master>>, that's what I am. 
-	<</if>>  
-<<elseif ($activeSlave.boobsTat == "possessive")>> The words on $his chest stand out at you. You ask $him what $his tits say. "It's Your personal symbol" $he replies. You ask if that's what $he is. 
-	<<if ($activeSlave.behavioralFlaw == "liberated")>> "I'm nobody's property. I'm a free woman!" $He shoots back. "We shall see" you reply. 
-	<<elseif ($activeSlave.devotion < -20)>> $He does $his best to shake $his head. 
-	<<else>> "Yes <<Master>>, that's what I am. 
+<<if ($activeSlave.boobsTat == "rude words")>> The words on $his chest stand out at you. You ask $him what $his tits say. "Fuckslave." $he replies. You ask if that's what $he is.
+	<<if ($activeSlave.behavioralFlaw == "liberated")>> "I'm nobody's property. I'm a free woman!" $He shoots back. "We shall see" you reply.
+	<<elseif ($activeSlave.devotion < -20)>> $He does $his best to shake $his head.
+	<<else>> "Yes <<Master>>, that's what I am.
+	<</if>>
+<<elseif ($activeSlave.boobsTat == "possessive")>> The words on $his chest stand out at you. You ask $him what $his tits say. "It's Your personal symbol" $he replies. You ask if that's what $he is.
+	<<if ($activeSlave.behavioralFlaw == "liberated")>> "I'm nobody's property. I'm a free woman!" $He shoots back. "We shall see" you reply.
+	<<elseif ($activeSlave.devotion < -20)>> $He does $his best to shake $his head.
+	<<else>> "Yes <<Master>>, that's what I am.
 	<</if>>
-<<elseif ($activeSlave.boobsTat == "degradation")>> The words on $his chest stand out at you. You ask $him what $his tits say. "<<Master>>'s Bitch" $he replies. You ask if that's what $he is. 
-	<<if ($activeSlave.behavioralFlaw == "liberated")>> "I'm nobody's property. I'm a free woman!" $He shoots back. "We shall see" you reply. 
-	<<elseif ($activeSlave.devotion < -20)>> $He does $his best to shake $his head. 
-	<<else>> "Yes <<Master>>, that's what I am. 
-	<</if>> 
-<<else>> $His body belongs to you, and your slave needs to remember that. 
+<<elseif ($activeSlave.boobsTat == "degradation")>> The words on $his chest stand out at you. You ask $him what $his tits say. "<<Master>>'s Bitch" $he replies. You ask if that's what $he is.
+	<<if ($activeSlave.behavioralFlaw == "liberated")>> "I'm nobody's property. I'm a free woman!" $He shoots back. "We shall see" you reply.
+	<<elseif ($activeSlave.devotion < -20)>> $He does $his best to shake $his head.
+	<<else>> "Yes <<Master>>, that's what I am.
+	<</if>>
+<<else>> $His body belongs to you, and your slave needs to remember that.
 <</if>>
 
-You then tell your slave to kneel at your feet. 
-<<if ($activeSlave.behavioralFlaw == "bitchy")>> $He rolls $his eyes sasses you a bit, "Whatever," she scoffs and 
+You then tell your slave to kneel at your feet.
+<<if ($activeSlave.behavioralFlaw == "bitchy")>> $He rolls $his eyes sasses you a bit, "Whatever," she scoffs and
 <<elseif ($activeSlave.behaviorFlaw == "arrogant")>> $He stands up even straighter than before, crossing $his arms and widening $his stance. $His arrogance makes obeying commands like this difficult, but that is not your concern. You give $him a look that tells $him that pain will await if $he does not obey. $He
 <<elseif ($activeSlave.behavioralQuirk == "confident")>> $He confidently moves to obey. $He
 <<elseif ($activeSlave.behavioralFlaw == "liberated")>> $He stands up even straighter than before, crossing $his arms and widening $his stance. "I am not some animal," $he protests "I am a free woman." You laugh at $his continued delusions. Liberated women have no place in a Free City. You remind her that pain awaits $him should $he defy you further and $he
@@ -80,21 +82,21 @@ $He
 
 <<if ($activeSlave.devotion < -20)>>
 	<<if ($activeSlave.fear < -50)>>
-	drops terrified to the ground. 
+	drops terrified to the ground.
 	<<else>>
 		<<if !canTalk($activeSlave)>>gestures
 		<<elseif (_lisping == 1)>>lisps
 		<<else>>declares
-		<</if>> 
-	angrily that slavery is wrong and $he will not bow. You look at your Assistant who silently summons two other, more obedient slaves from their duties. 
+		<</if>>
+	angrily that slavery is wrong and $he will not bow. You look at your Assistant who silently summons two other, more obedient slaves from their duties.
 		<<if ($activeSlave.nipplePiercing > 1)>> You reach out and grab $him by her nipple chain, pulling her in harshly. She yelps in pain, but knows better than to pull away.
 		<<elseif ($activeSlave.nosePiercing > 1)>> You reach out and grab $him by her nose ring, pulling her in harshly. She yelps in pain, but knows better than to pull away.
-		<<else>> You reach out and grab $him firmly by the collar. 
+		<<else>> You reach out and grab $him firmly by the collar.
 		<</if>>
-	"One more chance, slut" by now, the other slaves have arrived and are standing loyally by your side. Your loyal slaves force $him to $his knees.  
+	"One more chance, slut" by now, the other slaves have arrived and are standing loyally by your side. Your loyal slaves force $him to $his knees.
 	<</if>>
 	"Head at crotch level," you clarify. "Remember your purpose"
-<<elseif ($activeSlave.devotion < 20)>> is not enthusiastic, but is obedient enough to go down without much threat of discipline. 
+<<elseif ($activeSlave.devotion < 20)>> is not enthusiastic, but is obedient enough to go down without much threat of discipline.
 <<elseif ($activeSlave.devotion > 20)>>
 	<<if ($activeSlave.fetishKnown == 1)>>
 		<<switch $activeSlave.fetish>>
@@ -103,42 +105,42 @@ $He
 		<<case "dom">>
 			would rather be standing by your side making your other sluts bow, but $he still knows that you are $his <<Master>>.
 		<<case "sadist">>
-			would rather be pushing one of your other whores painfully to her knees, but $he still obeys. 
+			would rather be pushing one of your other whores painfully to her knees, but $he still obeys.
 		<<case "masochist">>
-			waits just long enough to recieve a disciplinary slap, making $him blush with arousal as $he kneels before you. 
+			waits just long enough to receive a disciplinary slap, making $him blush with arousal as $he kneels before you.
 		<<case "cumslut">>
 			is excited to be closer to your delicious crotch, and hurries to match $his eyes to your package.
 		<<case "humiliation">>
-			makes a big show of it as $he lowers $himself dramatically before you. 
+			makes a big show of it as $he lowers $himself dramatically before you.
 		<<case "buttslut">>
-			leans heavily forward so that $his ass sticks out ridiculously far as $he bends $his knees and goes to the floor. 
+			leans heavily forward so that $his ass sticks out ridiculously far as $he bends $his knees and goes to the floor.
 		<<case "pregnancy">>
 			obeys your command and goes to $his knees.
 		<<case "boobs">>
-			pulls $his shoulders back strongly while leaning far enough forward to drag $his 
-			<<if ($activeSlave.boobs >= 10000)>> weighty mammaries 
-			<<elseif ($activeSlave.boobs >= 2000)>> cumbersome udders 
-			<<elseif ($activeSlave.boobs >= 1000)>> massive slave tits 
-			<<elseif ($activeSlave.boobs >= 800)>> forward-thrust breasts 
-			<<elseif ($activeSlave.boobs >= 500)>> meager chest 
-			<<elseif ($activeSlave.boobs <= 400)>> pathetic slave boobs 
-			<<else>> tits 
-			<</if>> 
+			pulls $his shoulders back strongly while leaning far enough forward to drag $his
+			<<if ($activeSlave.boobs >= 10000)>> weighty mammaries
+			<<elseif ($activeSlave.boobs >= 2000)>> cumbersome udders
+			<<elseif ($activeSlave.boobs >= 1000)>> massive slave tits
+			<<elseif ($activeSlave.boobs >= 800)>> forward-thrust breasts
+			<<elseif ($activeSlave.boobs >= 500)>> meager chest
+			<<elseif ($activeSlave.boobs <= 400)>> pathetic slave boobs
+			<<else>> tits
+			<</if>>
 			across your body as $he goes down.
 		<<default>>
 			obeys your command and goes to $his knees.
 		<</switch>>
 
 	<<else>>
-	obeys your command and goes to $his knees.	
+	obeys your command and goes to $his knees.
 	<</if>>
 <</if>>
-<<if ($activeSlave.devotion < -20)>> The other slaves guide $him to adjust $his posture so $his eyes ar directly in line with your package. 
+<<if ($activeSlave.devotion < -20)>> The other slaves guide $him to adjust $his posture so $his eyes ar directly in line with your package.
 <<else>> $He kneels so that $his eyes are directly level with your package.
 <</if>>
 
 <<if ($activeSlave.energy > 50)>>
-$He cant help but stare in lust at your 
+$He cant help but stare in lust at your
 
 	<<if $PC.balls > 2 && $PC.ballsImplant > 3>>
 	monstrous, massive pair of watermelon sized balls.
@@ -151,7 +153,7 @@ $He cant help but stare in lust at your
 	<<elseif $PC.balls == 2 && $PC.ballsImplant == 2>>
 	huge pair of balls, bulging like softballs from behind your suit.
 	<<elseif $PC.balls == 1 && $PC.ballsImplant == 1>>
-	large pair of balls, swinging heavily as you move. 
+	large pair of balls, swinging heavily as you move.
 	<<elseif $PC.ballsImplant > 2>>
 		enormous, heavy pair of balls.
 	<<elseif $PC.ballsImplant == 2>>
@@ -166,21 +168,21 @@ $He cant help but stare in lust at your
 	Your balls loom directly in front of $his face.
 <</if>>
 
-Now kneeling at your feet naked before you, your slave waits for $his Master's command. You take some time to survey the slut's properly displayed body. 
-<<if $activeSlave.butt > 6>> $His massive ass is so huge that $he it squishes around her heels, almost reaching the floor. 
+Now kneeling at your feet naked before you, your slave waits for $his Master's command. You take some time to survey the slut's properly displayed body.
+<<if $activeSlave.butt > 6>> $His massive ass is so huge that $he it squishes around her heels, almost reaching the floor.
 <<elseif $activeSlave.butt > 4>> $His <<print either("ass", "rear end")>> is so round and large it rolls out from her back in two perfect mounds. The cheeks are so thick it forms a perfect crevice between them, more than a couple inches deep.
-<<elseif $activeSlave.butt > 2>> $His nice <<print either("thick", "plump")>> <<print either("butt", "ass")>> curves out noticably, even while $he sits on $his knees. 
-<<else>> $His cute and tight ass rests gently on $his ankles. 
+<<elseif $activeSlave.butt > 2>> $His nice <<print either("thick", "plump")>> <<print either("butt", "ass")>> curves out noticeably, even while $he sits on $his knees.
+<<else>> $His cute and tight ass rests gently on $his ankles.
 <</if>>
 
 
 <<if ($activeSlave.energy > 95)>>
-		Her eyes fill with lust at the helplessness of kneeling at your crotch. 
+		Her eyes fill with lust at the helplessness of kneeling at your crotch.
 <</if>>
 <<if ($activeSlave.fetishStrength > 60)>>
 		<<switch $activeSlave.fetish>>
 		<<case "submissive">>
-			$He keeps her eyes down and poises her body to be fully available to $his master, trying to model for you the image of the perfect submissive. 
+			$He keeps her eyes down and poises her body to be fully available to $his master, trying to model for you the image of the perfect submissive.
 		<<case "dom">>
 			Despite $his kneeling stature, $his back is straight and shoulders back.
 		<<case "masochist">>
@@ -188,30 +190,30 @@ Now kneeling at your feet naked before you, your slave waits for $his Master's c
 		<<case "cumslut">>
 			$he goes to $his knees, all the while staring at your <<if $PC.dick != 0>>manly bulge.<<if $PC.vagina == 1>> <</if>>.<<else>> feminine mound.<</if>>
 		<<case "humiliation">>
-			$He eagerly takes to this humiliating position, hoping to demonstrate $his willingness to be degraded by $his <<Master>>. 
+			$He eagerly takes to this humiliating position, hoping to demonstrate $his willingness to be degraded by $his <<Master>>.
 		<<case "buttslut">>
-			$He positions $himself, sticking $his butt out as far as $he can manage, hoping to draw your attention to $his favorite area. 
+			$He positions $himself, sticking $his butt out as far as $he can manage, hoping to draw your attention to $his favorite area.
 		<<case "boobs">>
-			$he kneels with $his back strongly arching far back and diligently works to touch $his elbows behind $his back to best display $his 
-	<<if ($activeSlave.boobs >= 10000)>> colossal mammaries 
-	<<elseif ($activeSlave.boobs >= 2000)>> gigantic udders 
-	<<elseif ($activeSlave.boobs >= 1000)>> massive slave tits 
-	<<elseif ($activeSlave.boobs >= 800)>> prominent breasts 
-	<<elseif ($activeSlave.boobs >= 400)>> modest chest 
-	<<elseif ($activeSlave.boobs <= 400)>> pathetic slave boobs 
-	<</if>> for $his master. 
-	<<if ($activeSlave.lactation > 0)>> milk dribbles down the soft curves of $his chest as a further sign of $his arousal. 
+			$he kneels with $his back strongly arching far back and diligently works to touch $his elbows behind $his back to best display $his
+	<<if ($activeSlave.boobs >= 10000)>> colossal mammaries
+	<<elseif ($activeSlave.boobs >= 2000)>> gigantic udders
+	<<elseif ($activeSlave.boobs >= 1000)>> massive slave tits
+	<<elseif ($activeSlave.boobs >= 800)>> prominent breasts
+	<<elseif ($activeSlave.boobs >= 400)>> modest chest
+	<<elseif ($activeSlave.boobs <= 400)>> pathetic slave boobs
+	<</if>> for $his master.
+	<<if ($activeSlave.lactation > 0)>> milk dribbles down the soft curves of $his chest as a further sign of $his arousal.
 	<</if>>
-	This is, of course, how all slaves are supposed to kneel, but $he takes the pose with added dedication. 
+	This is, of course, how all slaves are supposed to kneel, but $he takes the pose with added dedication.
 		<<default>>
 			$He positions $himself with $his knees spread wide, hoping that you will turn your attention to $his wet pussy.
 		<</switch>>
 <</if>>
-You give $him permission to speak, and tell $him that $he may beg $his Master. 
+You give $him permission to speak, and tell $him that $he may beg $his Master.
 
 <<if ($activeSlave.devotion < -20)>>
 	<<if ($activeSlave.fear < -50)>>
-	
+
 	<<switch $activeSlave.standardPunishment>>
 
 	<<case "confinement">> Your slave simply presses $his hands together and begs you not to lock $him up in the bad girl box.
@@ -219,56 +221,56 @@ You give $him permission to speak, and tell $him that $he may beg $his Master.
 	<<case "chastity">>
 		<<if ($activeSlave.energy > 60)>>
 		Your slave simply presses $his hands together and begs you not to take away $his next orgasm
-		<<else>> Your slave simply asks that you not change $his punishment. $He fears you, but using chastity as a punishment is not an efficient way to command $his obedience, since $he has no sexual energy. 
+		<<else>> Your slave simply asks that you not change $his punishment. $He fears you, but using chastity as a punishment is not an efficient way to command $his obedience, since $he has no sexual energy.
 		<</if>>
 	<</switch>>
 	<<else>>
 		<<if ($activeSlave.behavioralFlaw == "bitchy")>> $He turns $his nose up in utter disgust. "Why, to feed your misogynistic ego? Thanks, but no." $He looks at your other slaves holding $him down, "Why don't you get one of these mindless cunts to do it? Or are they not hot enough?" $He is disobedient and bitchy, a bad combo.
-		<<elseif ($activeSlave.behaviorFlaw == "arrogant")>> $He tries to cock $his shoulders back, giving a death glare to the slaves holding $him in place, "I don't need anything from you" $he hisses. $He is disobedient and arrogant, a bad combo. 
+		<<elseif ($activeSlave.behaviorFlaw == "arrogant")>> $He tries to cock $his shoulders back, giving a death glare to the slaves holding $him in place, "I don't need anything from you" $he hisses. $He is disobedient and arrogant, a bad combo.
 		<<elseif ($activeSlave.behavioralFlaw == "liberated")>> $He does $his best to spit in your face, but the height difference means $he only stains your shirt. "I demand you release me!" $he scowls, "Or I'm going to call the police!" You smile at $his pathetically outdated worldview. You tell $him that's a good idea, since you know how rebellious slaves fair in jail.
-		<<elseif ($activeSlave.behavioralFlaw == "odd")>> $He purses $his lips and bounces on $his heels in futile rebellion. "Nuh-uh." $he puffs, shaking $his head wildly. 
+		<<elseif ($activeSlave.behavioralFlaw == "odd")>> $He purses $his lips and bounces on $his heels in futile rebellion. "Nuh-uh." $he puffs, shaking $his head wildly.
 		<<else>>
-		$He simply sits there, struggling against the hands holding $him down.  
+		$He simply sits there, struggling against the hands holding $him down.
 		<</if>>
 	<</if>>
 This is clearly the best you are going to get out of $him until $he is better trained. You
 	<<if ($activeSlave.fear > -50)>>
-	 signal your loyal slaves to lift $him to $his feet, and 
+	 signal your loyal slaves to lift $him to $his feet, and
 	<</if>>
 	send $him away for now.
-<<elseif ($activeSlave.devotion < 20)>> 
+<<elseif ($activeSlave.devotion < 20)>>
 		<<if ($activeSlave.behavioralFlaw == "bitchy")>> $He turns $his nose up in utter disgust. "Why, to feed your misogynistic ego? Thanks, but no." $He looks at your other slaves holding $him down, "Why don't you get one of these mindless cunts to do it? Or are they not hot enough?" $He is disobedient and bitchy, a bad combo.
-		<<elseif ($activeSlave.behaviorFlaw == "arrogant")>> $He tries to cock $his shoulders back, giving a death glare to the slaves holding $him in place, "I don't need anything from you" $he hisses. $He is disobedient and arrogant, a bad combo. 
+		<<elseif ($activeSlave.behaviorFlaw == "arrogant")>> $He tries to cock $his shoulders back, giving a death glare to the slaves holding $him in place, "I don't need anything from you" $he hisses. $He is disobedient and arrogant, a bad combo.
 		<<elseif ($activeSlave.behavioralFlaw == "liberated")>> $He does $his best to spit in your face, but the height difference means $he only stains your shirt. "I demand you release me!" $he scowls, "Or I'm going to call the police!" You smile at $his pathetically outdated worldview. You tell $him that's a good idea, since you know how rebellious slaves fair in jail.
-		<<elseif ($activeSlave.behavioralFlaw == "odd")>> $He purses $his lips and bounces on $his heels in futile rebellion. "Nuh-uh." $he puffs, shaking $his head wildly. 
+		<<elseif ($activeSlave.behavioralFlaw == "odd")>> $He purses $his lips and bounces on $his heels in futile rebellion. "Nuh-uh." $he puffs, shaking $his head wildly.
 		<<elseif ($activeSlave.sexualFlaw == "shamefast")>> $He tries to cover $his naked body from your gaze "Plea<<s>>e, can I ju<<s>>t put <<s>>ome clothe<<s>> on?"
 		<<else>>
 		$He looks up at you with a sudden glimpse of hope, and begins to plead, "Plea<<s>>e, <<s>>ir, plea<<s>>e <<s>>et me free. I don't want to be here.
 			<<if ($activeSlave.energy < 50)>>
 			I have no desire for sex. I don't want to be your toy! Please let me go."
-			<<else>> 
-			I might even come back to share consensual love with you. I ju<<s>>t don't want to be property. Plea<<s>>e, let me go."   
+			<<else>>
+			I might even come back to share consensual love with you. I ju<<s>>t don't want to be property. Plea<<s>>e, let me go."
 			<</if>>
 		<</if>>
-You tell your slave to rise to rise to $his feet. Even though $he desired the impossible, it wasn't a total waste. You feel as though you have a pretty good understanding of where your slave stands. You send $him away with $his request denied, and you resolve to break $him more in the coming weeks. 
+You tell your slave to rise to rise to $his feet. Even though $he desired the impossible, it wasn't a total waste. You feel as though you have a pretty good understanding of where your slave stands. You send $him away with $his request denied, and you resolve to break $him more in the coming weeks.
 <<elseif ($activeSlave.devotion < 60)>>
-	Your slave looks at $his Master with obedient eyes. 
+	Your slave looks at $his Master with obedient eyes.
 <<elseif ($activeSlave.devotion <= 100)>>
-Your devoted slave takes the begging position, 
+Your devoted slave takes the begging position,
 	<<if ($activeSlave.fetish != "submissive")>>
-	$he even brings $his hands up like a dog's paws. 
+	$he even brings $his hands up like a dog's paws.
 	<<else>>
 	 and $he bows $his head in total submission.
-		<<if ($activeSlave.nipplePiercing > 0)>> 
-		The armbinder thrusts $his tits out nicely, and $his nipple rings are pulled tight by the weighted bells weighing them down. 
-		<<elseif ($activeSlave.nipplePiercing > 1)>> 
-		The armbinder thrusts $his tits out nicely, and ensures that $his nipple chains are pulled tight by the angle of $his shoulders. <<BoobWatch>> The bells on $his nipple piercings jungle sweetly as $he breathes. 
+		<<if ($activeSlave.nipplePiercing > 0)>>
+		The armbinder thrusts $his tits out nicely, and $his nipple rings are pulled tight by the weighted bells weighing them down.
+		<<elseif ($activeSlave.nipplePiercing > 1)>>
+		The armbinder thrusts $his tits out nicely, and ensures that $his nipple chains are pulled tight by the angle of $his shoulders. <<BoobWatch>> The bells on $his nipple piercings jungle sweetly as $he breathes.
 		<<else>>
 		The armbinder thrusts $his tits out nicely and $his nipples are now red from the clamps pressing down hard on $his sensitive flesh. Every painful shudder makes the bells jungle ever so sweetly.
 		<</if>>
 	<</if>>
-"Ye<<s>> Ma<<s>>ter. Thank you, <<Master>>." $He is fully subservient to you, and would do anything to please you. 
-<</if>>	
+"Ye<<s>> Ma<<s>>ter. Thank you, <<Master>>." $He is fully subservient to you, and would do anything to please you.
+<</if>>
 
 <<if ($activeSlave.devotion > 20)>>
 	<<if ($activeSlave.fetishStrength > 60)>>
@@ -280,7 +282,7 @@ Your devoted slave takes the begging position,
 		<<case "masochist">>
 			"I know I haven't di<<s>>obeyed," $he begins, "but I ju<<s>>t need to be punished." You smile down at your little painslut, running your finger along $his chin. "Plea<<s>>e <<Master>>, beat me. Beat my a<<ss>> until it'<<s>> red and clamp my nipple<<s>> until they bleed. Plea<<s>>e! I need to feel your <<s>>trength!"
 		<<case "cumslut">>
-			Your little cumslut can't stop staring at your  
+			Your little cumslut can't stop staring at your
 				<<if $PC.balls > 2 && $PC.ballsImplant > 3>>
 				monstrous, massive pair of watermelon sized balls.
 				<<elseif $PC.balls == 2 && $PC.ballsImplant == 3>>
@@ -292,7 +294,7 @@ Your devoted slave takes the begging position,
 				<<elseif $PC.balls == 2 && $PC.ballsImplant == 2>>
 				huge pair of balls, bulging like softballs from behind your suit.
 				<<elseif $PC.balls == 1 && $PC.ballsImplant == 1>>
-				large pair of balls, swinging heavily as you move. 
+				large pair of balls, swinging heavily as you move.
 				<<elseif $PC.ballsImplant > 2>>
 				enormous, heavy pair of balls.
 				<<elseif $PC.ballsImplant == 2>>
@@ -303,16 +305,16 @@ Your devoted slave takes the begging position,
 				crotch.
 				<</if>>
 	Drool begins to drip from $his lips, and you have to remind your slave that $he is here to beg.
-			"<<Master>>," $he breathes heavily, "Please let me 
+			"<<Master>>," $he breathes heavily, "Please let me
 		<<if $PC.dick != 0>> suck your magnificent cock
 			<<if $PC.vagina == 1>> and eat you out
 			<</if>>."
 		<<else>> eat your delicious pussy."
-		<</if>>	
-			You smile at the little cocksucker, so eager to please. 
+		<</if>>
+			You smile at the little cocksucker, so eager to please.
 
 		<<case "humiliation">>
-			$He sits so that $her body is on full display, "Plea<<s>>e <<Master>>, use me and humilate me. Take me out to the public square so that everyone can see you overpower me." 
+			$He sits so that $her body is on full display, "Plea<<s>>e <<Master>>, use me and humilate me. Take me out to the public square so that everyone can see you overpower me."
 		<<case "buttslut">>
 			$He positions $his back so $his ass sticks out even further "<<Master>>," $he begs, "u<<s>>e my a<<ss>>!
 			<<if ($activeSlave.sexualQuirk == "painal")>> make me <<s>>queel!
@@ -320,7 +322,7 @@ Your devoted slave takes the begging position,
 			I just need your cock in my mo<<s>>t u<<s>>eful fuckhole, plea<<s>>e!"
 		<<case "boobs">>
 			$He takes $his hands and presses $his tits together, lifting them to display for you $his primary purpose in life.
-			<<if ($activeSlave.lactation > 0)>> More milk squirts from each teat as $he bears them. 
+			<<if ($activeSlave.lactation > 0)>> More milk squirts from each teat as $he bears them.
 			<</if>>
 		 "I beg of you, <<Master>>, I need you to u<<s>>e my tits. Suck them, squeeze them, fuck them, I cannot cum without you using my slave tits! I am nothing more than a walking tit-carrier, and my only purpose is to offer these breasts to you."
 		<<case "pregnant">>
@@ -329,17 +331,15 @@ Your devoted slave takes the begging position,
 			$He kneels with $his knees far spread, "use my fuckhole <<Master>>, I beg you. Plea<<s>>e, I need you to fuck me!"
 		<</switch>>
 	<<else>>
-	"<<Master>>, I exi<<s>>t to <<s>>erve you." $He say, "I have no other purpose in life. I beg of you, plea<<s>>e never let me leave your <<s>>ervi<<c>>e. Let me wait on you forever. I <<s>>wear I will alway<<s>> be obedient. Let me cook your meal<<s>>, clean your penthou<<s>>e, care for your other <<s>>lave<<s>>, even make me a cow. I don't care, a<<s>> long a<<s>> I'm here serving you." $He knows that $his rightful place is a slave, and $he is dedicated to living out that role to the fullest.  
-		<<if ($activeSlave.behavioralQuirk == "advocate")>> 
+	"<<Master>>, I exi<<s>>t to <<s>>erve you." $He say, "I have no other purpose in life. I beg of you, plea<<s>>e never let me leave your <<s>>ervi<<c>>e. Let me wait on you forever. I <<s>>wear I will alway<<s>> be obedient. Let me cook your meal<<s>>, clean your penthou<<s>>e, care for your other <<s>>lave<<s>>, even make me a cow. I don't care, a<<s>> long a<<s>> I'm here serving you." $He knows that $his rightful place is a slave, and $he is dedicated to living out that role to the fullest.
+		<<if ($activeSlave.behavioralQuirk == "advocate")>>
 		"I <<s>>ee now" $he continues, "that <<s>>lavery really i<<s>> a woman<<s>> rightful pla<<c>>e. She ha<<s>> no purpo<<s>>e except to <<s>>erve her <<Master>>."
 		<</if>>
 	<</if>>
 
-You smile at your obedient little slave, and agree to grant $his request. 
+You smile at your obedient little slave, and agree to grant $his request.
 <</if>>
 
-
-
 <<if (random(1,100) > (100 + $activeSlave.devotion))>>
 	<<if ($activeSlave.fetish != "submissive") && ($activeSlave.energy <= 95) && ($activeSlave.behavioralFlaw != "liberated")>>
 		Seeing the humiliating acts your slaves are expected to preform has made $him @@.red;determined to be free.@@
diff --git a/src/npc/fDance.tw b/src/npc/fDance.tw
index 53a886a1cc7b716e57e21658b57de6df2e565ca5..72b48d31d9384cd4b2c73fb4214793af1b580d2e 100644
--- a/src/npc/fDance.tw
+++ b/src/npc/fDance.tw
@@ -1,20 +1,18 @@
 :: FDance [nobr]
 
-
-
 <<set $desc = SlaveTitle($activeSlave)>>
 <<run clearSummaryCache($activeSlave)>>
 <<setLocalPronouns $activeSlave>>
 
-You tell your assistant to summon your slave and set some erotic music. When your slave arrives $he finds the lights in your office flashing club colors. You gesture towards the platform in the center of your office and tell her to dance for you. 
+You tell your assistant to summon your slave and set some erotic music. When your slave arrives $he finds the lights in your office flashing club colors. You gesture towards the platform in the center of your office and tell her to dance for you.
 
-<<if ($activeSlave.entertainmentSkill >= 99)>> $He slides his ass gracefully unto the stage, then dramatically raises $his elongated legs one at a time onto the platform. Circling to $his knees, $he raises $his ass in the air and glides $his hands up $his legs as $he stands upright. 
+<<if ($activeSlave.entertainmentSkill >= 99)>> $He slides his ass gracefully unto the stage, then dramatically raises $his elongated legs one at a time onto the platform. Circling to $his knees, $he raises $his ass in the air and glides $his hands up $his legs as $he stands upright.
 <<elseif ($activeSlave.entertainmentSkill >= 60)>> $He takes his rightful place on your stage.
-<<elseif ($activeSlave.entertainmentSkill >= 40)>> $He goes to take $his place on your stage and dance for $his Master. 
-<elseif ($activeSlave.entertainmentSkill >= 20)>> $He ascends to the platform and begins to grind at the pole. 
-<<elseif ($activeSlave.entertainmentSkill >= 9)>> $He climbs up onto the platform and grabs onto the pole. 
-<<elseif ($activeSlave.entertainmentSkill <= 10)>> $He unceremoniously climbs on the platform and begins to dance. 
-<<else>> $He slides his ass gracefully unto the stage, then dramatically raises $his elongated legs one at a time onto the platform. Circling to $his knees, $he raises $his ass in the air and glides $his hands up $his legs as $he stands upright. 
+<<elseif ($activeSlave.entertainmentSkill >= 40)>> $He goes to take $his place on your stage and dance for $his Master.
+<elseif ($activeSlave.entertainmentSkill >= 20)>> $He ascends to the platform and begins to grind at the pole.
+<<elseif ($activeSlave.entertainmentSkill >= 9)>> $He climbs up onto the platform and grabs onto the pole.
+<<elseif ($activeSlave.entertainmentSkill <= 10)>> $He unceremoniously climbs on the platform and begins to dance.
+<<else>> $He slides his ass gracefully unto the stage, then dramatically raises $his elongated legs one at a time onto the platform. Circling to $his knees, $he raises $his ass in the air and glides $his hands up $his legs as $he stands upright.
 
 <</if>>
 
@@ -29,9 +27,9 @@ You tell your assistant to summon your slave and set some erotic music. When you
 <<elseif $activeSlave.weight > 20>>
 	$His form sways and moves with the music in a most alluring way.
 <<elseif $activeSlave.weight > 0>>
-	$His trim body is highlighted by $his dance. Whenever $he  rolls $his ass or sways $his hips it highlights the contours of $his waist.
+	$His trim body is highlighted by $his dance. Whenever $he rolls $his ass or sways $his hips it highlights the contours of $his waist.
 <<elseif $activeSlave.weight < 0>>
-	Your slave glides to the music like a <<print either("stripper", "belly dancer")>>. $He is thin and tight, with no bodyfat to speak of 
+	Your slave glides to the music like a <<print either("stripper", "belly dancer")>>. $He is thin and tight, with no bodyfat to speak of
 	<<if $activeSlave.boobs > 400>>, making $his tits
 		<<if $activeSlave.butt > 1>> and ass
 		<</if>>
@@ -47,7 +45,7 @@ You tell your assistant to summon your slave and set some erotic music. When you
 $His face is
 <<case "masculine">>
 	<<if $activeSlave.face < -95>>
-		hiddeously manly, distracting you from anything positive that may be going on.
+		hideously manly, distracting you from anything positive that may be going on.
 	<<elseif $activeSlave.face < -40>>
 		ugly and masculine, and you find it difficult to enjoy looking at $him.
 	<<elseif $activeSlave.face < -10>>
@@ -71,7 +69,7 @@ $His face is
 	<<elseif ($activeSlave.face <= 10)>>
 		strangely androgynous, but not distracting.
 	<<elseif ($activeSlave.face <= 40)>>
-		androgynous, and attractive enough that it adds an interestinf flair to the dance.
+		androgynous, and attractive enough that it adds an interesting flair to the dance.
 	<<elseif ($activeSlave.face <= 95)>>
 		gorgeously androgynous which is distracting and perplexing all at once.
 	<<else>>
@@ -79,15 +77,15 @@ $His face is
 	<</if>>
 <<case "cute">>
 	<<if $activeSlave.face < -95>>
-		pitifully cute. $He's so ugly and cute you can't help but be turned off and drawn in simultaniously. 
+		pitifully cute. $He's so ugly and cute you can't help but be turned off and drawn in simultaneously.
 	<<elseif $activeSlave.face < -40>>
-		not attractive, but $his cuteness makes her pitifully appealing. 
+		not attractive, but $his cuteness makes her pitifully appealing.
 	<<elseif $activeSlave.face < -10>>
 		not attractive, but is still cute enough to keep you entertained.
 	<<elseif ($activeSlave.face <= 10)>>
 		appealingly cute.
 	<<elseif ($activeSlave.face <= 40)>>
-		cute and attractive, adding genuine appeal to $his preformance.
+		cute and attractive, adding genuine appeal to $his performance.
 	<<elseif ($activeSlave.face <= 95)>>
 		so cute as $he dances for you. You appreciate the fullness of $his beauty.
 	<<else>>
@@ -107,17 +105,17 @@ $His face is
 	<<elseif ($activeSlave.face <= 95)>>
 		constantly turning you on, with the sensual structure of $his beautiful face bringing sex back to your mind.
 	<<else>>
-		making you 
+		making you
 		<<if $PC.dick != 0>> rock hard
 			<<if $PC.vagina == 1>> and dripping wet
 			<</if>>
 		<<else>> dripping wet
-		<</if>>	
+		<</if>>
 	as you lust after $his sexual beauty.
 	<</if>>
 <<case "exotic">>
 	<<if $activeSlave.face < -95>>
-		hiddeously unusual, distracting you from anything positive that may be going on.
+		hideously unusual, distracting you from anything positive that may be going on.
 	<<elseif $activeSlave.face < -40>>
 		ugly and unusual, and you find it difficult to enjoy looking at $him.
 	<<elseif $activeSlave.face < -10>>
@@ -125,7 +123,7 @@ $His face is
 	<<elseif ($activeSlave.face <= 10)>>
 		interesting and unusual. It isn't particularly attractive, but none of your slaves have a face quite like $his.
 	<<elseif ($activeSlave.face <= 40)>>
-		exotic and alluring, just attractive enough to make $him good office decor, but not so much that it's distracting.
+		exotic and alluring, just attractive enough to make $him good office décor, but not so much that it's distracting.
 	<<elseif ($activeSlave.face <= 95)>>
 		a testament to the benefits of a global slave market. $His face makes $him a perfect office trophy.
 	<<else>>
@@ -139,13 +137,13 @@ $His face is
 	<<elseif $activeSlave.face < -10>>
 		not a highlight. $He isn't beautiful, and you would rather watch $his body.
 	<<elseif ($activeSlave.face <= 10)>>
-		quite feminine and pleasing. You aren't captivated by $his face, but you don't avoid it either. 
+		quite feminine and pleasing. You aren't captivated by $his face, but you don't avoid it either.
 	<<elseif ($activeSlave.face <= 40)>>
 		feminine and attractive. You find yourself looking at it from time to time.
 	<<elseif ($activeSlave.face <= 95)>>
 		beautiful and feminine. You often find your eyes locked on $his face for long periods of time.
 	<<else>>
-		absolutely stunning. Watching $his face is often more pleasing than watching $him dance. 
+		absolutely stunning. Watching $his face is often more pleasing than watching $him dance.
 	<</if>>
 <</switch>>
 
@@ -160,7 +158,7 @@ $His face is
 		a ring on $his gag strap
 	<<case "massive dildo gag">>
 		a ring on $his gag strap
-	<<case "preg biometrics">> 
+	<<case "preg biometrics">>
 		$his collar
 	<<case "silk ribbon">>
 		$his silk ribbon
@@ -204,34 +202,34 @@ $His face is
 		<<else>>
 		a collar that is placed on $his neck for the occasion, and
 		<</if>>
-	<</switch>> 
+	<</switch>>
 	to the pole in order to keep $him from getting down. Whenever $he stops dancing the chain is tightened a bit more,
 	<<switch $activeSlave.collar>>
 	<<case "uncomfortable leather">>
 		choking $him and rubbing $his skin raw from the leather;
 	<<case "tight steel">>
-		choking $him without mercy. 
+		choking $him without mercy.
 	<<case "shock punishment">>
 		and a shock is sent through $his collar;
 	<<case "neck corset">>
 		making breathing even more difficult;
 	<<case "ancient Egyptian">>
 		<<if $activeSlave.nosePiercing == 2>> tugging at his nose ring;
-		<<elseif $activeSlave.nipplesPiercing == 2>> threatening to tear themselves from $his sensiteve flesh;
+		<<elseif $activeSlave.nipplesPiercing == 2>> threatening to tear themselves from $his sensitive flesh;
 		<<else>>
 		tugging at $his throat;
 		<</if>>.
 	<<case "default">>
 		<<if $activeSlave.nosePiercing == 2>> tugging at his nose ring;
-		<<elseif $activeSlave.nipplesPiercing == 2>> threatening to tear themselves from $his sensiteve flesh;
+		<<elseif $activeSlave.nipplesPiercing == 2>> threatening to tear themselves from $his sensitive flesh;
 		<<else>>
 		choking $him;
 		<</if>>
 	<</switch>>
  forcing $him to keep moving or face more pain
-	<</if>>.	
+	<</if>>.
 <<elseif ($activeSlave.devotion > -20)>>
-$He hates being forced to dance for you, but tries $his best in spite of this. 
+$He hates being forced to dance for you, but tries $his best in spite of this.
 <<elseif ($activeSlave.devotion > 20)>>
 $He wants to do $his best for you, and tries not to hold back.
 <<elseif ($activeSlave.devotion > 50)>>
@@ -241,180 +239,180 @@ $He is so honored that you want to use $him in this way, and tries eagerly to pl
 <</if>>
 
 <<if ($activeSlave.devotion > 20)>>
-	<<if ($activeSlave.sexualFlaw == "judgemental")>> 
-	$He thinks to $himself that a real man wouldn't need to compensate this way, and judges you harshly. 
-	<<elseif ($activeSlave.behavioralFlaw == "idealistic")>> $He can't believe $he now lives in a world where women are expected to preform for their Masters whether they consent or not.  
+	<<if ($activeSlave.sexualFlaw == "judgemental")>>
+	$He thinks to $himself that a real man wouldn't need to compensate this way, and judges you harshly.
+	<<elseif ($activeSlave.behavioralFlaw == "idealistic")>> $He can't believe $he now lives in a world where women are expected to perform for their Masters whether they consent or not.
 	<<elseif ($activeSlave.behavioralFlaw == "bitchy")>> $He dances, but makes sure that the disgust on $his face shows clearly that $he is not into it.
 	<</if>>
 <</if>>
-The atmosphere of your office is a testament to masculine oppulance. Few men in the old world would have the pleasure of completing their work while an attractive woman flaunts herself for his pleasure. 
-You allow the situation to continue for about an hour, before deciding it's time to escelate. 
-You look up once more at your slave and take some time to review $his dancing preformance
+The atmosphere of your office is a testament to masculine opulence. Few men in the old world would have the pleasure of completing their work while an attractive woman flaunts herself for his pleasure.
+You allow the situation to continue for about an hour, before deciding it's time to escalate.
+You look up once more at your slave and take some time to review $his dancing performance
 <<if ($activeSlave.devotion > -20)>>
-	<<if ($activeSlave.entertainmentSkill == 100)>> Your slave has a level of skill previously unseen in the old world. Even $his blinks have the seductive pull of a goddess. As you watch $him preform, you think how no man of the old world would ever get to see pure sexuality like this. And not only do get to watch $him, you OWN $him. $His body moves like water, and hips that ebbed and flowed as if the tides themselves panged for a rock hard cock to come and take them. You tried to get some work done, but couldn't take your eyes off $him for even a second. You promise to reward your slave for bringing so much sensuality and beauty into your office; transforming your place of work into a shrine of Masculine dominance.
-	<<elseif ($activeSlave.entertainmentSkill >= 60)>> $His skill would have only been matched by the best of the best old world erotic dancers, but in your Free City expectations are high. $He dances with seduction in every move, alternating $his style between everything from bellydancing to club twerking, and each with the skill level of a trained professional. You got some work done while $he danced, but often found yourself pulled back in by the tide of $his rolling hips. You praise your slave for $his enriching preformance.
-	<<elseif ($activeSlave.entertainmentSkill >= 40)>> $He has impressive skill and would have been a top-tier dancer in the old world. One of the many benefits of being a leader of a Free City is the ability to work in an atmosphere of pure servitiude. You were free to continue your work in an office the old world men could only dream of.  You tell your slave that you are pleased with $his show.
-	<<elseif ($activeSlave.entertainmentSkill >= 20)>> Despite being an average entertainer, it is clear thet $he is doing $his best. You enjoyed the sexy ambiance while you worked. You tell your slave that $his preformance was adequate.
-	<<elseif ($activeSlave.entertainmentSkill >= 10)>> $He is still learning the nuances of seductive dance, but at least able to move with the rhythm. You spent much of the preformance distracted, forgetting that $he was even there at times and leaving $him unable to stop until you remembered about $him. You tell $him that $he will have to work harder if $he wishes to please you.
-	<<else>> Or, at least, $his best attempt at dancing. $His arms flail about awkwardly as $he crouches and straightens off-beat to the music. You spent much of the dance ignoring $him and working on your business. You chide your slave for such a pathetic excuse for a preformance, and tell $him that $he will have to find a place to please you, or you will be forced to make $him useful, turning $his thoughts to the arcades, dairies, and fuckdolls common amongst the Free Cities.
+	<<if ($activeSlave.entertainmentSkill == 100)>> Your slave has a level of skill previously unseen in the old world. Even $his blinks have the seductive pull of a goddess. As you watch $him perform, you think how no man of the old world would ever get to see pure sexuality like this. And not only do get to watch $him, you OWN $him. $His body moves like water, and hips that ebbed and flowed as if the tides themselves panged for a rock hard cock to come and take them. You tried to get some work done, but couldn't take your eyes off $him for even a second. You promise to reward your slave for bringing so much sensuality and beauty into your office; transforming your place of work into a shrine of Masculine dominance.
+	<<elseif ($activeSlave.entertainmentSkill >= 60)>> $His skill would have only been matched by the best of the best old world erotic dancers, but in your Free City expectations are high. $He dances with seduction in every move, alternating $his style between everything from belly dancing to club twerking, and each with the skill level of a trained professional. You got some work done while $he danced, but often found yourself pulled back in by the tide of $his rolling hips. You praise your slave for $his enriching performance.
+	<<elseif ($activeSlave.entertainmentSkill >= 40)>> $He has impressive skill and would have been a top-tier dancer in the old world. One of the many benefits of being a leader of a Free City is the ability to work in an atmosphere of pure servitude. You were free to continue your work in an office the old world men could only dream of. You tell your slave that you are pleased with $his show.
+	<<elseif ($activeSlave.entertainmentSkill >= 20)>> Despite being an average entertainer, it is clear that $he is doing $his best. You enjoyed the sexy ambiance while you worked. You tell your slave that $his performance was adequate.
+	<<elseif ($activeSlave.entertainmentSkill >= 10)>> $He is still learning the nuances of seductive dance, but at least able to move with the rhythm. You spent much of the performance distracted, forgetting that $he was even there at times and leaving $him unable to stop until you remembered about $him. You tell $him that $he will have to work harder if $he wishes to please you.
+	<<else>> Or, at least, $his best attempt at dancing. $His arms flail about awkwardly as $he crouches and straightens off-beat to the music. You spent much of the dance ignoring $him and working on your business. You chide your slave for such a pathetic excuse for a performance, and tell $him that $he will have to find a place to please you, or you will be forced to make $him useful, turning $his thoughts to the arcades, dairies, and Fuckdolls common amongst the Free Cities.
 	<</if>>
 <<else>>
-$He dances poorly on purpose to spite you. Whatever skills $he has, they are not on display here. 
+$He dances poorly on purpose to spite you. Whatever skills $he has, they are not on display here.
 <</if>>
 
-But it's not over yet. You tell your slave that it's time to encorperate some stripping into $his dance. 
+But it's not over yet. You tell your slave that it's time to incorporate some stripping into $his dance.
 
-<<if ($activeSlave.sexualFlaw == "shamefast")>> 
+<<if ($activeSlave.sexualFlaw == "shamefast")>>
 	<<if ($activeSlave.devotion < 40)>>
-	$He immediately begins to tear up at the thought of being naked. $His shame is obvious to you, and you remind $him that $his comfort is not your concern. 
-		<<if ($activeSlave.entertainmentSkill >= 99)>> Even though $he is crippled by shame, your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. With tears still streaming down $his face, $he begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose, even as $he sniffles at the shame of revealing $himself for you. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-		<<elseif ($activeSlave.entertainmentSkill >= 60)>> Even thoough $he is crippled by shame, your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-		<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-		<<elseif ($activeSlave.entertainmentSkill >= 20)>> Your slave works hard to keep with the rhythm while removing articles of clothing. $His attempts are inhibbitted by $his shame, which makes $him shudder and cry whenever it's time for another article of clothing to come off. 
-		<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $He is too concerned with protecting $his nakedness to be obedient and attractive simultaniously, and you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-		<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to reluctantly, but obediently, remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+	$He immediately begins to tear up at the thought of being naked. $His shame is obvious to you, and you remind $him that $his comfort is not your concern.
+		<<if ($activeSlave.entertainmentSkill >= 99)>> Even though $he is crippled by shame, your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. With tears still streaming down $his face, $he begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose, even as $he sniffles at the shame of revealing $himself for you. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+		<<elseif ($activeSlave.entertainmentSkill >= 60)>> Even though $he is crippled by shame, your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+		<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+		<<elseif ($activeSlave.entertainmentSkill >= 20)>> Your slave works hard to keep with the rhythm while removing articles of clothing. $His attempts are inhibited by $his shame, which makes $him shudder and cry whenever it's time for another article of clothing to come off.
+		<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $He is too concerned with protecting $his nakedness to be obedient and attractive simultaneously, and you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+		<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to reluctantly, but obediently, remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 		<</if>>
 	<<else>>
-	Even though $he is uncomfortable at the thought of being naked, $he is so devoted to you that $he obeys without question. 
-		<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. Overcoming $his fear of being naked, $he begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose, even as $he sniffles at the shame of revealing $himself for you. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-		<<elseif ($activeSlave.entertainmentSkill >= 60)>> Even thoough $he is still ashamed, your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-		<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-		<<elseif ($activeSlave.entertainmentSkill >= 20)>> Your slave works hard to keep with the rhythm while removing articles of clothing. $His attempts would be inhibbitted by $his shame, but $his devotion to you overrides this and $he is able to dance with added skill. 
-		<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. You find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-		<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to shamefully remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+	Even though $he is uncomfortable at the thought of being naked, $he is so devoted to you that $he obeys without question.
+		<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. Overcoming $his fear of being naked, $he begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose, even as $he sniffles at the shame of revealing $himself for you. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+		<<elseif ($activeSlave.entertainmentSkill >= 60)>> Even though $he is still ashamed, your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+		<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+		<<elseif ($activeSlave.entertainmentSkill >= 20)>> Your slave works hard to keep with the rhythm while removing articles of clothing. $His attempts would be inhibited by $his shame, but $his devotion to you overrides this and $he is able to dance with added skill.
+		<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. You find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+		<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to shamefully remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 		<</if>>
 	<</if>>
 <<elseif ($activeSlave.behavioralFlaw == "odd")>>
-	<<if ($activeSlave.entertainmentSkill >= 99)>> Even though $he is extremely odd, your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. With her ass cheeks straddling the pole $he begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-	<<elseif ($activeSlave.entertainmentSkill >= 60)>> Even thoough $he is extremely odd, your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-	<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he shouts wildly before upping the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-	<<elseif ($activeSlave.entertainmentSkill >= 20)>> Your slave works hard to keep with the rhythm while removing articles of clothing. $His attempts are inhibbitted by $his oddness, which results in $him crouching and squeeling at inappropriate times. $He wonders aloud and you instruct $him to be silent the remainder of the dance. 
-	<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $He is so odd that $his moves more resembles the chicken dance than any form of erotic dancing. You find yourself unable to look away, and for all the wrong reasons. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-	<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. Deciding that the rhythm is to blame, $he decides instead to sing $his own song to strip to. $He proceeds to hum string of off beat notes peppered with random words and scats, all punctuated by the sloppy kicking of clothes from $his ankles. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to roughly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+	<<if ($activeSlave.entertainmentSkill >= 99)>> Even though $he is extremely odd, your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. With her ass cheeks straddling the pole $he begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+	<<elseif ($activeSlave.entertainmentSkill >= 60)>> Even though $he is extremely odd, your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+	<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he shouts wildly before upping the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+	<<elseif ($activeSlave.entertainmentSkill >= 20)>> Your slave works hard to keep with the rhythm while removing articles of clothing. $His attempts are inhibited by $his oddness, which results in $him crouching and squealing at inappropriate times. $He wonders aloud and you instruct $him to be silent the remainder of the dance.
+	<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $He is so odd that $his moves more resembles the chicken dance than any form of erotic dancing. You find yourself unable to look away, and for all the wrong reasons. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+	<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. Deciding that the rhythm is to blame, $he decides instead to sing $his own song to strip to. $He proceeds to hum string of off beat notes peppered with random words and scats, all punctuated by the sloppy kicking of clothes from $his ankles. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to roughly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 	<</if>>
 <<elseif ($activeSlave.sexualFlaw == "attention whore")>>
-	As an attentrion whore, this is what $he lives for. 
-	<<if ($activeSlave.entertainmentSkill >= 99)>>  Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. Being a an attention whore, $he is obsessed with attracting the sexual arousal of others. $He begins by writhing $his hips and rolling $his ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose, even though $he is also fulfilled by the event $he knows that your desire is all that matters. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-	<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. Being an attention whore, $he is obsessed with attracting the sexual arousal of others. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He surely wishes $he wer a better entertainer soyou would call on $him to strip morte often. 
-	<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. The true entertainment comes from $his teasing nature, which makes $him blush cutely anytime $he shows a bit of skin. $He begins by writhing $his hips and rolling her ass.  $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+	As an attention whore, this is what $he lives for.
+	<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. Being a an attention whore, $he is obsessed with attracting the sexual arousal of others. $He begins by writhing $his hips and rolling $his ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose, even though $he is also fulfilled by the event $he knows that your desire is all that matters. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+	<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. Being an attention whore, $he is obsessed with attracting the sexual arousal of others. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He surely wishes $he were a better entertainer so you would call on $him to strip more often.
+	<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. The true entertainment comes from $his teasing nature, which makes $him blush cutely anytime $he shows a bit of skin. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
 	<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing. $His attempts are overshadowed by $his clear desire to be looked at, and you can tell $he is distracted by this.
-	<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $He is trying much too hard to get your attention, and is visibly angered whenever $he sees that you are not aroused by $his fumblings. You find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-	<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to over-dramatically remove an article of clothing. After each article removed $he stops and looks at you to make sure you're watching. $His clear desire to be looked at makes $him more self-conscious which offsets the rhythm of the dance even more. $He decides to pick up the pace, aiming to be naked as quickly as possible so that you can admire $his body. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+	<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $He is trying much too hard to get your attention, and is visibly angered whenever $he sees that you are not aroused by $his fumblings. You find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+	<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to over-dramatically remove an article of clothing. After each article removed $he stops and looks at you to make sure you're watching. $His clear desire to be looked at makes $him more self-conscious which offsets the rhythm of the dance even more. $He decides to pick up the pace, aiming to be naked as quickly as possible so that you can admire $his body. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 	<</if>>
-<<elseif ($activeSlave.sexualQuirk == "tease")>> 
-	<<if ($activeSlave.entertainmentSkill >= 99)>>  Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. Being a tease, $he is able to maintain an attractive blend of shame and arousal at the thought of being naked before you, and this inspires $him to tease you endlessly. With cheeks still flushed and red, $he begins by writhing $his hips and rolling $his ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose, even as $he blushes at the shame and arousal of revealing $himself for you. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-	<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. Being a tease, $he is able to maintain an attractive blend of shame and arousal at the thought of being naked before you, and this inspires $him to tease you endlessly. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-	<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. The true entertainment comes from $his teasing nature, which makes $him blush cutely anytime $he shows a bit of skin. $He begins by writhing $his hips and rolling her ass.  $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-	<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing. $His attempts are made more entertaining by $his shame, which makes $him redden and blush whenever it's time for another article of clothing to come off. Even though $his entertainment skill needs improving, you genuinely enjoy the teasing way $he tugs at $his wear and makes you anticipate the removal of each article. 
-	<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $He is a tease, which adds a bit of value, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-	<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+<<elseif ($activeSlave.sexualQuirk == "tease")>>
+	<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. Being a tease, $he is able to maintain an attractive blend of shame and arousal at the thought of being naked before you, and this inspires $him to tease you endlessly. With cheeks still flushed and red, $he begins by writhing $his hips and rolling $his ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose, even as $he blushes at the shame and arousal of revealing $himself for you. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+	<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. Being a tease, $he is able to maintain an attractive blend of shame and arousal at the thought of being naked before you, and this inspires $him to tease you endlessly. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+	<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. The true entertainment comes from $his teasing nature, which makes $him blush cutely anytime $he shows a bit of skin. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+	<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing. $His attempts are made more entertaining by $his shame, which makes $him redden and blush whenever it's time for another article of clothing to come off. Even though $his entertainment skill needs improving, you genuinely enjoy the teasing way $he tugs at $his wear and makes you anticipate the removal of each article.
+	<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $He is a tease, which adds a bit of value, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+	<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 	<</if>>
 <<else>>
 	<<if ($activeSlave.fetishKnown == 1)>>
 		<<switch $activeSlave.fetish>>
 		<<case "submissive">>
-			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass.  $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attentiona, but whenever $he sees that you are becoming distracted $he ups thjje ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing. 
-			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing.
+			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 			<</if>>
 		<<case "dom">>
-			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass.  $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attentiona, but whenever $he sees that you are becoming distracted $he ups thjje ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing. 
-			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing.
+			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 			<</if>>
 		<<case "sadist">>
-			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass.  $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attentiona, but whenever $he sees that you are becoming distracted $he ups thjje ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing. 
-			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing.
+			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 			<</if>>
 		<<case "masochist">>
-			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass.  $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attentiona, but whenever $he sees that you are becoming distracted $he ups thjje ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing. 
-			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing.
+			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 			<</if>>
 		<<case "cumslut">>
-			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass.  $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attentiona, but whenever $he sees that you are becoming distracted $he ups thjje ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing. 
-			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing.
+			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 			<</if>>
 		<<case "humiliation">>
-			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass.  $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attentiona, but whenever $he sees that you are becoming distracted $he ups thjje ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing. 
-			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing.
+			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 			<</if>>
 		<<case "buttslut">>
-			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass.  $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attentiona, but whenever $he sees that you are becoming distracted $he ups thjje ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing. 
-			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing.
+			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 			<</if>>
 		<<case "pregnancy">>
-			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass.  $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attentiona, but whenever $he sees that you are becoming distracted $he ups thjje ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing. 
-			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing.
+			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 			<</if>>
 		<<case "boobs">>
-			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass.  $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attentiona, but whenever $he sees that you are becoming distracted $he ups thjje ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing. 
-			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+			<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+			<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing.
+			<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
+			<</if>>
+			<<if ($activeSlave.boobs >= 10000)>> weighty mammaries
+			<<elseif ($activeSlave.boobs >= 2000)>> cumbersome udders
+			<<elseif ($activeSlave.boobs >= 1000)>> massive slave tits
+			<<elseif ($activeSlave.boobs >= 800)>> forward-thrust breasts
+			<<elseif ($activeSlave.boobs >= 500)>> meager chest
+			<<elseif ($activeSlave.boobs <= 400)>> pathetic slave boobs
+			<<else>> tits
 			<</if>>
-			<<if ($activeSlave.boobs >= 10000)>> weighty mammaries 
-			<<elseif ($activeSlave.boobs >= 2000)>> cumbersome udders 
-			<<elseif ($activeSlave.boobs >= 1000)>> massive slave tits 
-			<<elseif ($activeSlave.boobs >= 800)>> forward-thrust breasts 
-			<<elseif ($activeSlave.boobs >= 500)>> meager chest 
-			<<elseif ($activeSlave.boobs <= 400)>> pathetic slave boobs 
-			<<else>> tits 
-			<</if>> 
 			across your body as $he goes down.
 		<<default>>
-			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-			<<elseif ($activeSlave.entertainmentSkill >= 80)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass.  $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attentiona, but whenever $he sees that you are becoming distracted $he ups thjje ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-			<<elseif ($activeSlave.entertainmentSkill >= 40)>>Your slave works hard to keep with the rhythm while removing articles of clothing. 
-			<<elseif ($activeSlave.entertainmentSkill >= 20)>> Your slave is not a skilled preformer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+			<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+			<<elseif ($activeSlave.entertainmentSkill >= 80)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+			<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+			<<elseif ($activeSlave.entertainmentSkill >= 40)>>Your slave works hard to keep with the rhythm while removing articles of clothing.
+			<<elseif ($activeSlave.entertainmentSkill >= 20)>> Your slave is not a skilled performer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+			<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 			<</if>>
 		<</switch>>
-	<<else>> 
-		<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free. 
-		<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass.  $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. 
-		<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing preformance. $He begins by writhing $his hips and rolling her ass.  $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attentiona, but whenever $he sees that you are becoming distracted $he ups thjje ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
-		<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing. 
-		<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled preformer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
-		<<else>> Your slave has no skills to speak of, and isn't able tokeep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abrubtly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work. 
+	<<else>>
+		<<if ($activeSlave.entertainmentSkill >= 99)>> Your slave is a masterful entertainer, able to keep anyone entertained for even the most lengthy of strip teases. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he knows how to fulfill $his purpose. You keep trying to get back to work, but your slave's movements are so enthralling that you cannot seem to break free.
+		<<elseif ($activeSlave.entertainmentSkill >= 60)>> Your slave is a skilled entertainer, well above average. $He begins by writhing $his hips and rolling her ass. $He knows how to use $his hips and ass to draw and keep your attention while slowly moving up to $his chest. <<= ($activeSlave)>> $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose.
+		<<elseif ($activeSlave.entertainmentSkill >= 40)>> Your slave is a practiced entertainer, not masterful but still able to give an arousing performance. $He begins by writhing $his hips and rolling her ass. $He is able to use $his hips and ass to draw your attention before suddenly moving up to $his chest. <<= ($activeSlave)>> $He isn't able to fully keep your attention, but whenever $he sees that you are becoming distracted $he ups the ante to draw you back in. $His body is nothing more than an object for your desire, and $he is learning to fulfill $his purpose. $He does her best to direct your arousal onto $his body.
+		<<elseif ($activeSlave.entertainmentSkill >= 20)>>Your slave works hard to keep with the rhythm while removing articles of clothing.
+		<<elseif ($activeSlave.entertainmentSkill >= 10)>> Your slave is not a skilled performer, and $his movements are uninspired. $His movements are still attractive, but you find yourself becoming distracted, $his dance not enough to keep your attention or draw you back. You take out your tablet and make a note that this slave will need to practice $his seduction if $he is to be allowed to dance for you again. Even without skill you still can admire $his body. <<= ($activeSlave)>> You imagine how much more attractive $his tits and ass could be if $he knew how to move them right.
+		<<else>> Your slave has no skills to speak of, and isn't able to keep even the simplest of rhythms. $He fumbles about awkwardly and clumsily, stopping abruptly every so often to gracelessly remove an article of clothing. You decide to find $his lack of skill amusing, and allow $him to continue practicing while you resume your work.
 		<</if>>
 	<</if>>
 
 <</if>>
 
-/* The following is formatting for later inclusion */ 
+/* The following is formatting for later inclusion */
 /*
 <<switch $activeSlave.clothes>>
 			<<case "a Fuckdoll suit">>
@@ -1422,11 +1420,11 @@ End clothing-specific stripping */
 
 Once the last piece of clothing has hit the floor you let your little slut dance naked a little while longer while you finish your last report. Once you have gotten enough of $his dancing you snap your fingers to callyour slave over.
 <<if ($activeSlave.devotion < 100)>> Your slave hurries to your side and drops to $his knees. $He gladly kneels at your feet, looking up at $his Master in adoration.
-<<elseif ($activeSlave.devotion < 50)>> Your slave hurries to your side and drops to $his knees. $He obediently kneels at your feet. 
+<<elseif ($activeSlave.devotion < 50)>> Your slave hurries to your side and drops to $his knees. $He obediently kneels at your feet.
 <<elseif ($activeSlave.devotion < 20)>> Your slave walks slowly to your desk and kneels. $He looks up at you, hoping that $his life gets easier.
-<<elseif ($activeSlave.devotion < -20)>> 
+<<elseif ($activeSlave.devotion < -20)>>
 	<<if ($activeSlave.fear < -50)>>
-	$He hurries frantically to your side, and drops quivering to the floor at your feet hoping $he was quick enough to avoid 
+	$He hurries frantically to your side, and drops quivering to the floor at your feet hoping $he was quick enough to avoid
 		<<switch $activeSlave.standardPunishment>>
 		<<case "confinement">> confinement.
 		<<case "whipping">> whipping
@@ -1435,7 +1433,7 @@ Once the last piece of clothing has hit the floor you let your little slut dance
 			orgasm denial
 			<<else>> punishment.
 			<</if>>
-		<<case "situational">> 
+		<<case "situational">>
 			<<switch $activeSlave.collar>>
 			<<case "shock punishment">> shock
 			<</switch>>
@@ -1447,12 +1445,12 @@ Once the last piece of clothing has hit the floor you let your little slut dance
 		<<else>>
 		collar
 		<</if>>
-. Once seated, you chain $him to your desk and force $him to $his knees. You may have to start punishing $him more severely. 
+. Once seated, you chain $him to your desk and force $him to $his knees. You may have to start punishing $him more severely.
 	<</if>>
 <<else>>
 Your slave hurries to your side and drops to $his knees. $He gladly kneels at your feet, looking up at $his Master in adoration.
 <</if>>
-  /* more varied reactions planned. */
+ /* more varied reactions planned. */
 <<if (random(1,100) > (100 + $activeSlave.devotion))>>
 	<<if ($activeSlave.fetish != "humiliation") && ($activeSlave.energy <= 95) && ($activeSlave.sexualFlaw != "shamefast")>>
 		Being facefucked by force has given $him a @@.red;desire to always be clothed.@@
diff --git a/src/pregmod/breederProposal.tw b/src/pregmod/breederProposal.tw
index 926f80e11d3b1b71409a66ebf82d4b0a6058546f..2d5222f5a83d2b8ea341185db402fcd5a4d4fc3f 100644
--- a/src/pregmod/breederProposal.tw
+++ b/src/pregmod/breederProposal.tw
@@ -2,7 +2,7 @@
 
 <<set $nextButton = " ", $nextLink = "Main", $propOutcome = -1>>
 
-You draft a proposal to the Societal Elite proposing the use of specially tested slaves as breeding stock. If they can pass the tests required to join the societal elite; even as slaves, their bodies can prove valuable to furthering eugenics. They will gain no additional rights, but their wombs will be used to birth elite children; helping stave off potential threats of inbreeding and adding possible missed beneficial traits into the Elite's gene pool.
+You draft a proposal to the Societal Elite proposing the use of specially tested slaves as breeding stock. If they can pass the tests required to join the Societal Elite; even as slaves, their bodies can prove valuable to furthering eugenics. They will gain no additional rights, but their wombs will be used to birth elite children; helping stave off potential threats of inbreeding and adding possible missed beneficial traits into the Elite's gene pool.
 <br><br>
 Within the hour, you are called before <<if $eugenicsFullControl == 1>>what's left of <</if>>the Societal Elite.
 <br>
diff --git a/src/pregmod/eliteTakeOver.tw b/src/pregmod/eliteTakeOver.tw
index 50380036be1d6a34bc695e2c4396f6f330d65318..28f960b0a7a9dfa854286d45a3f003757a60b3eb 100644
--- a/src/pregmod/eliteTakeOver.tw
+++ b/src/pregmod/eliteTakeOver.tw
@@ -75,11 +75,11 @@ You look up from your desk as the locked door to your office unseals, and a doze
 		<</link>>
 	<</if>>
 	<<if $SF.Toggle && $SF.Active >= 1>>
-		<br> <<set _N = SFC()>>
+		<br> <<set _N = App.SF.SFC()>>
 		<<link "Send a message to _N">>
 			<<set $finalChoice = "SF">>
 			<<replace "#fate">>
-				send a message to <<print SFC()>>.
+				send a message to <<print App.SF.SFC()>>.
 			<</replace>>
 		<</link>>
 	<</if>>
diff --git a/src/pregmod/eliteTakeOverFight.tw b/src/pregmod/eliteTakeOverFight.tw
index cb4e8ee434dfe07ec53935d39b632401fbfe3a93..a7af848540f9a32ae7172963f7ef8190641ef6e6 100644
--- a/src/pregmod/eliteTakeOverFight.tw
+++ b/src/pregmod/eliteTakeOverFight.tw
@@ -31,7 +31,7 @@
 	<br>You send a quick message to the leader of your $mercenariesTitle, about your situation, then you pick up the revolver and quickly take aim.
 	<<set $MercenariesMessageSent = 1>>
 <<case "SF">>
-	<br>You send a quick message to <<print SFC()>> about your situation, then you pick up the revolver and quickly take aim.
+	<br>You send a quick message to <<print App.SF.SFC()>> about your situation, then you pick up the revolver and quickly take aim.
 	<<set $SpecialForcesMessageSent = 1>>
 <<case "enrage">>
 	<<if $PC.career != "wealth" && $PC.career != "engineer" && $PC.career != "medicine">>
@@ -103,7 +103,7 @@
 	<<elseif $eliteDead == 1>>
 		<br>You managed to kill one elite, leaving the rest in shock and fear.
 	<<else>>
-		<br>Unfortunately you fail to kill a single elite.
+		<br>Unfortunately you fail to kill a single Elite.
 	<</if>>
 	<br>
 
diff --git a/src/pregmod/eliteTakeOverResult.tw b/src/pregmod/eliteTakeOverResult.tw
index 825eb7dac4e824f2af613d4ef343f6b5f13d11d4..1de7d849615ea8588268507d422c65019743e971 100644
--- a/src/pregmod/eliteTakeOverResult.tw
+++ b/src/pregmod/eliteTakeOverResult.tw
@@ -10,17 +10,17 @@
 <<switch $eliteFate>>
 <<case 0>>
 	<<if $MercenariesMessageSent == 1>>
-		The mercenaries open fire as ordered. Shortly after, the conspiring elite are dead.
+		The mercenaries open fire as ordered. Shortly after, the conspiring Elite are dead.
 	<<elseif $SpecialForcesMessageSent == 1>>
-		The soldiers open fire as ordered. Shortly after, the conspiring elite are dead.
+		The soldiers open fire as ordered. Shortly after, the conspiring Elite are dead.
 	<<elseif $eliteLeft <= 9 && $rep >= 10000>>
-		Your citizens freeze for a second, then obey your orders. Shortly after, the conspiring elite are dead.
+		Your citizens freeze for a second, then obey your orders. Shortly after, the conspiring Elite are dead.
 	<<else>>
-		Your bodyguard opens fire as ordered. Shortly after, the conspiring elite are dead.
+		Your bodyguard opens fire as ordered. Shortly after, the conspiring Elite are dead.
 	<</if>>
 <<case 1>>
 	<<if random(0,100) > 50>>
-			An elite bites down on a cyanide pill hidden in a false tooth and
+			An Elite bites down on a cyanide pill hidden in a false tooth and
 		<<if random(0,100) > 75>>
 			takes the coward's way out (how predictable), frothing at the mouth.
 			<<set $eliteDead += 1>>
@@ -29,17 +29,17 @@
 		<</if>>
 	<</if>>
 	<<if $MercenariesMessageSent == 1>>
-		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite are quickly captured and enslaved by your mercenaries.
+		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> Elite are quickly captured and enslaved by your mercenaries.
 	<<elseif $SpecialForcesMessageSent == 1>>
-		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite are quickly captured and enslaved by your soldiers.
+		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> Elite are quickly captured and enslaved by your soldiers.
 	<<elseif $eliteLeft <= 9 && $rep >= 10000>>
-		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite are quickly captured and enslaved by your loyal citizens.
+		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> Elite are quickly captured and enslaved by your loyal citizens.
 	<<else>>
-		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite are quickly captured and enslaved by your bodyguard.
+		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> Elite are quickly captured and enslaved by your bodyguard.
 	<</if>>
 <<case 2>>
 	<<if random(0,100) > 50>>
-			An elite bites down on a cyanide pill hidden in a false tooth and
+			An Elite bites down on a cyanide pill hidden in a false tooth and
 		<<if random(0,100) > 75>>
 			takes the coward's way out (how predictable), frothing at the mouth.
 			<<set $eliteDead += 1>>
@@ -48,9 +48,9 @@
 		<</if>>
 	<</if>>
 	<<if $MercenariesMessageSent == 1>>
-		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite are quickly captured, abused and enslaved.
-		The officer is thankful for giving the troops a chance to let off some stream. Two soldiers decide to double team an elite; one ass fucks while the other facefucks.
-		Another soldier takes a particular interest in an elite and politely asks you
+		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> Elite are quickly captured, abused and enslaved.
+		The officer is thankful for giving the troops a chance to let off some stream. Two soldiers decide to double team an Elite; one ass fucks while the other facefucks.
+		Another soldier takes a particular interest in an Elite and politely asks you
 		"<<= properTitle()>>, can I keep _himU?"
 		<br><span id="choice1">
 			<<link "No">>
@@ -68,15 +68,15 @@
 			<</link>>
 		</span>
 	<<elseif $SpecialForcesMessageSent>>
-		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite are quickly captured, abused and enslaved.
+		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> Elite are quickly captured, abused and enslaved.
 		<<if $SF.Depravity <= 0.3>>
-			Two soldiers decide to double team an elite; one gropes _hisU ass while the other gropes _hisU tits.
+			Two soldiers decide to double team an Elite; one gropes _hisU ass while the other gropes _hisU tits.
 		<<elseif $SF.Depravity <= 1.2>>
-			Two soldiers decide to double team an elite; one ass fucks while the other facefucks.
+			Two soldiers decide to double team an Elite; one ass fucks while the other facefucks.
 		<<else>>
-			Two soldiers decide to double team an elite; one breaks out their knife and begins to make little breaks in the elite's skin while the other soldier facefucks them.
+			Two soldiers decide to double team an Elite; one breaks out their knife and begins to make little breaks in the Elite's skin while the other soldier facefucks them.
 		<</if>>
-		Another soldier takes a particular interest in an elite and politely asks you "<<= properTitle()>>, can I keep _himU?"
+		Another soldier takes a particular interest in an Elite and politely asks you "<<= properTitle()>>, can I keep _himU?"
 		<br><span id="choice1">
 			<<link "No">>
 				<<set _SFHappyEverAfter = 0>>
@@ -104,13 +104,13 @@
 		<<set $SF.Depravity += 0.05>>
 	<<elseif $eliteLeft <= 9 && $rep >= 10000>>
 		<<if $arcologies[0].FSDegradationist != "unset">>
-			An evil smile appears on the faces of your loyal citizens, while the surviving elite freeze in terror. The impromptu festivity will go on for hours, getting more and more depraved.
+			An evil smile appears on the faces of your loyal citizens, while the surviving Elite freeze in terror. The impromptu festivity will go on for hours, getting more and more depraved.
 		<<else>>
 			While some citizens respectfully step out, some join you in the fun. The impromptu festivities will go on for hours, getting more and more depraved.
 		<</if>>
 	<<else>>
 		<<if $Bodyguard.fetish == "sadist">>$Bodyguard.slaveName gets out $his melee weapon and starts to give them many small cuts, the look of pleasure on $his face is evident.<<else>>$Bodyguard.slaveName ties them and then gets out $his melee weapon and starts to abuse them, $his face is blank.<</if>>
-		<br>Shortly after, the terrified <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite are quickly brought away to be officially enslaved.
+		<br>Shortly after, the terrified <<if $eliteLeft < $eliteTotal>>remaining<</if>> Elite are quickly brought away to be officially enslaved.
 	<</if>>
 <</switch>>
 
diff --git a/src/pregmod/fDick.tw b/src/pregmod/fDick.tw
index 94e7e99e93a4c6cc747bf1437d619dded82ab956..bfa3d6e8e69163e70d37c3abca359565481f5444 100644
--- a/src/pregmod/fDick.tw
+++ b/src/pregmod/fDick.tw
@@ -9,13 +9,13 @@
 
 /*NON-AMPUTEE*/
 <<if ($activeSlave.amp < 1)>>
-	You direct $activeSlave.slaveName to lie down and ready $himself as you step over to $him and align your <<if $PC.vagina == 1>> vagina <<else>> ass <</if>> with
+	You direct $activeSlave.slaveName to lie down and ready $himself as you step over to $him and align your <<if $PC.vagina == 1>>vagina<<else>>ass<</if>> with $his
 	<<if ($activeSlave.vaginaPiercing > 1) && ($activeSlave.dick != 0)>>
-		$his pierced cock-head.
+		pierced cock-head.
 	<<elseif ($activeSlave.vaginaPiercing == 1) && ($activeSlave.dick != 0)>>
-		$his pierced cock.
+		pierced cock.
 	<<else>>
-		$his cock.
+		cock.
 	<</if>>
 
 	<<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>>
@@ -63,7 +63,7 @@
 		until you feel that you can't take any more of $him inside you.
 	<</if>>
 
-	Making eye contact, you reach <<if $PC.belly < 5000 && $activeSlave.belly < 5000>>back<<else>>down<</if>>
+	Making eye contact<<if !canSee($activeSlave)>> (inasmuch as you can)<</if>>, you reach <<if $PC.belly < 5000 && $activeSlave.belly < 5000>>back<<else>>down<</if>>
 	<<if $activeSlave.scrotum > 0>>
 		and stroke $his
 		<<if $activeSlave.balls == 0>>
diff --git a/src/pregmod/huskSlave.tw b/src/pregmod/huskSlave.tw
index e40c9bd8d8d433d51f6bde0eb6a8a9d599adcb66..4650ab634533650e0b8c5f0bf2ac8ca380e5aa39 100644
--- a/src/pregmod/huskSlave.tw
+++ b/src/pregmod/huskSlave.tw
@@ -51,9 +51,9 @@ Virginity:
 <br><br><br>
 Reserving a body will cost <<print cashFormat(10000)>> up front. Canceling an order will refund your money, however if a delivered body is rejected; your money will not be refunded.
 <<if $huskSlaveOrdered == 1>>
-[[Withdraw body order|Main][$huskSlaveOrdered = 0, cashX(10000, "slaveTransfer")]]
+	[[Withdraw body order|Main][$huskSlaveOrdered = 0, cashX(10000, "slaveTransfer")]]
 <<elseif $cash < 10000>>
 	//You lack the credits to place a body reservation.//
 <<else>>
-[[Post body order|Main][$huskSlaveOrdered = 1, cashX(-10000, "slaveTransfer")]]
+	[[Post body order|Main][$huskSlaveOrdered = 1, cashX(-10000, "slaveTransfer")]]
 <</if>>
diff --git a/src/pregmod/incubatorRetrievalWorkaround.tw b/src/pregmod/incubatorRetrievalWorkaround.tw
index ea184d8b26f0786d8b32170b6df405025fe83ce7..083cf594fdb28358487502ec4a4bdf17eed6c26f 100644
--- a/src/pregmod/incubatorRetrievalWorkaround.tw
+++ b/src/pregmod/incubatorRetrievalWorkaround.tw
@@ -73,6 +73,8 @@
 			Lab crafted.
 		<<elseif _newSlave.father == -8>>
 			//Error! Animal fathered children shouldn't be here!//
+		<<elseif _newSlave.father == -9>>
+			Futanari Sister.
 		<<else>>
 			<<if def $missingTable[_newSlave.father]>>
 				Your former slave, $missingTable[_newSlave.father].slaveName.
diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw
index 4c93f89d8c7d3a2e1e37acf09469d98d7485cb44..55b4f22cf87edabd3e3a688aeb47f35266123c3f 100644
--- a/src/pregmod/newChildIntro.tw
+++ b/src/pregmod/newChildIntro.tw
@@ -1338,8 +1338,8 @@ You beckon the curious $girl to your hefty breasts, having noticed how hungrily
 		<<run SetBellySize($activeSlave)>>
 		<<replace "#result">>
 			You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't keep $his hands off $his new bulbous middle. $He's @@.hotpink;deliriously happy@@ that $he has $his own round belly and @@.mediumaquamarine;bounces cheerfully@@ when $he <<if canHear($activeSlave)>>hears<<else>>discovers<</if>> you can make it bigger. As with all surgery @@.red;$his health has been slightly affected.@@
-		<</replace>> //This option costs <<print cashFormat($surgeryCost)>>//
-	<</link>>
+		<</replace>>
+	<</link>> //This option costs <<print cashFormat($surgeryCost)>>//
 <</if>>
 
 <<if (($activeSlave.geneMods.NCS == 0) && ((_momInterest == "dick") || (_dadInterest == "dick")))>>
diff --git a/src/pregmod/pInsemination.tw b/src/pregmod/pInsemination.tw
index ca92a093f438f35aab4c3c6ca5f0c5bfda3eb680..ff07cd6037044b94b57bb74a0aeaa923e7335359 100644
--- a/src/pregmod/pInsemination.tw
+++ b/src/pregmod/pInsemination.tw
@@ -32,7 +32,7 @@
 
 <<case "moves">>
 	<<if $movesCount == 0>>
-		You arrive at the apartment of a rather suave man who's made some very powerful connections. No sooner than you knock are you whisked away back out into the arcology for dinner and a romantic stroll through the hydroponic gardens. Once you are escorted back to his apartment, he seats you on his couch and hands you a glass of fine wine. After an evening of pleasantries, he takes you to bed and reminds you what it feels like to be a woman. He even cooks you breakfast the next morning! As he sees you to the door, he encircles your middle, gives you a deep kiss, and tells you if you ever need anything during your pregnancy, he will be there for the mother of his coming child.
+		You arrive at the apartment of a rather suave man who's made some very powerful connections. No sooner than you knock on the door are you whisked away back out into the arcology for dinner and a romantic stroll through the hydroponic gardens. Once you are escorted back to his apartment, he seats you on his couch and hands you a glass of fine wine. After an evening of pleasantries, he takes you to bed and reminds you what it feels like to be a woman. He even cooks you breakfast the next morning! As he sees you to the door, he encircles your middle, gives you a deep kiss, and tells you if you ever need anything during your pregnancy, he will be there for the mother of his coming child.
 		<<set $movesCount++>>
 	<<else>>
 		You arrive at the apartment of the gentleman, only to find him waiting to take you on another date. After a pleasant evening, and a night of intense sex, you find it hard to part with him come morning, but an arcology owner's job comes first and you have slaves waiting for your attention. He walks you back to your penthouse, deeply kissing you and making your slaves deeply envious once it comes to goodbyes. A girl could get used to a life like this, or perhaps he could even be roped into your life. Though it would take more than getting knocked up to do that, you think to yourself as you rub your fertilized belly.
@@ -40,7 +40,7 @@
 
 <<case "quick">>
 	<<if $quickCount == 0>>
-		You arrive at the apartment of the very wealthy fuel baron who is to sire your child. He is eagerly waiting for you and quickly hurries you inside. He wastes no time; practically ripping your clothes off and forcing over the edge of his bed. He hastily mounts you and roughly fucks your cunt — until he quickly finishes, that is, leaving you unsatisfied as he shoves you out the door, clothes in <<if $PC.dick == 1>>one hand and raging boner in the other<<else>>hand<</if>>.
+		You arrive at the apartment of the very wealthy fuel baron who is to sire your child. He is eagerly waiting for you and quickly hurries you inside. He wastes no time, practically ripping your clothes off and forcing you over the edge of his bed. He hastily mounts you and roughly fucks your cunt — until he quickly finishes, that is, leaving you unsatisfied as he shoves you out the door, clothes in <<if $PC.dick == 1>>one hand and raging boner in the other<<else>>hand<</if>>.
 		<<set $quickCount++>>
 	<<else>>
 		You arrive at the apartment of the quick-shooting fuel baron and once more he quickly pulls you in. He barely manages to undress you before he is on top of you humping away. Just as he is about to cum, you wrap your legs around him; anchoring yourself to him. You remind him that his job is to knock you up, and a quick in and out isn't good enough. Buying it, he keeps thrusting, letting you reach your own orgasm. He still hurried you out the door in the end, but you got some pleasure out of him this time.
diff --git a/src/pregmod/pRaped.tw b/src/pregmod/pRaped.tw
index 3cccd40ba963c5a37dc353fcf2046eeaad5bba0b..92d96f2ebafed4ed9c26b6f2b322b2ea752b54fd 100644
--- a/src/pregmod/pRaped.tw
+++ b/src/pregmod/pRaped.tw
@@ -132,7 +132,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong
 <</switch>>
 	Finally he reaches your moistening pussy. "Already wet are we? Glad you know your place," he states as he pulls your clothes off and bends you over.
 <br><br>
-You can feel the head of his cock teasing your pussy lips; you hope it feels bigger than it really is. As he struggles to force it into you, you regret thinking about it. He must have undergone surgery or something because he fills you completely. You feel weak just from him sticking it in, you can't fathom what will happen once he starts thrusting. You soon find out as he wastes no time starting slow. He violently rams his oversized cock deep into you, threatening to penetrate your cervix with each thrust. He quickens his pace, fucking you like a beast.<<if $PC.preg < 1>><<if random(1,100) > 60>> His hand rises to your lips and forces something into your mouth. "Swallow it." You obey, hoping to just get this over with.<<set $PC.forcedFertDrugs += 3>><</if>> With one final thrust, he forces through your battered cervix and unloads in the depths of your <<if isPlayerFertile($PC)>>fertile <</if>>womb<<else>> With one final thrust, he forces it in as deep as he can into you and blows his seed deep in your aching cunt<</if>>. <<if $PC.preg >= 20 || $PC.belly >= 5000>>"Now your child will know what a real man's sperm is like!" <</if>>He shoves you to the ground, pussy gaping from the size of his shaft and leaking his huge load all over yourself. By the time you loosen your bindings, he is long gone.
+You can feel the head of his cock teasing your pussy lips; you hope it feels bigger than it really is. As he struggles to force it into you, you regret thinking about it. He must have undergone surgery or something because he fills you completely. You feel weak just from him sticking it in, you can't fathom what will happen once he starts thrusting. You soon find out as he wastes no time starting slow. He violently rams his oversized cock deep into you, threatening to penetrate your cervix with each thrust. He quickens his pace, fucking you like a beast.<<if $PC.preg < 1>><<if random(1,100) > 60>> His hand rises to your lips and forces something into your mouth. "Swallow it." You obey, hoping to just get this over with.<<set $PC.forcedFertDrugs += 3>><</if>> With one final thrust, he forces through your battered cervix and unloads in the depths of your <<if isPlayerFertile($PC)>>fertile <</if>>womb<<else>> With one final thrust, he forces it in as deep as he can into you and blows his seed deep in your aching cunt<</if>>. <<if $PC.preg >= 20 || $PC.belly >= 5000>>"Now your child<<if $PC.pregType > 1>>ren<</if>> will know what a real man's sperm is like!" <</if>>He shoves you to the ground, pussy gaping from the size of his shaft and leaking his huge load all over yourself. By the time you loosen your bindings, he is long gone.
 <br><br>
 It would be prudent to up security in your arcology. That or take a guard along when you leave the penthouse. Such a thing, happening to you. You can't allow such an indignity to happen again, you think to yourself, as you try to coax his sperm from your abused pussy.<<if isPlayerFertile($PC)>> For some reason your body feels really satisfied, despite not climaxing... Is this what it feels like to be bred by someone so dominant? You should take a pregnancy test right away and make sure he didn't knock you up.<<= knockMeUp($PC, 100, 0, 0, 1)>><</if>>
 
@@ -146,7 +146,7 @@ Now the only question is what to do with the would-be rapist. You could toss the
 <<set $slaveCost -= 1000>>
 <br>
 //Applying enslavement as punishment will cost <<print cashFormat($contractCost)>>. Doing so and then selling $him immediately will bring in approximately <<print cashFormat($slaveCost)>>.//
-
+<br>
 <<set $saleDescription = 1>><<include "Long Slave Description">>
 
 <span id="result">
diff --git a/src/pregmod/personalNotes.tw b/src/pregmod/personalNotes.tw
index 33582c6ff73011bb57cae7d720487e0a71f846af..b2c906c18c467128af544a455f12d7dad3f2fa0f 100644
--- a/src/pregmod/personalNotes.tw
+++ b/src/pregmod/personalNotes.tw
@@ -21,12 +21,12 @@
 			<</if>>
 		<<elseif $PC.boobsBonus == 0>>
 			<<if random(1,100) > 75>>
-				Your breasts have @@.lime;grown larger@@ to feed your coming child. Quick measurements show you've gone up a cup size over the course of your pregnancy.
+				Your breasts have @@.lime;grown larger@@ to feed your coming child<<if $PC.pregType > 1>>ren<</if>>. Quick measurements show you've gone up a cup size over the course of your pregnancy.
 				<<set $PC.boobsBonus++>>
 			<</if>>
 		<<elseif $PC.boobsBonus == -1>>
 			<<if random(1,100) > 80>>
-				Your breasts have @@.lime;grown a bit larger@@ to feed your coming child. Quick measurements show you've gone up nearly two cup sizes over the course of your pregnancy.
+				Your breasts have @@.lime;grown a bit larger@@ to feed your coming child<<if $PC.pregType > 1>>ren<</if>>. Quick measurements show you've gone up nearly two cup sizes over the course of your pregnancy.
 				<<set $PC.boobsBonus++>>
 			<</if>>
 		<<elseif $PC.boobsBonus == -2>>
@@ -54,9 +54,7 @@
 			<<if _milk < 1>>
 				<<set _milk = 1>>
 			<</if>>
-
-			When ever you have a free moment and a chest swollen with milk, you spend your time attached to the nearest milker. As a result, you produce _milk liters of sellable milk over the week.
-
+			Whenever you have a free moment and a chest swollen with milk, you spend your time attached to the nearest milker. As a result, you produce _milk liters of sellable milk over the week.
 			<<if ($arcologies[0].FSPastoralistLaw == 1)>>
 				<<set _milkSale = _milk*(28+Math.trunc($arcologies[0].FSPastoralist/30))>>
 				Since breast milk is $arcologies[0].name's only legal dairy product, and yours is in a class all of its own, society can't get enough of it and you make @@.yellowgreen;<<print cashFormat(_milkSale)>>.@@
@@ -68,7 +66,6 @@
 				Your milk is sold for @@.yellowgreen;<<print cashFormat(_milkSale)>>.@@
 			<</if>>
 			<<run cashX(_milkSale, "personalBusiness")>>
-
 		<<else>>
 			You regularly see to your breasts to make sure your milk production doesn't dry up; be it by hand, milker or mouth, you keep yourself comfortably drained.
 		<</if>>
diff --git a/src/pregmod/seFCTVremote.tw b/src/pregmod/seFCTVremote.tw
index 454d8d3bbefd400ad8ac2e6a01e40aaf850ad972..bf36f34991ecb740b6d9866b4621d45b2e476e10 100644
--- a/src/pregmod/seFCTVremote.tw
+++ b/src/pregmod/seFCTVremote.tw
@@ -1,9 +1,6 @@
 :: SE FCTV Remote [nobr]
 
 <<set $nextButton = "Continue", $nextLink = "Scheduled Event", $returnTo = "Scheduled Event", $showEncyclopedia = 1, $encyclopedia = "FCTV", $FCTVremote = 2>>
-<<if $assistant > 0>>
- <<setAssistantPronouns>>
-<</if>>
 
 <<set $activeSlaveOneTimeMinAge = 25>>
 <<set $activeSlaveOneTimeMaxAge = 35>>
@@ -57,7 +54,7 @@
 
 You have a gap in your schedule in the morning, and decide to watch some FCTV<<if $Concubine != 0>> with your concubine, @@.pink;$Concubine.slaveName@@<</if>>. No sooner do you begin to watch a random show, than you have a notification that someone is here to see you. It seems to be a tech of some sort, complete with a small utility drone. A camera reveals the back of their shirt, on which is written in block letters "FCTV SERVICE." Incredible. How do these people always find the worst time to stop in. <<if $assistant > 0>>Your assistant shrugs. At a gesture from you, _heA lets $him in.<<else>>You push a button to allow $him to come in.<</if>> This had better be good.
 <br>
-Presently, the tech enters the room and asks how your FCTV product is working. You tersely reply that it is fine, <<if $FCTVremote == 1>> although you're annoyed you had to purchase your own remote,<<else>> although you find the random nature of the shows a little annoying,<</if>> then ask the tech to cut to the point. $He shifts from one foot to the other, and then sheepishly admits that the service comes with a free remote that allows you to change the channels. Incredible! Why didn't you receive one? "It's, uh, 8HGG Inc policy to distribute remotes only after a trial period." <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> quietly notifies you "$He's lying. We've had no notification from 8HGG of a visit. It's definitely the same tech as last time; $he's trying to cover up $his mistake on a big contract. <i>They don't know $he's here.</i>"
+Presently, the tech enters the room and asks how your FCTV product is working. You tersely reply that it is fine, <<if $FCTVremote == 1>> although you're annoyed you had to purchase your own remote,<<else>> although you find the random nature of the shows a little annoying,<</if>> then ask the tech to cut to the point. $He shifts from one foot to the other, and then sheepishly admits that the service comes with a free remote that allows you to change the channels. Incredible! Why didn't you receive one? "It's, uh, 8HGG Inc policy to distribute remotes only after a trial period." <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> quietly notifies you that "$He's lying. We've had no notification from 8HGG of a visit. It's definitely the same tech as last time; $he's trying to cover up $his mistake on a big contract. <i>They don't know $he's here.</i>"
 <br>
 $He unboxes the new remote and turns $his back to you, eagerly demonstrating how you can use it to watch any show you want. This could be your chance to turn the tables on FCTV and get some special "customer support" of your own.
 <br><br>
@@ -151,7 +148,7 @@ You finger your new TV remote, as well as a second remote designed for... <i>oth
 		</div>
 	</div>
 <</if>>
-The door opens, and one of your citizens appears. $activeSlave.slaveName doesn't know it, but you've made a small change to $his calendar. $His new client has a <<if _customer.dick > 0>>legendarily large dick<<else>>legendary love of anal<</if>>, even for $arcologies[0].name. The tech loses their professional facade for a moment, glancing at the customer's <<if _customer.dick > 0>>enormous dick<<else>>hips<</if>> before gulping and gluing their eyes on the customer's face. "Hi, I'm $activeSlave.slaveName from FCTV, and I'm here to take a look at your receiver."
+The door opens, and one of your citizens appears. $activeSlave.slaveName doesn't know it, but you've made a small change to $his calendar. $His new client has a <<if _customer.dick > 0>>legendarily large dick<<else>>legendary love of anal<</if>>, even for $arcologies[0].name. The tech loses their professional façade for a moment, glancing at the customer's <<if _customer.dick > 0>>enormous dick<<else>>hips<</if>> before gulping and gluing their eyes on the customer's face. "Hi, I'm $activeSlave.slaveName from FCTV, and I'm here to take a look at your receiver."
 <br>
 "Certainly, it's in the bedroom on the bottom shelf." As the tech takes a step forward you touch the first button on your other remote. The tech freezes. You know from the work you did that they would be experiencing a puzzling throbbing or buzzing sensation at the moment. Their smart piercing was installed with a few blockers to pain, but their sense of touch should be very acute, even heightened with some local aphrodisiacs. There is also a vibe deep inside their ass, with a glue that will take some time to wear off. <<if $activeSlave.prostate>>Its buzzing should be impacting their prostrate directly, albeit subtley.<</if>>
 <br>
diff --git a/src/pregmod/seFCTVshows.tw b/src/pregmod/seFCTVshows.tw
index dd352779a515d38ac102935f62885a044998105a..b54effef23937e6a8558d373e7825ea77a4948ff 100644
--- a/src/pregmod/seFCTVshows.tw
+++ b/src/pregmod/seFCTVshows.tw
@@ -82,7 +82,7 @@
 		<<set _jules.hLength = 50>>
 		<<set _jules.hStyle = "luxurious">>
 		<<set _jules.hColor = "auburn">>
-		<<set _jules.boobshape = "perky">>
+		<<set _jules.boobShape = "perky">>
 		<<set _jules.clothes = "panties and pasties">>/*pasties alone don't have art at this time, apaprently */
 		<<set _jules.collar = "styligh leather">>
 	<</if>>
@@ -119,7 +119,7 @@
 			<<set _model.underArmHColor = "blazing red">>
 			<<set _model.height = 150>>
 			<<set _model.boobs = 700>>
-			<<set _model.boobshape = "perky">>
+			<<set _model.boobShape = "perky">>
 			<<set _model.shoulders = 0>>
 			<<set _model.waist = 180>>
 			<<set _model.butt = 3>>
@@ -188,7 +188,7 @@
 		<<set _model.skin = "tan">>
 		<<set _model.hStyle = "messy">>
 		<<set _model.hColor = "blonde">>
-		<<set _model.boobshape = "perky">>
+		<<set _model.boobShape = "perky">>
 		<div class="imageColumn">
 			<div class="imageRef medImg">
 				<<SlaveArt _model 2 0>>
@@ -564,7 +564,7 @@
 		<<set _model.hLength = 50>>
 		<<set _model.hStyle = "luxurious">>
 		<<set _model.hColor = "blonde">>
-		<<set _model.boobshape = "perky">>
+		<<set _model.boobShape = "perky">>
 		<<set _model.belly = 10000>>
 		<<set _model.preg = 35>>
 		<<set _model.clothes = "a maternity dress">>
@@ -718,7 +718,7 @@
 		<<set _model.hStyle = "neat">>
 		<<set _model.hColor = "brown">>
 		<<set _model.boobs = 700>>
-		<<set _model.boobshape = "perky">>
+		<<set _model.boobShape = "perky">>
 		<<set _model.waist = 180>>
 		<<set _model.butt = 3>>
 		<<set _model.hips = 3>>
@@ -796,7 +796,7 @@
 			<<set _model2.hStyle = "luxurious">>
 			<<set _model2.hColor = "blonde">>
 			<<set _model2.boobs = 700>>
-			<<set _model2.boobshape = "perky">>
+			<<set _model2.boobShape = "perky">>
 			<<set _model2.waist = 180>>
 			<<set _model2.butt = 3>>
 			<<set _model2.hips = 3>>
@@ -840,7 +840,7 @@
 			<<set _model.hStyle = "luxurious">>
 			<<set _model.hColor = "blonde">>
 			<<set _model.boobs = 700>>
-			<<set _model.boobshape = "perky">>
+			<<set _model.boobShape = "perky">>
 			<<set _model.waist = 180>>
 			<<set _model.butt = 3>>
 			<<set _model.hips = 3>>
@@ -914,7 +914,7 @@
 		<<set _mindy.hColor = "strawberry blonde">>
 		<<set _mindy.boobs = 1400>>
 		<<set _mindy.nipples = "huge">>
-		<<set _mindy.boobshape = "perky">>
+		<<set _mindy.boobShape = "perky">>
 		<<set _mindy.areolae = 4>>
 		<<set _mindy.waist = 180>>
 		<<set _mindy.butt = 3>>
@@ -1599,44 +1599,44 @@
 	/*<<if $showSixteen == 1>>*/
 
 	/* All actors are at least 18 */
-	<br>As you snuggle in for the night<<if $Concubine != 0>> with your concubine<</if>>, you <<if $FCTVremote == 1>>tune to<<else>>begin watching<</if>> the <i>Age of Slavery</i> channel.  With so many new types of archologies emerging, it's sometimes difficult to tell if you are watching events unfolding on a set or in a real archology with a historical society.
-	<br><br>“Well, you did well to win the ‘cleanest urchin’ contest.”
-	<br>Currently you seem to be watching a scene from the industrial revolution, in a smoke smudged brick courtyard by a factory.  A stout manager, dressed in a black suit, is leading a thin urchin toward a wooden building built out from the main factory.
-	<br>“Thank you, sir,” the urchin gulps.  “My mother really needs the money. You promised a shilling?”
-	<br>“And I really need to recover these bearings!” The stout man proclaims.  “I’m surprised you were so modest, though.  Someone with skin as pure as yours doesn’t need to be ashamed of it.”
-	<br>“Uh, I'm fair like my mother, sir.” The waif hugs their arms around their chest.
-	<br>“Well she must be helping keep you clean, boy!”  The man laughs, and flings open the door to the outbuilding, revealing a series of tanks about three times as tall as he is.
-	<br>“This one right here,” he taps the nearest, “is almost full of water.  However, the blasted mixer for the tank has fallen apart.”  There is enough light entering from the door to show a belt driven mixer hanging above the tank, with a missing plate and empty sockets. “The bearings are about an inch across, and fell right in the damn tank.  I can’t drain the tank without those bearings because they’re valuable, and I can’t foul the drain.  But I can’t seem to fish them out either, it’s too dark.  That’s why I needed someone clean, someone that won’t get their filth in my tank.  There’s a shilling if you can get me back all eight of my bearings in ten minutes.”
-	<br>“Just ten minutes sir?”
-	<br>“Time is money.  Now strip.”
+	<br>As you snuggle in for the night<<if $Concubine != 0>> with your concubine<</if>>, you <<if $FCTVremote == 1>>tune to<<else>>begin watching<</if>> the <i>Age of Slavery</i> channel. With so many new types of archologies emerging, it's sometimes difficult to tell if you are watching events unfolding on a set or in a real archology with a historical society.
+	<br><br>"Well, you did well to win the 'cleanest urchin' contest."
+	<br>Currently you seem to be watching a scene from the industrial revolution, in a smoke smudged brick courtyard by a factory. A stout manager, dressed in a black suit, is leading a thin urchin toward a wooden building built out from the main factory.
+	<br>"Thank you, sir," the urchin gulps. "My mother really needs the money. You promised a shilling?"
+	<br>"And I really need to recover these bearings!" The stout man proclaims. "I'm surprised you were so modest, though. Someone with skin as pure as yours doesn't need to be ashamed of it."
+	<br>"Uh, I'm fair like my mother, sir." The waif hugs their arms around their chest.
+	<br>"Well she must be helping keep you clean, boy!" The man laughs, and flings open the door to the outbuilding, revealing a series of tanks about three times as tall as he is.
+	<br>"This one right here," he taps the nearest, "is almost full of water. However, the blasted mixer for the tank has fallen apart." There is enough light entering from the door to show a belt driven mixer hanging above the tank, with a missing plate and empty sockets. "The bearings are about <<if $showInches == 2>>an inch<<else>>three centimeters<</if>> across, and fell right in the damn tank. I can't drain the tank without those bearings because they're valuable, and I can't foul the drain. But I can't seem to fish them out either, it's too dark. That's why I needed someone clean, someone that won't get their filth in my tank. There's a shilling if you can get me back all eight of my bearings in ten minutes."
+	<br>"Just ten minutes sir?"
+	<br>"Time is money. Now strip."
 	<br>The urchin hesitates.
-	<br>“Still shy?” the man leers.
-	<br>“I’ll do it.” The youth strips off his shirt and steps inside, shutting the door before dropping his trousers.
-	<br>“Hand me your clothes then, NOTHING IN MY TANK.” The man grumps.
-	<br>The camera cuts inside to show a dim black and white view of the youth’s nude silhouette scrambling up the tank, fumbling with the lid and slipping inside.  They pass up a series of bearings quickly for a while, but seem to struggle to find the final ones.
-	<br>“TIME!” Calls the man, holstering his pocket watch.
-	<br>“Sir, I can’t find the last two!”  The youth splutters.
-	<br>“Can you find the fucking holes!?!” the man roars.
-	<br>“E-eight…” the lad responds, crestfallen.
-	<br>“Then here’s the deal.  Let’s make it interesting.  I will double your wages.  Double them!  Two shillings! If you can find your own fucking asshole and shove the six you have in there, then find the last two.  Sloppy idiot.”
-	<br>The youth freezes.  “Sir?”
-	<br>“You heard me.  You’re not losing those; polish them!  I’m not even peeking, keep your precious privacy.”
-	<br>You can see the hesitation in the outline of the desperate youth, then a slump of the shoulders.  “Yes, sir.”
-	<br>Perched on top of the tank, they bend over with their hand on the mixer and begin inserting the bearings into their new housing.  They are each about an inch wide, and the first takes quite some time.
-	<br>“Hurry up, damn it!” the man roars.
-	<br>The urchin jumps, and then jumps again as the bearing slips home.  They freeze for a moment, trembling.  Then begin pushing in the others.
-	<br>“WELL?”
-	<br>“They’re in, sir,” he responds weakly, and slips into the tank.  The man harrumphs and starts examining his watch again.  After a few minutes have passed, the lad pops up with the seventh bearing, and then returns to the bottom.  They’re clearly holding their breath as long as they can.
-	<br><br>“TIME!” The man roars again.
-	<br>Spluttering, the youth surfaces.  “I-I… I can’t find it!” he cries desperately.  Splashing his way out of the tank and scrambling toward the door, he pauses to force down a sudden erection.  The man flings open the door, letting daylight stream in and briefly washing out the black and white camera.  His pants are also open and showing an erection raging as fiercely as he is.
-	<br>“Then you need some blasted motivation!  I’ll pack those bearings in myself!”
-	<br>The youth shrieks, and in a panic sprints around the tank.  The man follows closely, and then chases him out the door.  With no time to grab his clothing, the youth squirts out bearings as he runs, before making the relative safety of the street, still nude.  A camera from the street reveals an interesting surprise as the desperation on the fleeing youth’s face shifts to consternation.  Heads on the street turn, too, as he drops the last bearings and spurts white over coal black skin.  There was more than water in the tank: he’s dyed now as black as night from head to toe.
-	<br>Pointing and laughing uproariously, the man flips the eighth bearing into the air before pocketing it again and buttoning up his pants.  The camera pans out to show the factory’s name as “Titan’s Textiles.”
+	<br>"Still shy?" the man leers.
+	<br>"I'll do it." The youth strips off his shirt and steps inside, shutting the door before dropping his trousers.
+	<br>"Hand me your clothes then, NOTHING IN MY TANK." The man grumps.
+	<br>The camera cuts inside to show a dim black and white view of the youth's nude silhouette scrambling up the tank, fumbling with the lid and slipping inside. They pass up a series of bearings quickly for a while, but seem to struggle to find the final ones.
+	<br>"TIME!" Calls the man, holstering his pocket watch.
+	<br>"Sir, I can't find the last two!" The youth splutters.
+	<br>"Can you find the fucking holes!?!" the man roars.
+	<br>"E-eight..." the lad responds, crestfallen.
+	<br>"Then here's the deal. Let's make it interesting. I will double your wages. Double them! Two shillings! If you can find your own fucking asshole and shove the six you have in there, then find the last two. Sloppy idiot."
+	<br>The youth freezes. "Sir?"
+	<br>"You heard me. You're not losing those; polish them! I'm not even peeking, keep your precious privacy."
+	<br>You can see the hesitation in the outline of the desperate youth, then a slump of the shoulders. "Yes, sir."
+	<br>Perched on top of the tank, they bend over with their hand on the mixer and begin inserting the bearings into their new housing. They are each about an inch wide, and the first takes quite some time.
+	<br>"Hurry up, damn it!" the man roars.
+	<br>The urchin jumps, and then jumps again as the bearing slips home. They freeze for a moment, trembling. Then begin pushing in the others.
+	<br>"WELL?"
+	<br>"They're in, sir," he responds weakly, and slips into the tank. The man harrumphs and starts examining his watch again. After a few minutes have passed, the lad pops up with the seventh bearing, and then returns to the bottom. They're clearly holding their breath as long as they can.
+	<br><br>"TIME!" The man roars again.
+	<br>Spluttering, the youth surfaces. "I-I... I can't find it!" he cries desperately. Splashing his way out of the tank and scrambling toward the door, he pauses to force down a sudden erection. The man flings open the door, letting daylight stream in and briefly washing out the black and white camera. His pants are also open and showing an erection raging as fiercely as he is.
+	<br>"Then you need some blasted motivation! I'll pack those bearings in myself!"
+	<br>The youth shrieks, and in a panic sprints around the tank. The man follows closely, and then chases him out the door. With no time to grab his clothing, the youth squirts out bearings as he runs, before making the relative safety of the street, still nude. A camera from the street reveals an interesting surprise as the desperation on the fleeing youth's face shifts to consternation. Heads on the street turn, too, as he drops the last bearings and spurts white over coal black skin. There was more than water in the tank: he's dyed now as black as night from head to toe.
+	<br>Pointing and laughing uproariously, the man flips the eighth bearing into the air before pocketing it again and buttoning up his pants. The camera pans out to show the factory's name as "Titan's Textiles."
 	<<if $Concubine != 0 && canTalk($Concubine)>>
 		<<run Enunciate($Concubine)>>
-		<br><br>“Mmm, I could u<<s>>e a little <<s>>omething like that in<<s>>ide MY butt,” $Concubine.slaveName whispers in your ear. You mention you have something better in mind, and pounce.
+		<br><br>"Mmm, I could u<<s>>e a little <<s>>omething like that in<<s>>ide MY butt," $Concubine.slaveName whispers in your ear. You mention you have something better in mind, and pounce.
 	<</if>>
 
 <<default>>
-	It seems there's a technical error preventing you from streaming, you tell $assistantName to look into it.
+	It seems there's a technical error preventing you from streaming; you tell $assistantName to look into it.
 <</switch>>
diff --git a/src/pregmod/sePlayerBirth.tw b/src/pregmod/sePlayerBirth.tw
index 8566fe8a580d600252ce810266d6d0c29d013fa6..2933a04f8c7c6bc3dedd39d9c11c1e340a7bb991 100644
--- a/src/pregmod/sePlayerBirth.tw
+++ b/src/pregmod/sePlayerBirth.tw
@@ -17,7 +17,6 @@ PC.pregSource documentation
 -9 - Futanari Sister
 */
 
-
 <<if $PC.births == 0>>
 	<<set _badBirth = 30+($PC.pregType*4)>>
 <<else>>
@@ -96,7 +95,7 @@ While sitting at your desk planning your day, @@.lime;your water breaks,@@ thoro
 <<if $masterSuite != 0 && $masterSuiteUpgradePregnancy == 1>>
 	$masterSuiteName, since you had it redesigned to accommodate pregnant slaves. You should be able to give birth in both luxury and privacy there.
 <<elseif $clinic != 0>>
-	$clinicName, everything you'll need to give birth can be found there. Though you don't know how much privacy you'll be able to get there.
+	$clinicName; everything you'll need to give birth can be found there. Although you don't know how much privacy you'll be able to get there.
 <<elseif $masterSuite != 0>>
 	$masterSuiteName, since you'd like to be as comfortable as possible for the upcoming birth. You should be able to give birth in relative privacy there.
 <<else>>
@@ -158,8 +157,7 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 	<<elseif $Bodyguard != 0>>
 		<<setLocalPronouns $Bodyguard>>
 		You keep pushing and pushing, but your child is not coming out.<<if _concubinePresent == 1>> $Concubine.slaveName shifts to massaging your gravid middle<<if canTalk($Concubine)>>, while whispering words of encouragement into your ear<</if>>. _He2 begins to worry as _his2 lover weakens in front of _him2. $Bodyguard.slaveName quickly pulls _him2 away from you, fearing the worst.<</if>> $Bodyguard.slaveName read about this possibility and tries everything $he can to coax your child out. As time passes, $he notices your consciousness begin to fade as exhaustion kicks in. Fearing for your lives, and desperate to save you, $he draws $his sword from its sheath, hands unsteady from what $he is about to do. Carefully, $he slits your lower abdomen, allowing your baby-<<if $PC.pregType < 3>>filled<<elseif $PC.pregType < 5>>stuffed<<elseif $PC.pregType > 8>>packed<<else>>bursting<</if>> womb to pop out through the incision. Doing $his best, $he cuts open your uterus, pulls your child<<if $PC.pregType > 1>>ren<</if>> from you and severs the umbilical cord<<if $PC.pregType > 1>>s all at once<</if>>.
-		<br>
-		<br>
+		<br><br>
 		You awake some time later in the remote surgery, your stomach extremely sore; you quickly realize you're no longer round with child. As you try to rise, $Bodyguard.slaveName stops you; $he hefts you into a bridal carry and takes you to a recovery room, before gently placing you into a warm bed, tucking you in, and hurrying out of the room. Before you can call out, $he returns carrying
 		<<switch _curBabies>>
 		<<case 1>>
@@ -188,8 +186,7 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 		<<else>>
 			$HeadGirl.slaveName notices your distress and carries you to the remote surgery<<if $PC.pregType == 8>>, a daunting task given your extreme gravidity<</if>>.
 		<</if>>
-		<br>
-		<br>
+		<br><br>
 		You awake some time later in a recovery room<<if _concubinePresent > 0>>, $Concubine.slaveName beside you<</if>>, your stomach extremely sore; a quick glance at the prominent scar tells you everything you need to know. Seeing you're awake, $HeadGirl.slaveName catches your attention. In $his arms
 		<<switch _curBabies>>
 		<<case 1>>
@@ -212,8 +209,7 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 		alive and well.
 	<<elseif _concubinePresent == 1>>
 		You keep pushing and pushing, but your child is not coming out. <<if canWalk($Concubine)>>In a panic, $Concubine.slaveName carries you to the remote surgery<<else>>The last thing you remember as you fade is $Concubine.slaveName's look of panic<</if>>.
-		<br>
-		<br>
+		<br><br>
 		You awake some time later in a recovery room, your stomach extremely sore; a quick glance at the prominent scar tells you everything you need to know. A content sigh comes from beside you; $Concubine.slaveName is snuggled next to you, snoozing with
 		<<switch _curBabies>>
 		<<case 1>>
diff --git a/src/pregmod/surrogacyWorkaround.tw b/src/pregmod/surrogacyWorkaround.tw
index eefc4047a44b3312b55be964797939ccbb3294dc..f1e78efd4dfea878be871f2fd5b355d4c80fdccd 100644
--- a/src/pregmod/surrogacyWorkaround.tw
+++ b/src/pregmod/surrogacyWorkaround.tw
@@ -25,13 +25,13 @@ __Semen donatrix: _impreg __
 
 <br>
 <<for _sw = 0; _sw < $slaves.length; _sw++>>
-<<capture _sw>>
-	<<if $slaves[_sw].balls > 0 && $slaves[_sw].pubertyXY == 1 && isSlaveAvailable($slaves[_sw]) && canBreed($donatrix, $slaves[_sw])>>
-		<<set _name = SlaveFullName($slaves[_sw])>>
-		<br>[[_name|Surrogacy Workaround][$impregnatrix = $slaves[_sw]]]
-		<<set _eligibility = 1>>
-	<</if>>
-<</capture>>
+	<<capture _sw>>
+		<<if $slaves[_sw].balls > 0 && $slaves[_sw].pubertyXY == 1 && isSlaveAvailable($slaves[_sw]) && canBreed($donatrix, $slaves[_sw])>>
+			<<set _name = SlaveFullName($slaves[_sw])>>
+			<br>[[_name|Surrogacy Workaround][$impregnatrix = $slaves[_sw]]]
+			<<set _eligibility = 1>>
+		<</if>>
+	<</capture>>
 <</for>>
 <<if (_eligibility == 0)>>
 	<br>//You have no slaves with potent sperm.//
@@ -44,13 +44,13 @@ __Semen donatrix: _impreg __
 
 	<br>
 	<<for _sw3 = 0; _sw3 < $tanks.length; _sw3++>>
-	<<capture _sw3>>
-		<<if $tanks[_sw3].balls > 0 && $tanks[_sw3].dick > 0 && canBreed($donatrix, $tanks[_sw3])>>
-			<<set _name3 = $tanks[_sw3].slaveName>>
-			[[_name3|Surrogacy Workaround][$impregnatrix = $tanks[_sw3]]]
-			<<set _eligibilityI = 1>>
-		<</if>>
-	<</capture>>
+		<<capture _sw3>>
+			<<if $tanks[_sw3].balls > 0 && $tanks[_sw3].dick > 0 && canBreed($donatrix, $tanks[_sw3])>>
+				<<set _name3 = $tanks[_sw3].slaveName>>
+				[[_name3|Surrogacy Workaround][$impregnatrix = $tanks[_sw3]]]
+				<<set _eligibilityI = 1>>
+			<</if>>
+		<</capture>>
 	<</for>>
 	<<if (_eligibilityI == 0)>>
 		<br>//You have no growing slaves producing sperm.//
@@ -69,13 +69,13 @@ __Chosen surrogate: _receive __
 <br>
 
 <<for _sw1 = 0; _sw1 < $slaves.length; _sw1++>>
-<<capture _sw1>>
-	<<if ($slaves[_sw1].ovaries > 0 || $slaves[_sw1].mpreg > 0) && isSlaveAvailable($slaves[_sw1]) && $slaves[_sw1].preg >= 0 && $slaves[_sw1].preg < 4 && $slaves[_sw1].pregWeek >= 0 && $slaves[_sw1].pubertyXX == 1 && $slaves[_sw1].pregType < 12 && $slaves[_sw1].bellyImplant == -1 && $slaves[_sw1].broodmother == 0 && $slaves[_sw1].inflation <= 2 && $slaves[_sw1].physicalAge < 70>>
-		<<set _name2 = SlaveFullName($slaves[_sw1])>>
-		<br>[[_name2|Surrogacy Workaround][$receptrix = $slaves[_sw1]]] <<if $slaves[_sw1].pregType >= 4>>//Using a slave carrying multiples is unadvisable//<</if>>
-		<<set _eligibility2 = 1>>
-	<</if>>
-<</capture>>
+	<<capture _sw1>>
+		<<if ($slaves[_sw1].ovaries > 0 || $slaves[_sw1].mpreg > 0) && isSlaveAvailable($slaves[_sw1]) && $slaves[_sw1].preg >= 0 && $slaves[_sw1].preg < 4 && $slaves[_sw1].pregWeek >= 0 && $slaves[_sw1].pubertyXX == 1 && $slaves[_sw1].pregType < 12 && $slaves[_sw1].bellyImplant == -1 && $slaves[_sw1].broodmother == 0 && $slaves[_sw1].inflation <= 2 && $slaves[_sw1].physicalAge < 70>>
+			<<set _name2 = SlaveFullName($slaves[_sw1])>>
+			<br>[[_name2|Surrogacy Workaround][$receptrix = $slaves[_sw1]]] <<if $slaves[_sw1].pregType >= 4>>//Using a slave carrying multiples is unadvisable//<</if>>
+			<<set _eligibility2 = 1>>
+		<</if>>
+	<</capture>>
 <</for>>
 <<if (_eligibility2 == 0)>>
 	<br>//You have no slaves capable of acting as a surrogate.//
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index 2fe2b72df3881cc8211cb8ab165bb14e3340ec6d..5bc5ad339abb59aefcfc6de6c2c2bf8e8d1f4000 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -1123,7 +1123,7 @@
 	<<set $drugUpgradeInjectionTwo = "unselected">>
 <</if>>
 
-<<= SFBC()>>
+<<= App.SF.BC()>>
 
 <<if ndef $useSlaveSummaryTabs>>
 	<<set $useSlaveSummaryTabs = 0>>
diff --git a/src/uncategorized/RECI.tw b/src/uncategorized/RECI.tw
index 2709cac39894099a754d65efacea9212e52387e8..8ab240d39b8b4e2165fc64d44a4c9ff9218fbf5b 100644
--- a/src/uncategorized/RECI.tw
+++ b/src/uncategorized/RECI.tw
@@ -44,7 +44,7 @@
 <<set _clothesTemp = $activeSlave.clothes>>
 <<switch $RECIevent>>
 	/*Some events start with the slave naked (any event that starts with the daily inspection, for example). Here we switch their clothing just for the image to load, then switch it back quickly so the player's choice is not messed up.*/
-	<<case "butthole" "futa" "orientation" "MILF" "feminization" "ugly">>
+	<<case "butthole" "feminization" "futa" "MILF" "orientation" "ugly">>
 		<<set $activeSlave.clothes = "no clothing">>
 <</switch>>
 <span id="artFrame">
@@ -288,100 +288,100 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <<case "butthole">>
 
 <<if $HeadGirl != 0>>
-<<if ($activeSlave.ID != $HeadGirl.ID)>>
-<<link "Double anal with the Head Girl">>
-	<<setLocalPronouns $HeadGirl 2>>
-	<<EventNameDelink $activeSlave>>
-
-	<<set _clothesTemp2 = $HeadGirl.clothes, $HeadGirl.clothes = "no clothing">>
-	<<replace "#artFrame">>
-	/* 000-250-006 */
-	<<if $seeImages == 1>>
-		<div class="imageColumn">
-			<div class="imageRef medImg">
-				<<SlaveArt $activeSlave 2 0>>
-			</div>
-			<div class="imageRef medImg">
-				<<SlaveArt $HeadGirl 2 0>>
-			</div>
-		</div>
-	<</if>>
-	/* 000-250-006 */
-	<</replace>>
-	<<set $HeadGirl.clothes = _clothesTemp2>>
-
-	<<replace "#result">>
-	You tell $him $he's got a nice asspussy, and grope $him thoroughly, cupping $his buttocks with one hand and squeezing a breast with the other. $activeSlave.slaveName looks <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>desperately eager<<else>>ready and willing<</if>>, and angles $himself just right, but you administer a light slap to $his $activeSlave.skin ass and continue, telling $him that it's so nice you feel like sharing it. $He's <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>so ready to fuck $he can't quite think of what to say<<else>>not quite sure how to respond<</if>>, and before $he can figure it out, $HeadGirl.slaveName hurries in, responding to your summons. Of course, $activeSlave.slaveName is no stranger to $HeadGirl.slaveName, who takes in the situation at a glance and <<if canAchieveErection($HeadGirl)>>instantly achieves a painfully hard erection<<else>>immediately flushes with arousal<</if>>. $HeadGirl.slaveName<<if !canPenetrate($HeadGirl)>> dons a strap-on and<</if>> clambers up onto the (strongly built) bathroom counter. Since saliva is plenty of lube for $activeSlave.slaveName's experienced ass, _he2 points a meaningful finger at <<if !canPenetrate($HeadGirl)>>the phallus<<else>>_his2 cock<</if>>, and $activeSlave.slaveName begins to suck it enthusiastically, trying to get it as wet as possible for the sake of $his butt.
-	<br><br>
-	Since $activeSlave.slaveName is being so good, you decide to help get $him ready, and push $him sideways so $he straddles the counter's edge. $He whimpers into the <<if !canPenetrate($HeadGirl)>>dildo<<else>>dick<</if>> in $his mouth as $he feels $his <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.chastityPenis == 1)>>chastity cage<<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dickclit<<else>>hard cock<</if>><<else>>mons<</if>> graze the hard counter, and then stiffens as you penetrate $his bottom. When you judge that your Head Girl is wet enough, you nod to _him2, and _he2 takes $activeSlave.slaveName by the hand, pulling $him up onto _his2 lap.
-	<<if ($HeadGirl.boobs > 4000) && ($activeSlave.boobs > 4000)>>
-		Their tits are so huge that they can't reach each other to kiss, chest-to-chest like that. $HeadGirl.slaveName settles for blowing the other slave an exaggerated kiss, which makes $him laugh.
-	<<else>>
-		The slaves start making out, showing no signs of breaking their lip lock as they arrange themselves for penetration.
+	<<if ($activeSlave.ID != $HeadGirl.ID)>>
+		<<link "Double anal with the Head Girl">>
+			<<setLocalPronouns $HeadGirl 2>>
+			<<EventNameDelink $activeSlave>>
+
+			<<set _clothesTemp2 = $HeadGirl.clothes, $HeadGirl.clothes = "no clothing">>
+			<<replace "#artFrame">>
+			/* 000-250-006 */
+			<<if $seeImages == 1>>
+				<div class="imageColumn">
+					<div class="imageRef medImg">
+						<<SlaveArt $activeSlave 2 0>>
+					</div>
+					<div class="imageRef medImg">
+						<<SlaveArt $HeadGirl 2 0>>
+					</div>
+				</div>
+			<</if>>
+			/* 000-250-006 */
+			<</replace>>
+			<<set $HeadGirl.clothes = _clothesTemp2>>
+
+			<<replace "#result">>
+			You tell $him $he's got a nice asspussy, and grope $him thoroughly, cupping $his buttocks with one hand and squeezing a breast with the other. $activeSlave.slaveName looks <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>desperately eager<<else>>ready and willing<</if>>, and angles $himself just right, but you administer a light slap to $his $activeSlave.skin ass and continue, telling $him that it's so nice you feel like sharing it. $He's <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>so ready to fuck $he can't quite think of what to say<<else>>not quite sure how to respond<</if>>, and before $he can figure it out, $HeadGirl.slaveName hurries in, responding to your summons. Of course, $activeSlave.slaveName is no stranger to $HeadGirl.slaveName, who takes in the situation at a glance and <<if canAchieveErection($HeadGirl)>>instantly achieves a painfully hard erection<<else>>immediately flushes with arousal<</if>>. $HeadGirl.slaveName<<if !canPenetrate($HeadGirl)>> dons a strap-on and<</if>> clambers up onto the (strongly built) bathroom counter. Since saliva is plenty of lube for $activeSlave.slaveName's experienced ass, _he2 points a meaningful finger at <<if !canPenetrate($HeadGirl)>>the phallus<<else>>_his2 cock<</if>>, and $activeSlave.slaveName begins to suck it enthusiastically, trying to get it as wet as possible for the sake of $his butt.
+			<br><br>
+			Since $activeSlave.slaveName is being so good, you decide to help get $him ready, and push $him sideways so $he straddles the counter's edge. $He whimpers into the <<if !canPenetrate($HeadGirl)>>dildo<<else>>dick<</if>> in $his mouth as $he feels $his <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.chastityPenis == 1)>>chastity cage<<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dickclit<<else>>hard cock<</if>><<else>>mons<</if>> graze the hard counter, and then stiffens as you penetrate $his bottom. When you judge that your Head Girl is wet enough, you nod to _him2, and _he2 takes $activeSlave.slaveName by the hand, pulling $him up onto _his2 lap.
+			<<if ($HeadGirl.boobs > 4000) && ($activeSlave.boobs > 4000)>>
+				Their tits are so huge that they can't reach each other to kiss, chest-to-chest like that. $HeadGirl.slaveName settles for blowing the other slave an exaggerated kiss, which makes $him laugh.
+			<<else>>
+				The slaves start making out, showing no signs of breaking their lip lock as they arrange themselves for penetration.
+			<</if>>
+			$HeadGirl.slaveName guides _his2 <<if !canPenetrate($HeadGirl)>>strap-on<<else>>cock<</if>> inside the <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>enthusiastic<<else>>compliant<</if>> $activeSlave.slaveName, who begins to ride it, enjoying both the <<if $activeSlave.dick > 0>>prostate<<else>>anal<</if>> stimulation and the feeling of $his <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.chastityPenis == 1)>>midsection trapped between $him and <<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dick trapped between $him and <<else>>erection trapped between $him and <</if>><<else>>pussy pressed against<</if>> $HeadGirl.slaveName. $HeadGirl.slaveName smacks the humping <<if $activeSlave.physicalAge > 30>>$woman<<else>>$girl<</if>>'s butt to get $him to stop, and slides an index finger up $his ass alongside the <<if !canPenetrate($HeadGirl)>>phallus<<else>>cock<</if>>. $activeSlave.slaveName shudders, and then begins to whine as $HeadGirl.slaveName pulls $his sphincter wider.
+			<br><br>
+			"Plea<<s>>e," the slave begs incoherently as you press your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> against $HeadGirl.slaveName's finger. It's not clear whether $he's begging you to DP $his anus, or begging you not to, but whichever it is, $HeadGirl.slaveName withdraws _his2 finger and you shove yourself inside. $activeSlave.slaveName jerks with discomfort and gives a gasping "Oh f-fuck-k" that <<if $activeSlave.anus > 2>>$he repeats over and over<<else>>is followed by some minor struggling<</if>> as you begin to fuck $him. From _his2 angle, $HeadGirl.slaveName can't pound $activeSlave.slaveName quite as hard as you can, but _he2 does _his2 best. When you've both had your fun, extracted yourselves, and let the exhausted, gaped bitch collapse onto the floor, $HeadGirl.slaveName gives you a naughty wink.
+			<<run Enunciate($HeadGirl)>>
+			"@@.hotpink;That wa<<s>> fun,@@ <<Master>>!" _he2 <<say>>s. "<<Sh>>all we flip $him over and go again?"
+			<<run Enunciate($activeSlave)>>
+			"@@.hotpink;Plea<<s>>e nooo,@@" comes a quiet wail from the floor.
+			<<set $activeSlave.devotion += 2, $activeSlave.counter.anal += 1, $activeSlave.counter.oral += 1>>
+			<<set $analTotal += 1, $oralTotal += 1>>
+			<<set $HeadGirl.devotion += 2, $HeadGirl.counter.penetrative += 1>>
+			<<set $penetrativeTotal += 1>>
+			<<set $slaves[$slaveIndices[$HeadGirl.ID]] = $HeadGirl>>
+			<</replace>>
+		<</link>>
 	<</if>>
-	$HeadGirl.slaveName guides _his2 <<if !canPenetrate($HeadGirl)>>strap-on<<else>>cock<</if>> inside the <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>enthusiastic<<else>>compliant<</if>> $activeSlave.slaveName, who begins to ride it, enjoying both the <<if $activeSlave.dick > 0>>prostate<<else>>anal<</if>> stimulation and the feeling of $his <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.chastityPenis == 1)>>midsection trapped between $him and <<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dick trapped between $him and <<else>>erection trapped between $him and <</if>><<else>>pussy pressed against<</if>> $HeadGirl.slaveName. $HeadGirl.slaveName smacks the humping <<if $activeSlave.physicalAge > 30>>$woman<<else>>$girl<</if>>'s butt to get $him to stop, and slides an index finger up $his ass alongside the <<if !canPenetrate($HeadGirl)>>phallus<<else>>cock<</if>>. $activeSlave.slaveName shudders, and then begins to whine as $HeadGirl.slaveName pulls $his sphincter wider.
-	<br><br>
-	"Plea<<s>>e," the slave begs incoherently as you press your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> against $HeadGirl.slaveName's finger. It's not clear whether $he's begging you to DP $his anus, or begging you not to, but whichever it is, $HeadGirl.slaveName withdraws _his2 finger and you shove yourself inside. $activeSlave.slaveName jerks with discomfort and gives a gasping "Oh f-fuck-k" that <<if $activeSlave.anus > 2>>$he repeats over and over<<else>>is followed by some minor struggling<</if>> as you begin to fuck $him. From _his2 angle, $HeadGirl.slaveName can't pound $activeSlave.slaveName quite as hard as you can, but _he2 does _his2 best. When you've both had your fun, extracted yourselves, and let the exhausted, gaped bitch collapse onto the floor, $HeadGirl.slaveName gives you a naughty wink.
-	<<run Enunciate($HeadGirl)>>
-	"@@.hotpink;That wa<<s>> fun,@@ <<Master>>!" _he2 <<say>>s. "<<Sh>>all we flip $him over and go again?"
-	<<run Enunciate($activeSlave)>>
-	"@@.hotpink;Plea<<s>>e nooo,@@" comes a quiet wail from the floor.
-	<<set $activeSlave.devotion += 2, $activeSlave.counter.anal += 1, $activeSlave.counter.oral += 1>>
-	<<set $analTotal += 1, $oralTotal += 1>>
-	<<set $HeadGirl.devotion += 2, $HeadGirl.counter.penetrative += 1>>
-	<<set $penetrativeTotal += 1>>
-	<<set $slaves[$slaveIndices[$HeadGirl.ID]] = $HeadGirl>>
-	<</replace>>
-<</link>>
-<</if>>
 <</if>>
 <<if $Concubine != 0>>
-<<if ($activeSlave.ID != $Concubine.ID)>>
-<br><<link "Double anal with your Concubine">>
-	<<setLocalPronouns $Concubine 2>>
-	<<EventNameDelink $activeSlave>>
-
-	<<set _clothesTemp2 = $Concubine.clothes, $Concubine.clothes = "no clothing">>
-	<<replace "#artFrame">>
-	/* 000-250-006 */
-	<<if $seeImages == 1>>
-		<div class="imageColumn">
-			<div class="imageRef medImg">
-				<<SlaveArt $activeSlave 2 0>>
-			</div>
-			<div class="imageRef medImg">
-				<<SlaveArt $Concubine 2 0>>
-			</div>
-		</div>
-	<</if>>
-	/* 000-250-006 */
-	<</replace>>
-	<<set $Concubine.clothes = _clothesTemp2>>
-
-	<<replace "#result">>
-	You tell $him $he's got a nice asspussy, and grope $him thoroughly, cupping $his buttocks with one hand and squeezing a breast with the other. $He looks <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>desperately eager<<else>>ready and willing<</if>>, and angles $himself just right, but you administer a light slap to $his $activeSlave.skin ass and continue, telling $him that it's so nice you feel like sharing it. $He's <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>so ready to fuck $he can't quite think of what to say<<else>>not quite sure how to respond<</if>>, and before $he can figure it out, $Concubine.slaveName hurries in, responding to your summons. Of course, $activeSlave.slaveName is no stranger to $Concubine.slaveName, who takes in the situation at a glance and <<if canAchieveErection($Concubine)>>instantly achieves a painfully hard erection<<else>>immediately flushes with arousal<</if>>. $Concubine.slaveName<<if !canPenetrate($Concubine)>> dons a strap-on and<</if>> clambers up onto the (strongly built) bathroom counter. Since saliva is plenty of lube for $activeSlave.slaveName's experienced ass, _he2 points a meaningful finger at <<if !canPenetrate($Concubine)>>the phallus<<else>>_his2 cock<</if>>, and $activeSlave.slaveName begins to suck it enthusiastically, trying to get it as wet as possible for the sake of $his butt.
-	<br><br>
-	Since $activeSlave.slaveName is being so good, you decide to help get $him ready, and push $him sideways so $he straddles the counter's edge. $He whimpers into the <<if !canPenetrate($Concubine)>>dildo<<else>>dick<</if>> in $his mouth as $he feels $his <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.chastityPenis == 1)>>chastity cage<<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dickclit<<else>>hard cock<</if>><<else>>mons<</if>> graze the hard counter, and then stiffens as you penetrate $his bottom. When you judge that your Concubine is wet enough, you nod to _him2, and _he2 takes $activeSlave.slaveName by the hand, pulling $him up onto _his2 lap.
-	<<if ($Concubine.boobs > 4000) && ($activeSlave.boobs > 4000)>>
-		Their tits are so huge that they can't reach each other to kiss, chest-to-chest like that. $Concubine.slaveName settles for blowing the other slave an exaggerated kiss, which makes $him laugh.
-	<<else>>
-		The slaves start making out, showing no signs of breaking their lip lock as they arrange themselves for penetration.
+	<<if ($activeSlave.ID != $Concubine.ID)>>
+		<br><<link "Double anal with your Concubine">>
+			<<setLocalPronouns $Concubine 2>>
+			<<EventNameDelink $activeSlave>>
+
+			<<set _clothesTemp2 = $Concubine.clothes, $Concubine.clothes = "no clothing">>
+			<<replace "#artFrame">>
+			/* 000-250-006 */
+			<<if $seeImages == 1>>
+				<div class="imageColumn">
+					<div class="imageRef medImg">
+						<<SlaveArt $activeSlave 2 0>>
+					</div>
+					<div class="imageRef medImg">
+						<<SlaveArt $Concubine 2 0>>
+					</div>
+				</div>
+			<</if>>
+			/* 000-250-006 */
+			<</replace>>
+			<<set $Concubine.clothes = _clothesTemp2>>
+
+			<<replace "#result">>
+			You tell $him $he's got a nice asspussy, and grope $him thoroughly, cupping $his buttocks with one hand and squeezing a breast with the other. $He looks <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>desperately eager<<else>>ready and willing<</if>>, and angles $himself just right, but you administer a light slap to $his $activeSlave.skin ass and continue, telling $him that it's so nice you feel like sharing it. $He's <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>so ready to fuck $he can't quite think of what to say<<else>>not quite sure how to respond<</if>>, and before $he can figure it out, $Concubine.slaveName hurries in, responding to your summons. Of course, $activeSlave.slaveName is no stranger to $Concubine.slaveName, who takes in the situation at a glance and <<if canAchieveErection($Concubine)>>instantly achieves a painfully hard erection<<else>>immediately flushes with arousal<</if>>. $Concubine.slaveName<<if !canPenetrate($Concubine)>> dons a strap-on and<</if>> clambers up onto the (strongly built) bathroom counter. Since saliva is plenty of lube for $activeSlave.slaveName's experienced ass, _he2 points a meaningful finger at <<if !canPenetrate($Concubine)>>the phallus<<else>>_his2 cock<</if>>, and $activeSlave.slaveName begins to suck it enthusiastically, trying to get it as wet as possible for the sake of $his butt.
+			<br><br>
+			Since $activeSlave.slaveName is being so good, you decide to help get $him ready, and push $him sideways so $he straddles the counter's edge. $He whimpers into the <<if !canPenetrate($Concubine)>>dildo<<else>>dick<</if>> in $his mouth as $he feels $his <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.chastityPenis == 1)>>chastity cage<<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dickclit<<else>>hard cock<</if>><<else>>mons<</if>> graze the hard counter, and then stiffens as you penetrate $his bottom. When you judge that your Concubine is wet enough, you nod to _him2, and _he2 takes $activeSlave.slaveName by the hand, pulling $him up onto _his2 lap.
+			<<if ($Concubine.boobs > 4000) && ($activeSlave.boobs > 4000)>>
+				Their tits are so huge that they can't reach each other to kiss, chest-to-chest like that. $Concubine.slaveName settles for blowing the other slave an exaggerated kiss, which makes $him laugh.
+			<<else>>
+				The slaves start making out, showing no signs of breaking their lip lock as they arrange themselves for penetration.
+			<</if>>
+			$Concubine.slaveName guides _his2 <<if !canPenetrate($Concubine)>>strap-on<<else>>cock<</if>> inside the <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>enthusiastic<<else>>compliant<</if>> $activeSlave.slaveName, who begins to ride it, enjoying both the <<if $activeSlave.prostate > 0>>prostate<<else>>anal<</if>> stimulation and the feeling of $his <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.chastityPenis == 1)>>midsection trapped between $him and <<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dick trapped between $him and <<else>>erection trapped between $him and <</if>><<else>>pussy pressed against<</if>> $Concubine.slaveName. $Concubine.slaveName smacks the humping <<if $activeSlave.physicalAge > 30>>$woman<<else>>$girl<</if>>'s butt to get $him to stop, and slides an index finger up $his ass alongside the <<if !canPenetrate($Concubine)>>phallus<<else>>cock<</if>>. $activeSlave.slaveName shudders, and then begins to whine as $Concubine.slaveName pulls $his sphincter wider.
+			<br><br>
+			"Plea<<s>>e," the slave begs incoherently as you press your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> against $Concubine.slaveName's finger. It's not clear whether $he's begging you to DP $his anus, or begging you not to, but whichever it is, $Concubine.slaveName withdraws _his2 finger and you shove yourself inside. $activeSlave.slaveName jerks with discomfort and gives a gasping "Oh f-fuck-k" that <<if $activeSlave.anus > 2>>$he repeats over and over<<else>>is followed by some minor struggling<</if>> as you begin to fuck $him. From _his2 angle, $Concubine.slaveName can't pound $activeSlave.slaveName quite as hard as you can, but _he2 does _his2 best. When you've both had your fun, extracted yourselves, and let the exhausted, gaped bitch collapse onto the floor, $Concubine.slaveName gives you a naughty wink.
+			<<run Enunciate($Concubine)>>
+			"@@.hotpink;That wa<<s>> fun,@@ <<Master>>!" _he2 <<say>>s. "<<Sh>>all we flip $him over and go again?"
+			<<run Enunciate($activeSlave)>>
+			"@@.hotpink;Plea<<s>>e nooo,@@" comes a quiet wail from the floor.
+			<<set $activeSlave.devotion += 2, $activeSlave.counter.anal += 1, $activeSlave.counter.oral += 1>>
+			<<set $analTotal += 1, $oralTotal += 1>>
+			<<set $Concubine.devotion += 2, $Concubine.counter.penetrative += 1>>
+			<<set $penetrativeTotal += 1>>
+			<<set $slaves[$slaveIndices[$Concubine.ID]] = $Concubine>>
+			<</replace>>
+		<</link>>
 	<</if>>
-	$Concubine.slaveName guides _his2 <<if !canPenetrate($Concubine)>>strap-on<<else>>cock<</if>> inside the <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>enthusiastic<<else>>compliant<</if>> $activeSlave.slaveName, who begins to ride it, enjoying both the <<if $activeSlave.prostate > 0>>prostate<<else>>anal<</if>> stimulation and the feeling of $his <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.chastityPenis == 1)>>midsection trapped between $him and <<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dick trapped between $him and <<else>>erection trapped between $him and <</if>><<else>>pussy pressed against<</if>> $Concubine.slaveName. $Concubine.slaveName smacks the humping <<if $activeSlave.physicalAge > 30>>$woman<<else>>$girl<</if>>'s butt to get $him to stop, and slides an index finger up $his ass alongside the <<if !canPenetrate($Concubine)>>phallus<<else>>cock<</if>>. $activeSlave.slaveName shudders, and then begins to whine as $Concubine.slaveName pulls $his sphincter wider.
-	<br><br>
-	"Plea<<s>>e," the slave begs incoherently as you press your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> against $Concubine.slaveName's finger. It's not clear whether $he's begging you to DP $his anus, or begging you not to, but whichever it is, $Concubine.slaveName withdraws _his2 finger and you shove yourself inside. $activeSlave.slaveName jerks with discomfort and gives a gasping "Oh f-fuck-k" that <<if $activeSlave.anus > 2>>$he repeats over and over<<else>>is followed by some minor struggling<</if>> as you begin to fuck $him. From _his2 angle, $Concubine.slaveName can't pound $activeSlave.slaveName quite as hard as you can, but _he2 does _his2 best. When you've both had your fun, extracted yourselves, and let the exhausted, gaped bitch collapse onto the floor, $Concubine.slaveName gives you a naughty wink.
-	<<run Enunciate($Concubine)>>
-	"@@.hotpink;That wa<<s>> fun,@@ <<Master>>!" _he2 <<say>>s. "<<Sh>>all we flip $him over and go again?"
-	<<run Enunciate($activeSlave)>>
-	"@@.hotpink;Plea<<s>>e nooo,@@" comes a quiet wail from the floor.
-	<<set $activeSlave.devotion += 2, $activeSlave.counter.anal += 1, $activeSlave.counter.oral += 1>>
-	<<set $analTotal += 1, $oralTotal += 1>>
-	<<set $Concubine.devotion += 2, $Concubine.counter.penetrative += 1>>
-	<<set $penetrativeTotal += 1>>
-	<<set $slaves[$slaveIndices[$Concubine.ID]] = $Concubine>>
-	<</replace>>
-<</link>>
-<</if>>
 <</if>>
 <br><<link "Chat about $his ass">>
 	<<EventNameDelink $activeSlave>>
@@ -410,7 +410,7 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <<link "Love $him back">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You swing your legs up onto your desk and jump up onto its smooth surface, $his eyes tracking the <<if $PC.boobs == 1>>way it makes your breasts move<<else>>powerful way your muscles move your body<</if>>. When you pat the tops of your <<if $PC.title == 1>>hard<<else>>soft<</if>> thighs meaningfully, $he giggles happily and skips forward to clamber up and sit on your lap. The bouncing and climbing creates quite a nice spectacle of jiggling tits and waving cock, and $he manages to get up on the desk in such a way that you get a solid eyeful of first $his wet pussy and then $his ready anus. $He settles $himself onto your lap with a coo, feeling the <<if $PC.dick == 1>>hardness of your erection <<if $PC.vagina == 1>>and the warmth further down<</if>><<else>>warmth of your arousal<</if>> against $his hermaphroditic genitalia. $He starts to grind $himself lasciviously against you, but stops when you seize $his face and kiss $him deeply. $He moans back into you, returning the kiss with intensity. <<if $activeSlave.boobs > 4000>>$His udders are so huge the two of you have to press your torsos hard together to make out, a delightful struggle that stimulates $his nipples quite a lot, to go by the way $he squeaks and giggles into your mouth.<<elseif $activeSlave.boobs > 2000>>$His bosom is are so big that making out face to face presses it quite hard between your torsos, which stimulates $his nipples quite a lot, to go by the way $he squeaks and giggles into your mouth.<<elseif $PC.boobs == 1>>You undress without breaking your lip lock, bringing your bare breasts against $hers in a warm, loving embrace.<<else>>You strip without breaking your lip lock, bringing your heavily muscled chest against $his soft breasts in a tender, loving embrace.<</if>> $His arousal builds rapidly and $he goes back to grinding, <<if $PC.dick == 1>>eventually getting $himself so hot that your dick slides into $him almost without either of you meaning to make it happen. $He climaxes with you shortly, cumming all over $his own breasts.<<else>>bringing you both to a shaking climax. $He cums all over $his own breasts, coating them in glistening ejaculate.<</if>> As $he relaxes back against the desk, $his panting making $his cum-glazed tits rise and fall, you reflect that you just lied by omission, letting a pretty girl maintain $his delusions and @@.hotpink;$his love for you.@@ Of all your sins, this is perhaps the smallest.
+	You swing your legs up onto your desk and jump up onto its smooth surface, $his eyes tracking the <<if $PC.boobs == 1>>way it makes your breasts move<<else>>powerful way your muscles move your body<</if>>. When you pat the tops of your <<if $PC.title == 1>>hard<<else>>soft<</if>> thighs meaningfully, $he giggles happily and skips forward to clamber up and sit on your lap. The bouncing and climbing creates quite a nice spectacle of jiggling tits and waving cock, and $he manages to get up on the desk in such a way that you get a solid eyeful of first $his wet pussy and then $his ready anus. $He settles $himself onto your lap with a coo, feeling the <<if $PC.dick == 1>>hardness of your erection <<if $PC.vagina == 1>>and the warmth further down<</if>><<else>>warmth of your arousal<</if>> against $his hermaphroditic genitalia. $He starts to grind $himself lasciviously against you, but stops when you seize $his face and kiss $him deeply. $He moans back into you, returning the kiss with intensity. <<if $activeSlave.boobs > 4000>>$His udders are so huge the two of you have to press your torsos hard together to make out, a delightful struggle that stimulates $his nipples quite a lot, to go by the way $he squeaks and giggles into your mouth.<<elseif $activeSlave.boobs > 2000>>$His bosom is are so big that making out face to face presses it quite hard between your torsos, which stimulates $his nipples quite a lot, to go by the way $he squeaks and giggles into your mouth.<<elseif $PC.boobs == 1>>You undress without breaking your lip lock, bringing your bare breasts against $hers in a warm, loving embrace.<<else>>You strip without breaking your lip lock, bringing your heavily muscled chest against $his soft breasts in a tender, loving embrace.<</if>> $His arousal builds rapidly and $he goes back to grinding, <<if $PC.dick == 1>>eventually getting $himself so hot that your dick slides into $him almost without either of you meaning to make it happen. $He climaxes with you shortly, cumming all over $his own breasts.<<else>>bringing you both to a shaking climax. $He cums all over $his own breasts, coating them in glistening ejaculate.<</if>> As $he relaxes back against the desk, $his panting making $his cum-glazed tits rise and fall, you reflect that you just lied by omission, letting a pretty $girl maintain $his delusions and @@.hotpink;$his love for you.@@ Of all your sins, this is perhaps the smallest.
 	<<set $activeSlave.devotion += 4>>
 	<<set $activeSlave.counter.vaginal += 1>>
 	<<set $vaginalTotal += 1>>
@@ -454,7 +454,7 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <br><<link "Send $him down to a gym to share that attraction around">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You bring up a schematic of the arcology and point out a public gym to $him; you hand $him a day pass, tell $him to go down there, and let $him know $he'll spend the rest of the day there. $He looks mystified, and when you do not elaborate further, $he asks, "What <<sh>>ould I do there, <<Master>>?" Anything $he wants, you tell $him. $He still looks somewhat puzzled, but $he heads down to the gym anyway. When $he gets there, $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>realizes that there is<</if>> a steady stream of well-muscled male citizens entering the showers, and gets it. $He waves cheerfully to the nearest camera, and blows you a kiss before heading into the locker room. This is the Free Cities, and there isn't much reaction to a naked girl entering a male-dominated gym. That is, until $he selects from among the sweaty gentlemen coming in from the weight room, sidles up to one, and says cheerfully, "Hi! Do you wanna fuck me?" He does, and @@.green;so do many of his friends.@@ So many, in fact, that having the showers right there becomes convenient for $him as the day goes on.
+	You bring up a schematic of the arcology and point out a public gym to $him; you hand $him a day pass, tell $him to go down there, and let $him know $he'll spend the rest of the day there. $He looks mystified, and when you do not elaborate further, $he asks, "What <<sh>>ould I do there, <<Master>>?" Anything $he wants, you tell $him. $He still looks somewhat puzzled, but $he heads down to the gym anyway. When $he gets there, $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>realizes that there is<</if>> a steady stream of well-muscled male citizens entering the showers, and gets it. $He waves cheerfully to the nearest camera, and blows you a kiss before heading into the locker room. This is the Free Cities, and there isn't much reaction to a naked $girl entering a male-dominated gym. That is, until $he selects from among the sweaty gentlemen coming in from the weight room, sidles up to one, and says cheerfully, "Hi! Do you wanna fuck me?" He does, and @@.green;so do many of his friends.@@ So many, in fact, that having the showers right there becomes convenient for $him as the day goes on.
 	<<run repX(1250, "event", $activeSlave)>>
 	<<set $activeSlave.counter.anal += 5>>
 	<<set $analTotal += 5>>
@@ -597,7 +597,7 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 	<<set $activeSlave.clothes = _clothesTemp>>
 
 	<<replace "#result">>
-	You tell $him to head down to the wardrobe and put on the outfit that'll be laid out for $him there. $He obeys promptly, but does not return for some time, having gotten instructions from $assistantName along the way to put extra effort into $his grooming. When $he finally returns, the effect is striking. <<if $activeSlave.face > 10>>$He's a gorgeous girl with or without makeup, dressed up or naked, but $he's especially luscious tonight.<<else>>$His face is not flawless, but $he's conscious of $his transformation, and the new confidence in $his beauty adds a special glow that cannot be faked.<</if>> $His evening dress is elegant; it's quite slutty by old world standards, but according to Free Cities fashion, it's just about the most conservative gown a slave can be expected to wear, and quite daring in that it isn't immediately obvious whether $he's a slave or not. The tops of $his areolae are hardly even visible.<br><br>
+	You tell $him to head down to the wardrobe and put on the outfit that'll be laid out for $him there. $He obeys promptly, but does not return for some time, having gotten instructions from $assistantName along the way to put extra effort into $his grooming. When $he finally returns, the effect is striking. <<if $activeSlave.face > 10>>$He's a gorgeous $girl with or without makeup, dressed up or naked, but $he's especially luscious tonight.<<else>>$His face is not flawless, but $he's conscious of $his transformation, and the new confidence in $his beauty adds a special glow that cannot be faked.<</if>> $His evening dress is elegant; it's quite slutty by old world standards, but according to Free Cities fashion, it's just about the most conservative gown a slave can be expected to wear, and quite daring in that it isn't immediately obvious whether $he's a slave or not. The tops of $his areolae are hardly even visible.<br><br>
 	You take $him out to a nice lounge, with blue-toned light and soft music. $He clings to your arm, pressing $himself against you just the right amount: not enough to demand sex right now, but enough to raise the anticipation of it later. $He's a slave, so $he does not eat or drink the usual fare on offer, but the establishment is used to slaves and offers flavorful variation on liquid slave food. $He drinks the translucent fluid out of a tall glass, carefully maintaining $his poise. You circulate, leaving $him at the bar when acquaintances appear. $He perches on a stool, conscious of and pleased by the discreet admiration of $his body, delectably outlined by the tight dress. Once a new arrival who did not see you with $him introduces himself to $him. He's tall and fit and silver-haired, but he picked $him out of the room to approach, and it's with polite disappointment that he reacts to $his indication of you, across the room: "I'm <<s>>orry, <<S>>ir, that'<<s>> my <<Master>> there." He offers a nonverbal apology without coming over, which you accept with a wave: it's such a common mistake in Free Cities high society that it's universally brushed off without offense. It happens again later in the night, when a slightly tipsy free woman occupies the barstool next to $activeSlave.slaveName's and keeps trying to relax against $him until the flattered slave explains $himself again. When you bring $him home at the end of the night, $his eyes are shining with @@.mediumaquamarine;private assurance,@@ and $he presses $himself against you more closely than ever.
 	<<set $activeSlave.counter.anal += 1>>
 	<<set $analTotal += 1>>
diff --git a/src/uncategorized/REFI.tw b/src/uncategorized/REFI.tw
index e3ddfac49b678cca682df725cfaabbdffecbf839..6fa941ed2bab5ef52157c84513316a3003764644 100644
--- a/src/uncategorized/REFI.tw
+++ b/src/uncategorized/REFI.tw
@@ -532,7 +532,7 @@ a troubled look on $his face.
 <<else>>
 	<<if $activeSlave.nipples != "fuckable">>$his nipples are hard and <</if>>there is a clear scent of lust around $him.
 <</if>>
-It seems $he passed by while $subSlave.slaveName was dominating the other <<if $seeDicks > 0>>slaveboy<<else>>slavegirl<</if>> and found the sight rather compelling. It should be possible to either encourage this fascination with domination or steer $him away from it for now.
+It seems $he passed by while $subSlave.slaveName was dominating the other slave<<= _girlU>> and found the sight rather compelling. It should be possible to either encourage this fascination with domination or steer $him away from it for now.
 
 <<case "submissive">>
 
@@ -693,7 +693,7 @@ It seems $he passed by while you were buttfucking $subSlave.slaveName and found
 <<else>>
 	<<if $activeSlave.nipples != "fuckable">>$his nipples are hard and <</if>>there is a clear scent of lust around $him.
 <</if>>
-It seems $he passed by while $subSlave.slaveName was <<if $PC.dick > 0>>in the midst of _his2 little oral party<<else>>blowing you<</if>>. $He swallows painfully at the <<if canSee($activeSlave)>>sight of the satisfied cumslut swirling the ejaculate around _his2 mouth<<elseif canHear($activeSlave)>>sound of the satisfied cumslut savoring the fresh load<<else>>reminder of the taste and texture of the cum<</if>>. It should be possible to either encourage this fascination or steer $him away from it for now.
+It seems $he passed by while $subSlave.slaveName was <<if $PC.dick == 0>>in the midst of _his2 little oral party<<else>>blowing you<</if>>. $He swallows painfully at the <<if canSee($activeSlave)>>sight of the satisfied cumslut swirling the ejaculate around _his2 mouth<<elseif canHear($activeSlave)>>sound of the satisfied cumslut savoring the fresh load<<else>>reminder of the taste and texture of the cum<</if>>. It should be possible to either encourage this fascination or steer $him away from it for now.
 
 <<case "humiliation">>
 
@@ -1205,7 +1205,7 @@ There was a glint of envy <<if canSee($activeSlave)>>in $his eyes when $he saw<<
 		<<elseif $PC.belly >= 5000>>
 			baby bump
 		<</if>>
-		before informing $him that <<if $PC.pregType > 1>>they've<<else>>your child's<</if>> been so active lately. You continue fondling your pregnancy, watching $his progressively redden until $his frames a response:
+		before informing $him that <<if $PC.pregType > 1>>they've<<else>>your child's<</if>> been so active lately. You continue fondling your pregnancy, watching $his face progressively redden until $he frames a response:
 		<<if $activeSlave.amp == 1 && !canTalk($activeSlave)>>
 			<<if canPenetrate($activeSlave)>>
 				$he wriggles around until $his throbbing erection is pointed right at you.
@@ -1217,7 +1217,7 @@ There was a glint of envy <<if canSee($activeSlave)>>in $his eyes when $he saw<<
 		<<else>>
 			"You're <<s>>o hot, <<Master>>!"
 		<</if>>
-		You tell $him that getting to spend time with your gravid swell is a very special reward for very good slaves, and if $he keeps being a good girl you'll make sure $he gets the chance to lavish attention on it. With that, you pull $him in and hug $him to your stomach, sending $him over the edge.
+		You tell $him that getting to spend time with your gravid swell is a very special reward for very good slaves, and if $he keeps being a good $girl you'll make sure $he gets the chance to lavish attention on it. With that, you pull $him in and hug $him to your stomach, sending $him over the edge.
 		@@.hotpink;$He has become more devoted to you,@@ and @@.lightcoral;$he has developed a pregnancy fetish.@@
 		<<set $activeSlave.devotion += 4>>
 		<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
@@ -1331,7 +1331,7 @@ There was a glint of envy <<if canSee($activeSlave)>>in $his eyes when $he saw<<
 		<</replace>>
 	<</link>>
 <</if>>
-<<if canPenetrate($activeSlave) && (($PC.preg >= 28 && $PC.pregMood == 2) || $PC.preg >= 36) && $activeSlave.belly < 5000 && $activeSlave.amp != 1>>
+<<if canPenetrate($activeSlave) && (($PC.preg >= 28 && $PC.pregMood == 2) || $PC.preg >= 36) && $activeSlave.belly < 5000>>
 	<br><<link "Sate your libido by giving $him a taste of lusty pregnant sex">>
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
@@ -1744,7 +1744,7 @@ There was a glint of envy <<if canSee($activeSlave)>>in $his eyes when $he saw<<
 <<link "Turn $him into a cumslut too">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Focusing a slave's sexuality on cum isn't as easy as some other manipulations, for the simple reason that even you have a limited supply of the stuff and it would be a shame to waste it all on $him. So, you take another approach; you instruct $activeSlave.slaveName to accompany $subSlave.slaveName, and vice versa, whenever their duties permit. They're to act as sexual partners, and share cum whenever there's any forthcoming. They spend the week giving blowjobs whenever they can, and making out to swap the cum back and forth afterward. If someone insists on penetrating them instead, that just means that the other has to suck it out of them before they can share it. Most importantly, $activeSlave.slaveName is punished if $he ever orgasms without cum in $his mouth. Soon, $he gets aroused by the mere scent of the stuff. @@.hotpink;$He has become more submissive to you,@@ and @@.lightcoral;$his sexuality now focuses on cum.@@
+	Focusing a slave's sexuality on cum isn't as easy as some other manipulations, for the simple reason that even you have a limited supply of the stuff and it would be a shame to waste it all on $him. So, you take another approach; you instruct $activeSlave.slaveName to accompany $subSlave.slaveName, and vice versa, whenever their duties permit. They're to act as sexual partners, and share cum whenever there's any forthcoming. They spend the week giving blowjobs whenever they can, and making out to swap the cum back and forth afterward. If someone insists on penetrating them instead, that just means that the other has to suck it out of them before they can share it. Most importantly, $activeSlave.slaveName is punished if $he ever orgasms without cum in $his mouth. Soon, $he gets aroused by the mere <<if canSmell($activeSlave)>>scent<<else>>thought<</if>> of the stuff. @@.hotpink;$He has become more submissive to you,@@ and @@.lightcoral;$his sexuality now focuses on cum.@@
 	<<set $activeSlave.devotion += 4>>
 	<<set $activeSlave.counter.oral += 50, $oralTotal += 50>>
 	<<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index cb6fdd3bba84e979101b75ffd4723e25c36ef53c..3c321de329441ecc74b13970de6d2406753428ef 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -63,8 +63,8 @@
 <<case "mean girls">>
 
 <</switch>>
-<<if $RESSevent == "mean girls">>
 
+<<if $RESSevent == "mean girls">>
 	<<set _newSlaves = []>>
 	<<for _ress = 0; _ress < 3; _ress++>>
 		<<set $oneTimeDisableDisability = 1>>
@@ -101,53 +101,52 @@
 		<<set _meanGirl.clothes = either("conservative clothing", "a mini dress", "sport shorts and a t-shirt", "a t-shirt and jeans")>>
 		<<set _newSlaves.push(_meanGirl)>>
 	<</for>>
-
 	<span id="artFrame">
-	/* 000-250-006 */
-	<<if $seeImages == 1>>
-	<div class="imageColumn">
-		<div class="imageRef medImg">
-			<<SlaveArt $activeSlave 2 0>>
-		</div>
-		<div class="imageRef medImg">
-			<<SlaveArt _newSlaves[0] 2 0>>
-		</div>
-		<div class="imageRef medImg">
-			<<SlaveArt _newSlaves[1] 2 0>>
-		</div>
-		<div class="imageRef medImg">
-			<<SlaveArt _newSlaves[2] 2 0>>
-		</div>
-	</div>
-	<</if>>
-	/* 000-250-006 */
+		/* 000-250-006 */
+		<<if $seeImages == 1>>
+			<div class="imageColumn">
+				<div class="imageRef medImg">
+					<<SlaveArt $activeSlave 2 0>>
+				</div>
+				<div class="imageRef medImg">
+					<<SlaveArt _newSlaves[0] 2 0>>
+				</div>
+				<div class="imageRef medImg">
+					<<SlaveArt _newSlaves[1] 2 0>>
+				</div>
+				<div class="imageRef medImg">
+					<<SlaveArt _newSlaves[2] 2 0>>
+				</div>
+			</div>
+		<</if>>
+		/* 000-250-006 */
 	</span>
 <<elseif $RESSevent == "PA flirting">>
 	<span id="artFrame">
-	/* 000-250-006 */
-	<<if $seeImages == 1>>
-		<div class="imageColumn">
-			<div class="imageRef medImg">
-				<<SlaveArt $activeSlave 2 0>>
-			</div>
-			<div class="imageRef medImg">
-				<<= assistantArt(2)>>
+		/* 000-250-006 */
+		<<if $seeImages == 1>>
+			<div class="imageColumn">
+				<div class="imageRef medImg">
+					<<SlaveArt $activeSlave 2 0>>
+				</div>
+				<div class="imageRef medImg">
+					<<= assistantArt(2)>>
+				</div>
 			</div>
-		</div>
-	<</if>>
-	/* 000-250-006 */
+		<</if>>
+		/* 000-250-006 */
 	</span>
 <<else>>
 	<span id="artFrame">
-	/* 000-250-006 */
-	<<if $seeImages == 1>>
-		<<if $imageChoice == 1>>
-			<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
-		<<else>>
-			<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+		/* 000-250-006 */
+		<<if $seeImages == 1>>
+			<<if $imageChoice == 1>>
+				<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+			<<else>>
+				<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+			<</if>>
 		<</if>>
-	<</if>>
-	/* 000-250-006 */
+		/* 000-250-006 */
 	</span>
 <</if>>
 <<set $activeSlave.clothes = _clothesTemp>>
@@ -277,7 +276,6 @@ $He is fully erect and dripping precum: $he is going to breed you!
 <<default>>
 	<<if canTalk($activeSlave)>>I feel like I wa<<s>>n't thi<<s>> <<s>>oft la<<s>>t week..." $He <</if>>pinches $his belly, clearly grabbing hold of more of $himself than $he wants to.
 <</switch>>
-
 The $desc is
 <<if $activeSlave.diet == "fattening">>
 	purposefully being fattened up, so it really shouldn't come as a surprise to $him.
@@ -946,7 +944,7 @@ You have a lot of work to do with <<EventNameLink>>. $He compounds the usual reb
 
 An escape attempt occurs and is stopped almost before you are informed of it. <<EventNameLink>> made a rash attempt to leave the penthouse, but $assistantName monitors everyone constantly and was able to enclose $him before $he got very far. <<if $assistant == 0>>It reports impersonally that the would-be escapee is locked in the entryway awaiting your judgment.<<else>>$He reports suggestively that the would-be escapee is locked in the entryway awaiting your pleasure.<</if>>
 <br><br>
-<<if $arcologyUpgrade.drones == 1>>Your advanced security systems are able to stop $him promptly, and there is no indication to the public that any escape attempt was made.<<else>>Your basic security systems are only able to stop $him by briefly locking down your penthouse, exciting @@.red;some adverse public comment.@@<<run repX(-100, "event", $activeSlave)>><</if>>
+<<if $arcologyUpgrade.drones == 1>>Your advanced security systems are able to stop $him promptly, and there is no indication to the public that any escape attempt was made.<<else>>Your basic security systems are only able to stop $him by briefly locking down your penthouse, exciting @@.red;some adverse public comment.@@<<run repX(forceNeg(100), "event", $activeSlave)>><</if>>
 <<if $activeSlave.indentureRestrictions > 0>>
 	<br><br>
 	This behavior has violated $his indenture contract, allowing you to apply more severe punishments that might otherwise breach it.
@@ -2988,21 +2986,21 @@ Working in your office early in the morning, you can hear the low, human hum of
 <</if>>
 Your eyes move down $his body, noting
 <<if $activeSlave.bellyPreg >= 450000>>
-	$his _belly belly<<if $activeSlave.pregSource == -1>>, practically bursting with your children,<</if>> and how $he struggles to walk with it while keeping all the kicking from throwing $him off balance.
+	$his _belly belly<<if $activeSlave.pregSource == -1>>, practically bursting with your child<<if $activeSlave.pregType > 1>>ren<</if>>,<</if>> and how $he struggles to walk with it while keeping all the kicking from throwing $him off balance.
 <<elseif $activeSlave.belly >= 450000>>
 	$his _belly belly and how the struggles to walk with it without bumping things.
 <<elseif $activeSlave.bellyPreg >= 150000>>
-	$his _belly belly<<if $activeSlave.pregSource == -1>>, completely filled with your children,<</if>> and the slight movement within with each struggled step $he takes.
+	$his _belly belly<<if $activeSlave.pregSource == -1>>, completely filled with your child<<if $activeSlave.pregType > 1>>ren<</if>>,<</if>> and the slight movement within with each struggled step $he takes.
 <<elseif $activeSlave.belly >= 150000>>
 	$his _belly belly and the vastly altered gait $he steps with to handle it.
 <<elseif $activeSlave.bellyPreg >= 10000>>
-	$his full-term pregnant belly<<if $activeSlave.pregSource == -1>>, rounded with your child,<<else>>, which<</if>> adds a distinct awkwardness to $his gait.
+	$his full-term pregnant belly<<if $activeSlave.pregSource == -1>>, rounded with your child<<if $activeSlave.pregType > 1>>ren<</if>>,<<else>>, which<</if>> adds a distinct awkwardness to $his gait.
 <<elseif $activeSlave.bellyFluid >= 10000>>
 	$his straining <<print $activeSlave.inflationType>>-filled belly and how $he struggles to walk normally with it.
 <<elseif $activeSlave.bellyImplant >= 10000>>
 	$his full-term pregnancy-looking belly and how it adds a distinct awkwardness to $his gait.
 <<elseif $activeSlave.bellyPreg >= 5000>>
-	$his hugely pregnant belly<<if $activeSlave.pregSource == -1>>, rounded with your child,<<else>>, which<</if>> adds a certain unavoidable awkwardness to $his gait.
+	$his hugely pregnant belly<<if $activeSlave.pregSource == -1>>, rounded with your child<<if $activeSlave.pregType > 1>>ren<</if>>,<<else>>, which<</if>> adds a certain unavoidable awkwardness to $his gait.
 <<elseif $activeSlave.bellyFluid >= 5000>>
 	$his <<print $activeSlave.inflationType>>-filled belly and the delightful jiggle that runs through it with each step.
 <<elseif $activeSlave.bellyImplant >= 5000>>
@@ -3010,7 +3008,7 @@ Your eyes move down $his body, noting
 <<elseif $activeSlave.weight >= 95>>
 	$his big fat belly and how it sways and jiggles with each step.
 <<elseif $activeSlave.bellyPreg >= 1500>>
-	$his pregnant belly<<if $activeSlave.pregSource == -1>>, swollen with your child,<<else>>, which<</if>> isn't truly huge yet, but clearly advertises $his status as a breeding $desc.
+	$his pregnant belly<<if $activeSlave.pregSource == -1>>, swollen with your child<<if $activeSlave.pregType > 1>>ren<</if>>,<<else>>, which<</if>> isn't truly huge yet, but clearly advertises $his status as a breeding $desc.
 <<elseif $activeSlave.bellyFluid >= 2000>>
 	the slight bloat to $his belly caused by the liters of $activeSlave.inflationType held inside $him.
 <<elseif $activeSlave.bellyImplant >= 1500>>
@@ -3082,7 +3080,7 @@ Passing near the slave dormitory late at night, you hear a quiet cry within. Thi
 <<default>>
 	becoming attractively erect.
 <</switch>>
-Still dreaming, $he clasps $his arms protectively over $his <<if $activeSlave.pregKnown == 1>>unborn child<<else>>vulnerable chest<</if>>, and rolls to one side. Halfway into a fetal position, $he turns $his head against $his pillow, murmuring "N-no — plea<<s>>e no — I'll d-do anyth-thing — no..."
+Still dreaming, $he clasps $his arms protectively over $his <<if $activeSlave.pregKnown == 1>>unborn child<<if $activeSlave.pregType > 1>>ren<</if>><<else>>vulnerable chest<</if>>, and rolls to one side. Halfway into a fetal position, $he turns $his head against $his pillow, murmuring "N-no — plea<<s>>e no — I'll d-do anyth-thing — no..."
 
 <<case "cockfeeder resistance">>
 
@@ -3332,58 +3330,62 @@ $activeSlave.slaveName is doing $his job, standing in an area of the arcology th
 <</if>>
 and flirting with passersby. Or $he would be, if $he weren't surrounded by a hostile group of girls. They're very obviously inebriated, rich, vapid, and on vacation, and their rapid-fire bitchiness makes the cause clear.
 <br><br>
-"Why the fuck did you say that shit? We're not lesbians," says one.
+<<run Enunciate(_newSlaves[2])>>
+"Why the fuck did you <<s>>ay that <<sh>>it? We're not le<<s>>bian<<s>>," says one.
 <br><br>
-"You're fucking //gross//," says another. "Like, ew. Even if it's free, why the fuck would we let you touch us?"
+<<run Enunciate(_newSlaves[1])>>
+"You're fucking //gro<<ss>>//," says another. "Like, ew. Even if it'<<s>> free, why the fuck would we let you touch u<<s>>?"
 <br><br>
+<<run Enunciate(_newSlaves[0])>>
+<<setSpokenLocalPronouns $activeSlave _newSlaves[0]>>
 <<if $activeSlave.bellyPreg >= 750000>>
-	"Holy shit, $he's gonna blow! Bitch'll keep fucking till $his belly pops open and keep on fucking still,"
+	"Holy <<sh>>it, <<he>>'<<s>> gonna blow! Bitch'll keep fucking till <<his>> belly pop<<s>> open and keep on fucking <<s>>till,"
 <<elseif $activeSlave.belly >= 750000>>
-	"That belly is disgusting, what did $he do? Fuck an elephant?"
+	"That belly i<<s>> di<<s>>gu<<s>>ting, what did <<he>> do? Fuck an elephant?"
 <<elseif $activeSlave.boobs > 25000>>
-	"Those boobs are disgusting, look at $him struggle,"
+	"Tho<<s>>e boob<<s>> are di<<s>>gu<<s>>ting; look at $him <<s>>truggle,"
 <<elseif $activeSlave.bellyPreg >= 450000>>
-	"What a slut! I bet everyone in the arcology has a baby in $him,"
+	"What a <<s>>lut! I bet everyone in the arcology ha<<s>> a baby in $him,"
 <<elseif $activeSlave.belly >= 450000>>
-	"That belly is disgusting, what is that, a horse?"
+	"That belly i<<s>> di<<s>>gu<<s>>ting; what i<<s>> that, a hor<<s>>e?"
 <<elseif $activeSlave.weight > 190>>
-	"I've never seen someone //that// fat before. How can you live with yourself knowing you're such a whale?"
+	"I've never <<s>>een <<s>>omeone //that// fat before. How can you live with your<<s>>elf knowing you're such a whale?"
 <<elseif $activeSlave.butt > 10>>
-	"That ass is disgusting, look how fat it is,"
+	"That a<<ss>> i<<s>> di<<s>>gu<<s>>ting; look how fat it i<<s>>,"
 <<elseif $activeSlave.bellyFluid >= 5000>>
-	"Look at that belly! Wait, is it just me or is it wobbling? Holy shit! $He must have sucked down, like, gallons of cum,"
+	"Look at that belly! Wait, i<<s>> it ju<<s>>t me or i<<s>> it wobbling? Holy <<sh>>it! <<He>> mu<<s>>t have <<s>>ucked down, like, gallon<<s>> of cum,"
 <<elseif $activeSlave.clit >= 3>>
-	"Holy shit! That's no dick, it's some sort of freak clit,"
+	"Holy <<sh>>it! That'<<s>> no dick; it'<<s>> some <<s>>ort of freak clit,"
 <<elseif $activeSlave.boobs > 5000>>
-	"Those boobs are disgusting,"
+	"Tho<<s>>e boob<<s>> are di<<s>>gu<<s>>ting,"
 <<elseif $activeSlave.belly >= 150000>>
 	"Oh my god, I didn't know a $girl could get //that// pregnant,"
 <<elseif $activeSlave.dick > 6>>
-	"That dick is so disgusting,"
+	"That dick i<<s>> <<s>>o di<<s>>gu<<s>>ting,"
 <<elseif $activeSlave.weight > 130>>
-	"What a cow, how can you be so proud of being such a fat slob?"
+	"What a cow; how can you be <<s>>o proud of being <<s>>uch a fat <<s>>lob?"
 <<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>>
-	"$He looks retarded,"
+	"<<He>> look<<s>> retarded,"
 <<elseif $activeSlave.lips > 40>>
-	"Those lips make $him look like a cartoon,"
+	"Tho<<s>>e lip<<s>> make $him look like a cartoon,"
 <<elseif $activeSlave.belly >= 1500>>
-	"Look at that belly, bet $he doesn't even know whose it is,"
+	"Look at that belly; bet $he doe<<s>>n't even know who<<s>>e it i<<s>>,"
 <<elseif $activeSlave.dick > 3>>
-	"I bet $he never gets to stick that thing in anyone,"
+	"I bet <<he>> never get<<s>> to <<s>>tick that thing in anyone,"
 <<elseif $activeSlave.anus > 2>>
-	"Holy shit, I can see $his asshole from here,"
+	"Holy <<sh>>it, I can <<s>>ee <<his>> a<<ss>>hole from here,"
 <<elseif $activeSlave.dick > 0>>
-	"Oh, look, $he has a lame little dick,"
+	"Oh, look, <<he>> ha<<s>> a lame little dick,"
 <<elseif $activeSlave.visualAge > 30>>
-	"What an ugly old slut,"
+	"What an ugly old <<s>>lut,"
 <<elseif $activeSlave.weight > 30>>
-	"What a fat pig, showing off $his belly like that,"
+	"What a fat pig, <<sh>>owing off <<his>> belly like that,"
 <<elseif $activeSlave.face < 10>>
-	"What a fugly slut,"
+	"What a fugly <<s>>lut,"
 <<else>>
-	"What a dirty slut,"
+	"What a dirty <<s>>lut,"
 <</if>>
-says a third. "No wonder people won't pay to have sex with you. I bet your Master put you out here because he hates you."
+says a third. "No wonder people won't pay to have <<s>>e<<x>> with you. I bet your Ma<<s>>ter put you out here becau<<s>>e he hate<<s>> you."
 
 <<case "torpedo squeeze">>
 
@@ -3653,7 +3655,7 @@ Someone's a happy $desc today.
 Passing by the kitchen in the morning, you take a moment to listen to the low hum of your slaves chatting as they <<if $feeder != 0>>wait their turn at the phallic feeders<<else>>drink their breakfasts<</if>>. <<EventNameLink>> is nearest the door, and you overhear $his <<if $activeSlave.voice == 1>>low<<elseif $activeSlave.voice == 2>>pretty<<else>>high<</if>> voice clearly as $he expresses confusion to another slave. "I don't under<<s>>tand it," $he <<say>>s. "Why are <<s>>o many men intere<<s>>ted in an old <<s>>lave like me? I never got thi<<s>> much attention when I wa<<s>> free! Now <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>guy<<s>> line up to pay<<else>>every guy I approach want<<s>><</if>> to fuck me!"
 <br><br>
 <<if $arcologies[0].FSMaturityPreferentialist != "unset">>
-	"It's different here," the other slave explains. "Almost everyone here has a thing for older women. MILFs get all the attention."
+	"It's different here," the other slave explains. "Almost everyone here has a thing for older $women. MILFs get all the attention."
 <<elseif ($arcologies[0].FSGenderRadicalist != "unset") && ($activeSlave.dick > 0)>>
 	<<if $activeSlave.vagina > -1>>
 		"Well, you're a futa," the other slave explains. "A chick with a dick. Everyone here is going to want to fuck you, since you've got both."
@@ -4553,262 +4555,262 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 <<link "Explain $he's just becoming a woman">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him that $he is just undergoing $his first period, and that the pain $he is feeling is perfectly natural.
-	<<if !canTalk($activeSlave)>>
-		$He brings $his hands back to $his stomach, an elated look on $his face. $He makes a gesture resembling a rounded belly.
-	<<else>>
-		"I-I'm a woman now? <<Master>>, that m-mean<<s>>, I can get pregnant now." $He trails off.
-	<</if>>
-	Whether or not $he gets pregnant is for you to decide, but for now you tell $him what $he should expect to change, both in and to $his body. $activeSlave.slaveName @@.mediumaquamarine;appreciates@@ you taking the time to explain $his developing body.
-	<<set $activeSlave.trust += 5>>
+		You tell $him that $he is just undergoing $his first period, and that the pain $he is feeling is perfectly natural.
+		<<if !canTalk($activeSlave)>>
+			$He brings $his hands back to $his stomach, an elated look on $his face. $He makes a gesture resembling a rounded belly.
+		<<else>>
+			"I-I'm a woman now? <<Master>>, that m-mean<<s>>, I can get pregnant now." $He trails off.
+		<</if>>
+		Whether or not $he gets pregnant is for you to decide, but for now you tell $him what $he should expect to change, both in and to $his body. $activeSlave.slaveName @@.mediumaquamarine;appreciates@@ you taking the time to explain $his developing body.
+		<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
 <<if ($PC.dick == 1) && ($activeSlave.eggType == "human")>>
-<br><<link "Demonstrate what this means">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that $he is just becoming a woman, and to celebrate, you are going to put a child in $him.
-	<<if !canTalk($activeSlave)>>
-		$He gasps and rubs a hand across $his stomach.
-	<<else>>
-		"But I'm <<s>>till a child my<<s>>elf <<Master>>, I can't get pregnant yet!"
-	<</if>>
-	You tell $him that prior to this week, that would have been true. However, now that $he has become fertile, it's time that $he learned what $his body was made for. You guide $him to the couch and tell $him to lie on $his back so that you may take $him. $He breaks down when $he feels your cock enter $his
-	<<if $activeSlave.vagina == 0>>
-		delightfully tight, virgin
-	<<elseif $activeSlave.vagina == 1>>
-		deliciously tight
-	<<elseif $activeSlave.vagina == 2>>
-		well experienced
-	<<else>>
-		fucked-out
-	<</if>>
-	cunt. $His new urges cause $him to reach up to hug $himself close to you,
-	<<if ($activeSlave.boobs < 600)>>
-		$his modest breasts let $him snuggle close to you, face-to-face, as you take $him.
-	<<elseif ($activeSlave.boobs < 10000)>>
-		$his big tits form a soft cushion between you as you take $him.
-	<<else>>
-		$his massive tits stop $him from bringing $himself too close to you as you take $him.
-	<</if>>
-	$He enjoys $himself immensely, but $he loses it again when $he feels your seed in $him, realizing that $he will find $himself swelling with your child over the coming months. $He has become @@.hotpink;more submissive@@ to your will now that $his very first egg has been fertilized by $his <<= WrittenMaster()>>.
-	<<set $activeSlave.devotion += 5, $activeSlave.preg = 1, $activeSlave.pregWeek = 1, $activeSlave.pregKnown = 1, $activeSlave.pregSource = -1>>
-	<<set $activeSlave.pregType = setPregType($activeSlave)>>
-	<<set WombImpregnate($activeSlave, $activeSlave.pregType, -1, 1)>>
-	<<= VaginalVCheck()>>
-	<</replace>>
-<</link>><<if ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>>
+	<br><<link "Demonstrate what this means">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him that $he is just becoming a woman, and to celebrate, you are going to put a child in $him.
+			<<if !canTalk($activeSlave)>>
+				$He gasps and rubs a hand across $his stomach.
+			<<else>>
+				"But I'm <<s>>till a child my<<s>>elf, <<Master>>, I can't get pregnant yet!"
+			<</if>>
+			You tell $him that prior to this week, that would have been true. However, now that $he has become fertile, it's time that $he learned what $his body was made for. You guide $him to the couch and tell $him to lie on $his back so that you may take $him. $He breaks down when $he feels your cock enter $his
+			<<if $activeSlave.vagina == 0>>
+				delightfully tight, virgin
+			<<elseif $activeSlave.vagina == 1>>
+				deliciously tight
+			<<elseif $activeSlave.vagina == 2>>
+				well experienced
+			<<else>>
+				fucked-out
+			<</if>>
+			cunt. $His new urges cause $him to reach up to hug $himself close to you,
+			<<if ($activeSlave.boobs < 600)>>
+				$his modest breasts let $him snuggle close to you, face-to-face, as you take $him.
+			<<elseif ($activeSlave.boobs < 10000)>>
+				$his big tits form a soft cushion between you as you take $him.
+			<<else>>
+				$his massive tits stop $him from bringing $himself too close to you as you take $him.
+			<</if>>
+			$He enjoys $himself immensely, but $he loses it again when $he feels your seed in $him, realizing that $he will find $himself swelling with your child over the coming months. $He has become @@.hotpink;more submissive@@ to your will now that $his very first egg has been fertilized by $his <<= WrittenMaster()>>.
+			<<set $activeSlave.devotion += 5, $activeSlave.preg = 1, $activeSlave.pregWeek = 1, $activeSlave.pregKnown = 1, $activeSlave.pregSource = -1>>
+			<<set $activeSlave.pregType = setPregType($activeSlave)>>
+			<<set WombImpregnate($activeSlave, $activeSlave.pregType, -1, 1)>>
+			<<= VaginalVCheck()>>
+		<</replace>>
+	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
 <</if>>
 <br><<link "Tell $him $he'll just be taking it up the ass more">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	In one swift motion, you pull out a chastity belt and lock it onto $him. $He gasps as $he feels it hug close to $his pussy. You explain that $he has just become a woman, and thus, will be taking it up the ass until you decide it's time for $him to become pregnant.
-	<<if !canTalk($activeSlave)>>
-		$He rubs a hand across $his stomach.
-	<<else>>
-		"You don't want me to get pregnant <<Master>>?"
-	<</if>>
-	You bring $him over to the couch, set $him on your lap, and teasingly call $him a buttslut. Every so often you graze a finger around $his chastity belt, noting how much $his body wants you in $him, but you only make it the center of attention once the poor over-aroused slave
-	<<if !canTalk($activeSlave)>>
-		begins to use piteous gestures to beg you abjectly to penetrate $him.
-	<<else>>
-		<<say>>s, "I can't take it any more, <<Master>>! Plea<<s>>e fuck me pregnant!"
-	<</if>>
-	You snicker, but remind $him that no matter how much $he wants to be knocked up, $his belt will direct all the dicks $he takes into $his rear. You line up and insert your <<if ($PC.dick == 0)>>strap-on<<else>>cock<</if>> with $his ass and begin fucking $him, all the while reminding $him that $he will not be getting pregnant. When $he finally orgasms, <<if ($PC.dick == 0)>>$his unabashed enjoyment<<else>>the strength of $his spasming sphincter<</if>> sends you over as well. $He's left in a confused haze; $his body tells $him to get pregnant, but you tell $him to take it anally. $He @@.hotpink;sides with your decision@@ and vows to be an anal whore for you. <<if $activeSlave.fetish == "none">>@@.coral;Overcoming $his urges to become a mother via anal causes $him to become a buttslut.@@<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishStrength = 10>><</if>>
-	<<set $activeSlave.devotion += 5, $activeSlave.chastityVagina = 1>>
-	<<= AnalVCheck()>>
+		In one swift motion, you pull out a chastity belt and lock it onto $him. $He gasps as $he feels it hug close to $his pussy. You explain that $he has just become a woman, and thus, will be taking it up the ass until you decide it's time for $him to become pregnant.
+		<<if !canTalk($activeSlave)>>
+			$He rubs a hand across $his stomach.
+		<<else>>
+			"You don't want me to get pregnant, <<Master>>?"
+		<</if>>
+		You bring $him over to the couch, set $him on your lap, and teasingly call $him a buttslut. Every so often you graze a finger around $his chastity belt, noting how much $his body wants you in $him, but you only make it the center of attention once the poor over-aroused slave
+		<<if !canTalk($activeSlave)>>
+			begins to use piteous gestures to beg you abjectly to penetrate $him.
+		<<else>>
+			<<say>>s, "I can't take it any more, <<Master>>! Plea<<s>>e fuck me pregnant!"
+		<</if>>
+		You snicker, but remind $him that no matter how much $he wants to be knocked up, $his belt will direct all the dicks $he takes into $his rear. You line up and insert your <<if ($PC.dick == 0)>>strap-on<<else>>cock<</if>> with $his ass and begin fucking $him, all the while reminding $him that $he will not be getting pregnant. When $he finally orgasms, <<if ($PC.dick == 0)>>$his unabashed enjoyment<<else>>the strength of $his spasming sphincter<</if>> sends you over as well. $He's left in a confused haze; $his body tells $him to get pregnant, but you tell $him to take it anally. $He @@.hotpink;sides with your decision@@ and vows to be an anal whore for you. <<if $activeSlave.fetish == "none">>@@.coral;Overcoming $his urges to become a mother via anal causes $him to become a buttslut.@@<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishStrength = 10>><</if>>
+		<<set $activeSlave.devotion += 5, $activeSlave.chastityVagina = 1>>
+		<<= AnalVCheck()>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his virginity//<</if>>
 
 <<case "wet dreams">>
 
 <<link "Explain $he's just growing up">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him that $his body is preparing to be able to impregnate girls, and that what happens at night happens to all boys. Though as a slave, $he should consider $himself lucky to be allowed to keep $his male genitalia.
-	<<if !canTalk($activeSlave)>>
-		$He brings $his hands to $his growing erection, a bubble of precum forming on its tip. $He fondles $himself as $he ponders $his new potency.
-	<<else>>
-		"I-I can get girl<<s>> pregnant now? <<Master>>, that m-mean<<s>> I'll have to be more careful." $He trails off.
-	<</if>>
-	You tell $him to keep $his dick in check or risk losing it, before continuing to read off the other various changes that will occur in $him. $activeSlave.slaveName @@.mediumaquamarine;appreciates@@ you taking the time to explain $his developing body.
-	<<set $activeSlave.trust += 5>>
+		You tell $him that $his body is preparing to be able to impregnate girls, and that what happens at night happens to all boys. Though as a slave, $he should consider $himself lucky to be allowed to keep $his male genitalia.
+		<<if !canTalk($activeSlave)>>
+			$He brings $his hands to $his growing erection, a bubble of precum forming on its tip. $He fondles $himself as $he ponders $his new potency.
+		<<else>>
+			"I-I can get girl<<s>> pregnant now? <<Master>>, that m-mean<<s>> I'll have to be more careful." $He trails off.
+		<</if>>
+		You tell $him to keep $his dick in check or risk losing it, before continuing to read off the other various changes that will occur in $him. $activeSlave.slaveName @@.mediumaquamarine;appreciates@@ you taking the time to explain $his developing body.
+		<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
 <br><<link "Teach $him $his place">>
-<<if $PC.dick == 0>>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that $he is just becoming a potent $woman, and as such, $he will need to learn that you are the dominant force in $his life.
-	<<if !canTalk($activeSlave)>>
-		$His expression shifts to confusion.
-	<<else>>
-		"What doe<<s>> that mean <<Master>>?"
-	<</if>>
-	You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face up onto the couch. $He <<if canSee($activeSlave)>>watches you carefully<<elseif canHear($activeSlave)>>listens to your movements<<else>>waits with trepidation<</if>> as you size up $his fully erect
-	<<if $activeSlave.dick == 1>>
-		tiny dick.
-	<<elseif $activeSlave.dick == 2>>
-		cute dick.
-	<<elseif $activeSlave.dick == 3>>
-		dick.
-	<<elseif $activeSlave.dick == 4>>
-		big dick.
-	<<elseif $activeSlave.dick == 5>>
-		impressive dick.
-	<<elseif $activeSlave.dick == 6>>
-		huge dick.
-	<<elseif $activeSlave.dick == 7>>
-		gigantic dick
-	<<elseif $activeSlave.dick == 8>>
-		titanic dick
-	<<elseif $activeSlave.dick == 9>>
-		absurd dick
-	<<elseif $activeSlave.dick == 10>>
-		inhuman dick
-	<<else>>
-		hypertrophied dick
-	<</if>>
-	You push $him back down as you straddle $his
-	<<if $activeSlave.belly >= 1500>>
-		_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly
-	<<elseif $activeSlave.boobs > 2000>>
-		huge tits
-	<<else>>
-		chest
-	<</if>>
-	planting your moistening pussy over the $girl's face. You lean forward, teasing $his twitching cock, as you grind against $his face. As $he begins to moan with lust, you quickly bind the base of $his penis, denying $his release. You grind your cunt into $his face, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his place by soaking $his face in your cum do you release $his dick and lean back to avoid the coming blast. Just undoing the binding is enough to set $him over the edge, coating $his <<if $activeSlave.bellyPreg >= 1500>>pregnancy<<else>>belly<</if>> in $his virile sperm. You turn around and order the exhausted $girl to clean $himself up and go back to $his assignment; $he @@.hotpink;complies meekly,@@ understanding that having a potent penis is meaningless in $his position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral; Your dominating display has left $him craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>>
-	<<set $activeSlave.devotion += 5>>
-	<</replace>>
-<<else>>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that $he is just becoming a potent $woman, and as such, $he will need to learn that you are the dominant force in $his life.
-	<<if !canTalk($activeSlave)>>
-		$His expression shifts to confusion.
-	<<else>>
-		"What doe<<s>> that mean <<Master>>?"
-	<</if>>
-	You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face-down onto the couch<<if $activeSlave.belly >= 100000>> as best you can<</if>>. $He <<if canSee($activeSlave)>>watches you carefully<<else>>listens to your movements<</if>> as you size up $his fully erect
-	<<if $activeSlave.dick == 1>>
-		tiny dick.
-	<<elseif $activeSlave.dick == 2>>
-		cute dick.
-	<<elseif $activeSlave.dick == 3>>
-		dick.
-	<<elseif $activeSlave.dick == 4>>
-		big dick.
-	<<elseif $activeSlave.dick == 5>>
-		impressive dick.
-	<<elseif $activeSlave.dick == 6>>
-		huge dick.
-	<<elseif $activeSlave.dick == 7>>
-		gigantic dick
-	<<elseif $activeSlave.dick == 8>>
-		titanic dick
-	<<elseif $activeSlave.dick == 9>>
-		absurd dick
-	<<elseif $activeSlave.dick == 10>>
-		inhuman dick
-	<<else>>
-		hypertrophied dick
-	<</if>>
-	You push $his face into the cushions as you mount $his
-	<<if $activeSlave.butt > 6>>
-		ridiculous
-	<<elseif $activeSlave.butt > 5>>
-		gigantic
-	<<elseif $activeSlave.butt > 4>>
-		enormous
-	<<elseif $activeSlave.butt > 3>>
-		huge
-	<<elseif $activeSlave.butt > 2>>
-		big
-	<<elseif $activeSlave.butt > 1>>
-		plump
-	<<elseif $activeSlave.butt > 0>>
-		small
+	<<if $PC.dick == 0>>
+		<<EventNameDelink $activeSlave>>
+			<<replace "#result">>
+			You tell $him that $he is just becoming a potent $woman, and as such, $he will need to learn that you are the dominant force in $his life.
+			<<if !canTalk($activeSlave)>>
+				$His expression shifts to confusion.
+			<<else>>
+				"What doe<<s>> that mean, <<Master>>?"
+			<</if>>
+			You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face up onto the couch. $He <<if canSee($activeSlave)>>watches you carefully<<elseif canHear($activeSlave)>>listens to your movements<<else>>waits with trepidation<</if>> as you size up $his fully erect
+			<<if $activeSlave.dick == 1>>
+				tiny dick.
+			<<elseif $activeSlave.dick == 2>>
+				cute dick.
+			<<elseif $activeSlave.dick == 3>>
+				dick.
+			<<elseif $activeSlave.dick == 4>>
+				big dick.
+			<<elseif $activeSlave.dick == 5>>
+				impressive dick.
+			<<elseif $activeSlave.dick == 6>>
+				huge dick.
+			<<elseif $activeSlave.dick == 7>>
+				gigantic dick
+			<<elseif $activeSlave.dick == 8>>
+				titanic dick
+			<<elseif $activeSlave.dick == 9>>
+				absurd dick
+			<<elseif $activeSlave.dick == 10>>
+				inhuman dick
+			<<else>>
+				hypertrophied dick
+			<</if>>
+			You push $him back down as you straddle $his
+			<<if $activeSlave.belly >= 1500>>
+				_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly
+			<<elseif $activeSlave.boobs > 2000>>
+				huge tits
+			<<else>>
+				chest
+			<</if>>
+			planting your moistening pussy over the $girl's face. You lean forward, teasing $his twitching cock, as you grind against $his face. As $he begins to moan with lust, you quickly bind the base of $his penis, denying $his release. You grind your cunt into $his face, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his place by soaking $his face in your cum do you release $his dick and lean back to avoid the coming blast. Just undoing the binding is enough to set $him over the edge, coating $his <<if $activeSlave.bellyPreg >= 1500>>pregnancy<<else>>belly<</if>> in $his virile sperm. You turn around and order the exhausted $girl to clean $himself up and go back to $his assignment; $he @@.hotpink;complies meekly,@@ understanding that having a potent penis is meaningless in $his position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral; Your dominating display has left $him craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>>
+			<<set $activeSlave.devotion += 5>>
+		<</replace>>
 	<<else>>
-		flat
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him that $he is just becoming a potent $woman, and as such, $he will need to learn that you are the dominant force in $his life.
+			<<if !canTalk($activeSlave)>>
+				$His expression shifts to confusion.
+			<<else>>
+				"What doe<<s>> that mean, <<Master>>?"
+			<</if>>
+			You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face-down onto the couch<<if $activeSlave.belly >= 100000>> as best you can<</if>>. $He <<if canSee($activeSlave)>>watches you carefully<<else>>listens to your movements<</if>> as you size up $his fully erect
+			<<if $activeSlave.dick == 1>>
+				tiny dick.
+			<<elseif $activeSlave.dick == 2>>
+				cute dick.
+			<<elseif $activeSlave.dick == 3>>
+				dick.
+			<<elseif $activeSlave.dick == 4>>
+				big dick.
+			<<elseif $activeSlave.dick == 5>>
+				impressive dick.
+			<<elseif $activeSlave.dick == 6>>
+				huge dick.
+			<<elseif $activeSlave.dick == 7>>
+				gigantic dick
+			<<elseif $activeSlave.dick == 8>>
+				titanic dick
+			<<elseif $activeSlave.dick == 9>>
+				absurd dick
+			<<elseif $activeSlave.dick == 10>>
+				inhuman dick
+			<<else>>
+				hypertrophied dick
+			<</if>>
+			You push $his face into the cushions as you mount $his
+			<<if $activeSlave.butt > 6>>
+				ridiculous
+			<<elseif $activeSlave.butt > 5>>
+				gigantic
+			<<elseif $activeSlave.butt > 4>>
+				enormous
+			<<elseif $activeSlave.butt > 3>>
+				huge
+			<<elseif $activeSlave.butt > 2>>
+				big
+			<<elseif $activeSlave.butt > 1>>
+				plump
+			<<elseif $activeSlave.butt > 0>>
+				small
+			<<else>>
+				flat
+			<</if>>
+			butt, sinking your cock deep into $his <<if $activeSlave.anus == 0>>virgin<</if>> asspussy. You lean forward, running your hands across $his nipples<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> as you move to tease $his stiff prick. Between your dick in $his ass and your hand on $his cock, $he rapidly approaches $his peak. Quickly, you bind the base of $his penis, denying $his release and eliciting a long moan from the pent-up $girl. You begin thrusting hard, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his place by filling $his asspussy with your cum do you allow $his release. Just undoing the binding is enough to set $him over the edge, coating the cushions<<if $activeSlave.belly >= 5000>> and the bottom of $his _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> in $his virile sperm. You dismount and order the exhausted $girl to clean $himself and the couch up before going back to $his assignment; $he @@.hotpink;complies meekly,@@ understanding that having a potent penis is meaningless in $his position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral;Your dominating display has left $him craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>>
+			<<set $activeSlave.devotion += 5>>
+		<</replace>>
 	<</if>>
-	butt, sinking your cock deep into $his <<if $activeSlave.anus == 0>>virgin<</if>> asspussy. You lean forward, running your hands across $his nipples<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> as you move to tease $his stiff prick. Between your dick in $his ass and your hand on $his cock, $he rapidly approaches $his peak. Quickly, you bind the base of $his penis, denying $his release and eliciting a long moan from the pent-up $girl. You begin thrusting hard, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his place by filling $his asspussy with your cum do you allow $his release. Just undoing the binding is enough to set $him over the edge, coating the cushions<<if $activeSlave.belly >= 5000>> and the bottom of $his _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> in $his virile sperm. You dismount and order the exhausted $girl to clean $himself and the couch up before going back to $his assignment; $he @@.hotpink;complies meekly,@@ understanding that having a potent penis is meaningless in $his position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral;Your dominating display has left $him craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>>
-	<<set $activeSlave.devotion += 5>>
-	<</replace>>
-<</if>>
-<</link>><<if ($activeSlave.anus == 0) && ($PC.dick == 1)>> //This option will take anal virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0) && ($PC.dick == 1)>> //This option will take $his anal virginity//<</if>>
 <<if $PC.vagina == 1>>
-<br><<link "Let me teach you how to use it">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that $he is just becoming a potent $woman, and as such, $he will need to learn how to please $his partners.
-	<<if !canTalk($activeSlave)>>
-		$His expression shifts to confusion.
-	<<else>>
-		"What'<<s>> that mean, <<Master>>?"
-	<</if>>
-	You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face up onto the couch. $He <<if canSee($activeSlave)>>watches you carefully<<elseif canHear($activeSlave)>>listens to your movements<<else>>waits with trepidation<</if>> as you size up $his fully erect
-	<<if $activeSlave.dick == 1>>
-		tiny dick.
-	<<elseif $activeSlave.dick == 2>>
-		cute dick.
-	<<elseif $activeSlave.dick == 3>>
-		dick.
-	<<elseif $activeSlave.dick == 4>>
-		big dick.
-	<<elseif $activeSlave.dick == 5>>
-		impressive dick.
-	<<elseif $activeSlave.dick == 6>>
-		huge dick.
-	<<elseif $activeSlave.dick == 7>>
-		gigantic dick
-	<<elseif $activeSlave.dick == 8>>
-		titanic dick
-	<<elseif $activeSlave.dick == 9>>
-		absurd dick
-	<<elseif $activeSlave.dick == 10>>
-		inhuman dick
-	<<else>>
-		hypertrophied dick
-	<</if>>
-	You push $him back down as you straddle $his cock, lining it up before lowering <<if $PC.belly >= 1500>>your pregnant body until $he delightfully penetrates you<<else>>yourself onto $his needy prick<</if>>. You slowly ride $his dick, instructing $him the proper way to thrust into you and how to adequately support your weight. Once $he gets the hand of things, you dismount and lie down on the couch, legs spread, beckoning $him into you. $He gingerly inserts $his cock<<if $activeSlave.belly >= 100000>> while you do your best to manage $his _belly stomach<</if>> and begins thrusting, slowly at first, before getting the hang of things and speeding up<<if $PC.dick == 1>>, your own neglected dick bobbing along to $his thrusts<</if>>. As soon as you feel $his beginning to tense you <<if $PC.pregKnown == 1>>tell $him it's safe to cum in you, you're already pregnant<<else>>order $him to pull out<</if>>. The poor $girl is so caught up in $his lust, $he can't stop thrusting. Before you can rectify this, $he pushes you over the edge and gushes deep into you as you climax<<if $PC.dick == 1>> and spray your own cum <<if $PC.belly >= 5000 && $activeSlave.belly >= 5000>>into the cramped space between your swollen bodies<<elseif $activeSlave.belly >= 100000>>across your belly and the underside of $hers<<else>>across $his chest<</if>><</if>>. $He gingerly pulls $himself from you, apologizes @@.hotpink;meekly@@ for losing control, and snuggles up next to you. Cumming in $his <<= WrittenMaster()>>'s pussy as $his first time builds @@.mediumaquamarine;a special bond@@ with you.
-	<<if $PC.preg == 0 && $PC.pregWeek == 0>>
-		You aren't on contraceptives right now; $his first time may be more fruitful than $he realizes.
-	<</if>>
-	<<set $activeSlave.devotion += 10, $activeSlave.trust += 20, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-	<<if canImpreg($PC, $activeSlave)>>
-		<<= knockMeUp($PC, 60, 0, $activeSlave.ID)>>
-	<</if>>
-	<</replace>>
-<</link>>//This option will penetrate you//
+	<br><<link "Let me teach you how to use it">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him that $he is just becoming a potent $woman, and as such, $he will need to learn how to please $his partners.
+			<<if !canTalk($activeSlave)>>
+				$His expression shifts to confusion.
+			<<else>>
+				"What'<<s>> that mean, <<Master>>?"
+			<</if>>
+			You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face up onto the couch. $He <<if canSee($activeSlave)>>watches you carefully<<elseif canHear($activeSlave)>>listens to your movements<<else>>waits with trepidation<</if>> as you size up $his fully erect
+			<<if $activeSlave.dick == 1>>
+				tiny dick.
+			<<elseif $activeSlave.dick == 2>>
+				cute dick.
+			<<elseif $activeSlave.dick == 3>>
+				dick.
+			<<elseif $activeSlave.dick == 4>>
+				big dick.
+			<<elseif $activeSlave.dick == 5>>
+				impressive dick.
+			<<elseif $activeSlave.dick == 6>>
+				huge dick.
+			<<elseif $activeSlave.dick == 7>>
+				gigantic dick
+			<<elseif $activeSlave.dick == 8>>
+				titanic dick
+			<<elseif $activeSlave.dick == 9>>
+				absurd dick
+			<<elseif $activeSlave.dick == 10>>
+				inhuman dick
+			<<else>>
+				hypertrophied dick
+			<</if>>
+			You push $him back down as you straddle $his cock, lining it up before lowering <<if $PC.belly >= 1500>>your pregnant body until $he delightfully penetrates you<<else>>yourself onto $his needy prick<</if>>. You slowly ride $his dick, instructing $him the proper way to thrust into you and how to adequately support your weight. Once $he gets the hand of things, you dismount and lie down on the couch, legs spread, beckoning $him into you. $He gingerly inserts $his cock<<if $activeSlave.belly >= 100000>> while you do your best to manage $his _belly stomach<</if>> and begins thrusting, slowly at first, before getting the hang of things and speeding up<<if $PC.dick == 1>>, your own neglected dick bobbing along to $his thrusts<</if>>. As soon as you feel $his beginning to tense you <<if $PC.pregKnown == 1>>tell $him it's safe to cum in you, you're already pregnant<<else>>order $him to pull out<</if>>. The poor $girl is so caught up in $his lust, $he can't stop thrusting. Before you can rectify this, $he pushes you over the edge and gushes deep into you as you climax<<if $PC.dick == 1>> and spray your own cum <<if $PC.belly >= 5000 && $activeSlave.belly >= 5000>>into the cramped space between your swollen bodies<<elseif $activeSlave.belly >= 100000>>across your belly and the underside of $hers<<else>>across $his chest<</if>><</if>>. $He gingerly pulls $himself from you, apologizes @@.hotpink;meekly@@ for losing control, and snuggles up next to you. Cumming in $his <<= WrittenMaster()>>'s pussy as $his first time builds @@.mediumaquamarine;a special bond@@ with you.
+			<<if $PC.preg == 0 && $PC.pregWeek == 0>>
+				You aren't on contraceptives right now; $his first time may be more fruitful than $he realizes.
+			<</if>>
+			<<set $activeSlave.devotion += 10, $activeSlave.trust += 20, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+			<<if canImpreg($PC, $activeSlave)>>
+				<<= knockMeUp($PC, 60, 0, $activeSlave.ID)>>
+			<</if>>
+		<</replace>>
+	<</link>>//This option will penetrate you//
 <</if>>
 <br><<link "Tell $him it doesn't matter, $he won't be using it">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	In one swift motion, one pull out a chastity cage and lock it onto $him. $He gasps as $he feels it hug close to $his struggling erection. You explain that $he has just become potent, and thus, will be restricted until you feel differently.
-	<<if !canTalk($activeSlave)>>
-		$He rubs a hand across $his caged dick.
-	<<else>>
-		"You don't want me to u<<s>>e my peni<<s>>, <<Master>>?"
-	<</if>>
-	You bring $him over to the couch, set $him on your lap, and teasingly call $him a buttslut. Every so often you graze a finger around $his chastity cage, torturing $his dick and balls, but you only make it the center of attention once the poor over-aroused slave
-	<<if !canTalk($activeSlave)>>
-		begins to use piteous gestures to beg you abjectly to penetrate $him.
-	<<else>>
-		begs, "I can't take it any more, <<Master>>! Plea<<s>>e fuck me!"
-	<</if>>
-	You snicker, but remind $him that $he has no say in $his release. You line up and insert your <<if ($PC.dick == 0)>>strap-on<<else>>cock<</if>> up $his ass and begin slowly fucking $him, making sure to stimulate $his prostate. When $he finally orgasms <<if ($PC.dick == 0)>>$his unabashed enjoyment<<else>>the strength of $his spasming sphincter<</if>> sends you over as well. $He's left in a confused haze; $his body tells $him to fuck, but you tell $him to get fucked. $He @@.hotpink;sides with your decision@@ and vows to be the one taking dick for you. <<if $activeSlave.fetish == "none">>@@.coral;Overcoming $his urges to become a father via anal cause $him to become a buttslut.@@<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishStrength = 10>><</if>>
-	<<set $activeSlave.devotion += 5, $activeSlave.chastityPenis = 1>>
-	<<= AnalVCheck()>>
+		In one swift motion, one pull out a chastity cage and lock it onto $him. $He gasps as $he feels it hug close to $his struggling erection. You explain that $he has just become potent, and thus, will be restricted until you feel differently.
+		<<if !canTalk($activeSlave)>>
+			$He rubs a hand across $his caged dick.
+		<<else>>
+			"You don't want me to u<<s>>e my peni<<s>>, <<Master>>?"
+		<</if>>
+		You bring $him over to the couch, set $him on your lap, and teasingly call $him a buttslut. Every so often you graze a finger around $his chastity cage, torturing $his dick and balls, but you only make it the center of attention once the poor over-aroused slave
+		<<if !canTalk($activeSlave)>>
+			begins to use piteous gestures to beg you abjectly to penetrate $him.
+		<<else>>
+			begs, "I can't take it any more, <<Master>>! Plea<<s>>e fuck me!"
+		<</if>>
+		You snicker, but remind $him that $he has no say in $his release. You line up and insert your <<if ($PC.dick == 0)>>strap-on<<else>>cock<</if>> up $his ass and begin slowly fucking $him, making sure to stimulate $his prostate. When $he finally orgasms <<if ($PC.dick == 0)>>$his unabashed enjoyment<<else>>the strength of $his spasming sphincter<</if>> sends you over as well. $He's left in a confused haze; $his body tells $him to fuck, but you tell $him to get fucked. $He @@.hotpink;sides with your decision@@ and vows to be the one taking dick for you. <<if $activeSlave.fetish == "none">>@@.coral;Overcoming $his urges to become a father via anal cause $him to become a buttslut.@@<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishStrength = 10>><</if>>
+		<<set $activeSlave.devotion += 5, $activeSlave.chastityPenis = 1>>
+		<<= AnalVCheck()>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <<if $seeExtreme == 1 && $activeSlave.indentureRestrictions <= 0>>
-<br><<link "Geld $him to render $him impotent again">>
-	<<set $activeSlave.balls = 0, $activeSlave.health -= 10, $activeSlave.trust -= 20>>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You bluntly tell $him $he is becoming potent, and that is something you can't allow to roam unchecked amongst your fertile slaves. You drag $him to the remote surgery and strap $him face-down with $his legs spread <<if $activeSlave.belly >= 5000>>$his _belly rounded belly forcing $his rear into the air<</if>>. $He doesn't understand what's happening, since the anesthetics totally deprive $him of any sensation. $He's so drugged and drowsy with @@.red;surgical recovery@@ that it takes a while for $him to figure out what's happened. When $he does, $his poor mind scarcely processes the @@.gold;horror@@ of what's happened. $He numbly carries on, terrified.
-<</replace>>
-<</link>>
+	<br><<link "Geld $him to render $him impotent again">>
+		<<set $activeSlave.balls = 0, $activeSlave.health -= 10, $activeSlave.trust -= 20>>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You bluntly tell $him $he is becoming potent, and that is something you can't allow to roam unchecked amongst your fertile slaves. You drag $him to the remote surgery and strap $him face-down with $his legs spread <<if $activeSlave.belly >= 5000>>$his _belly rounded belly forcing $his rear into the air<</if>>. $He doesn't understand what's happening, since the anesthetics totally deprive $him of any sensation. $He's so drugged and drowsy with @@.red;surgical recovery@@ that it takes a while for $him to figure out what's happened. When $he does, $his poor mind scarcely processes the @@.gold;horror@@ of what's happened. $He numbly carries on, terrified.
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "surprising wakeup">>
@@ -4816,148 +4818,148 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 <<link "Permit $him to continue">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You can't complain, it feels really good. You don't know where this skill was lurking in $his broken mind, but you're glad to see it put to good use. <<if $PC.dick == 1>>Just as you are about to cum, $he takes the full length of your dick down $his throat, diligently taking in every drop of cum<<else>>Even as you buck with pleasure, $he diligently keeps $his tongue to your clit and pussy, making sure you don't go a moment without pleasure<</if>>. You don't have an orgasm like that every day, and as $he looks at you lovingly, you prod $him with your still hard <<if $PC.dick == 1>>cock<<else>>clit<</if>> for round two.
-	$He is @@.green;no longer mindbroken@@ and for whatever twisted reasons deeply and sincerely @@.hotpink;loves@@ and @@.mediumaquamarine;trusts@@ you.
-	<<set $activeSlave.devotion = 90, $activeSlave.oldDevotion = 90, $activeSlave.trust = 90, $activeSlave.oldTrust = 90, $activeSlave.sexualQuirk = "caring", $activeSlave.fetish = "none", $activeSlave.fetishKnown = 1>>
-	<<set _ress = $genePool.findIndex(function(s) { return s.ID == $activeSlave.ID; })>>
-	<<set $activeSlave.intelligence = $genePool[_ress].intelligence>>
-	<<if ($arcologies[0].FSPaternalist != "unset")>>
-		Society @@.green;strongly approves@@ of $activeSlave.slaveName being restored to sanity, which advances ideals about enlightened slaveownership.
-		<<set $arcologies[0].FSPaternalist += 0.01*$FSSingleSlaveRep>>
-		<<run repX(10*$FSSingleSlaveRep*($arcologies[0].FSPaternalist/$FSLockinLevel), "futureSocieties")>>
-	<</if>>
-	<<set $activeSlave.counter.oral += 2>>
-	<<set $oralTotal += 2>>
-	<<set $activeSlave.kindness = 0>>
+		You can't complain, it feels really good. You don't know where this skill was lurking in $his broken mind, but you're glad to see it put to good use. <<if $PC.dick == 1>>Just as you are about to cum, $he takes the full length of your dick down $his throat, diligently taking in every drop of cum<<else>>Even as you buck with pleasure, $he diligently keeps $his tongue to your clit and pussy, making sure you don't go a moment without pleasure<</if>>. You don't have an orgasm like that every day, and as $he looks at you lovingly, you prod $him with your still hard <<if $PC.dick == 1>>cock<<else>>clit<</if>> for round two.
+		$He is @@.green;no longer mindbroken@@ and for whatever twisted reasons deeply and sincerely @@.hotpink;loves@@ and @@.mediumaquamarine;trusts@@ you.
+		<<set $activeSlave.devotion = 90, $activeSlave.oldDevotion = 90, $activeSlave.trust = 90, $activeSlave.oldTrust = 90, $activeSlave.sexualQuirk = "caring", $activeSlave.fetish = "none", $activeSlave.fetishKnown = 1>>
+		<<set _ress = $genePool.findIndex(function(s) { return s.ID == $activeSlave.ID; })>>
+		<<set $activeSlave.intelligence = $genePool[_ress].intelligence>>
+		<<if ($arcologies[0].FSPaternalist != "unset")>>
+			Society @@.green;strongly approves@@ of $activeSlave.slaveName being restored to sanity, which advances ideals about enlightened slaveownership.
+			<<set $arcologies[0].FSPaternalist += 0.01*$FSSingleSlaveRep>>
+			<<run repX(10*$FSSingleSlaveRep*($arcologies[0].FSPaternalist/$FSLockinLevel), "futureSocieties")>>
+		<</if>>
+		<<set $activeSlave.counter.oral += 2>>
+		<<set $oralTotal += 2>>
+		<<set $activeSlave.kindness = 0>>
 	<</replace>>
 <</link>>
 <br><<link "Embrace $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You gently grab $his face and stare deeply into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. <<if canSee($activeSlave)>>They are full of life as opposed to their usual dullness<<else>>They are as dull as always, but that isn't $his fault. $His facial expressions at the act tell you all you need to know<</if>>. You pull your wife into a tight embrace — $him coming back to you is more than enough of a gift; $he needn't do anything more for now. You pull the covers over the both of you and begin to doze off, smiling at the warmth cuddling ever closer to you.
-	$He is @@.green;no longer mindbroken@@ and thanks to your care deeply and sincerely @@.hotpink;loves@@ and @@.mediumaquamarine;trusts@@ you.
-	<<set $activeSlave.devotion = 100, $activeSlave.oldDevotion = 100, $activeSlave.trust = 100, $activeSlave.oldTrust = 100, $activeSlave.sexualQuirk = "romantic", $activeSlave.fetish = "none", $activeSlave.fetishKnown = 1>>
-	<<set $activeSlave.intelligence = $genePool[_ress].intelligence>>
-	<<if ($arcologies[0].FSPaternalist != "unset")>>
-		Society @@.green;strongly approves@@ of $activeSlave.slaveName being restored to sanity by the power of love, which advances ideals about enlightened slaveownership.
-		<<set $arcologies[0].FSPaternalist += 0.01*$FSSingleSlaveRep>>
-		<<run repX(10*$FSSingleSlaveRep*($arcologies[0].FSPaternalist/$FSLockinLevel), "futureSocieties")>>
-	<</if>>
-	<<set $activeSlave.kindness = 0>>
+		You gently grab $his face and stare deeply into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. <<if canSee($activeSlave)>>They are full of life as opposed to their usual dullness<<else>>They are as dull as always, but that isn't $his fault. $His facial expressions at the act tell you all you need to know<</if>>. You pull your wife into a tight embrace — $him coming back to you is more than enough of a gift; $he needn't do anything more for now. You pull the covers over the both of you and begin to doze off, smiling at the warmth cuddling ever closer to you.
+		$He is @@.green;no longer mindbroken@@ and thanks to your care deeply and sincerely @@.hotpink;loves@@ and @@.mediumaquamarine;trusts@@ you.
+		<<set $activeSlave.devotion = 100, $activeSlave.oldDevotion = 100, $activeSlave.trust = 100, $activeSlave.oldTrust = 100, $activeSlave.sexualQuirk = "romantic", $activeSlave.fetish = "none", $activeSlave.fetishKnown = 1>>
+		<<set $activeSlave.intelligence = $genePool[_ress].intelligence>>
+		<<if ($arcologies[0].FSPaternalist != "unset")>>
+			Society @@.green;strongly approves@@ of $activeSlave.slaveName being restored to sanity by the power of love, which advances ideals about enlightened slaveownership.
+			<<set $arcologies[0].FSPaternalist += 0.01*$FSSingleSlaveRep>>
+			<<run repX(10*$FSSingleSlaveRep*($arcologies[0].FSPaternalist/$FSLockinLevel), "futureSocieties")>>
+		<</if>>
+		<<set $activeSlave.kindness = 0>>
 	<</replace>>
 <</link>>
 <br><<link "Rape $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Getting head isn't going to cut it. You easily overpower the startled $desc and
-	<<if canDoVaginal($activeSlave)>>
-		flip $him onto $his back.
-		<<if $PC.dick == 1>>
-			You viciously rape $him, forcing yourself deep into $him before painting $his insides with your seed. You leave the quivering $girl to leak fluids while you get comfortable again.
-			<<if $activeSlave.vagina == 0>>$His once virgin pussy now @@.lime;gapes slightly@@ after your enjoyment of it.<<set $activeSlave.vagina++>><</if>>
-		<<else>>
-			You don the biggest strap-on in reach and viciously rape $him, roughly groping $his breasts while you do. Once you are satisfied with the stimulation, you thrust hard and deep one last time for good measure, only to have the dildo stay firmly lodged in $his cunt. You shrug, not your problem.
-			<<if $activeSlave.vagina == 0>>$His once virgin pussy now is now @@.lime;thoroughly stretched@@ after your enjoyment of it. You watch $his body struggle to force the dildo out of $him until it manages to do so with a wet thud.<<set $activeSlave.vagina++>><</if>>
-		<</if>>
-		$He doesn't move from this position and barely reacts to your prodding; it seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake.
-		<<set $activeSlave.counter.vaginal++>>
-		<<set $vaginalTotal++>>
-		<<if canImpreg($activeSlave, $PC)>>
-			<<= knockMeUp($activeSlave, 5, 0, -1, 1)>>
-		<</if>>
-	<<elseif canDoAnal($activeSlave)>>
-		force $his ass into the air.
-		<<if $PC.dick == 1>>
-			You viciously assrape $him, cumming strongly into $his spasming anus while making sure to save one last spurt to paint $his back with.
-			<<if $activeSlave.anus == 0>>$His once virgin hole now @@.lime;gapes slightly@@ after your enjoyment of it.<<set $activeSlave.anus++>><</if>>
-		<<else>>
-			You don the biggest strap-on in reach and viciously assrape $him, forcing $his face into the sheets with one hand while roughly groping $his breasts with the other. Once you are satisfied with the stimulation, you thrust hard and deep one last time for good measure, only to have the dildo stay firmly lodged in $his ass. You shrug, not your problem.
-			<<if $activeSlave.anus == 0>>$His once virgin hole now is now @@.lime;thoroughly stretched@@ after your enjoyment of it. You watch $his body struggle to force the dildo out of rear until it manages to do so with a soft thud.<<set $activeSlave.anus++>><</if>>
-		<</if>>
-		$He doesn't move from this position and barely reacts to your prodding; it seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake.
-		<<if canImpreg($activeSlave, $PC)>>
-			<<= knockMeUp($activeSlave, 5, 1, -1, 1)>>
-		<</if>>
-		<<set $activeSlave.counter.anal++>>
-		<<set $analTotal++>>
-	<<else>>
-		slam $his head into your crotch.
-		<<if $PC.dick == 1>>
-			You viciously facefuck $him, cumming strongly down $his gagging throat while making sure to save one last spurt to paint $his face with.
-		<<else>>
-			As $he recoils, you grab a strap-on and force it into $his mouth before fastening it to yourself. Once you are situated, you viciously facefuck $him until you are satisfied. As $he struggles to catch $his breath, you toggle the release and reveal that it is a squirt dildo, painting $his face with fake semen.
-		<</if>>
-		$He falls backwards, where $he lays, unmoving. It seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake.
-		<<set $activeSlave.counter.oral++>>
-		<<set $oralTotal++>>
-	<</if>>
-	You pull the blanket back over yourself and nudge $him off your bed; you'll deal with $him in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling $his used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to $him first<</if>><</if>>.
-	<<if $fuckSlaves > 1 && $masterSuiteUpgradeLuxury == 2>>
-		<<if canDoAnal($activeSlave) && $activeSlave.anus > 0>>
-			<<if $activeSlave.anus < 3>>
-				<<set $activeSlave.anus++>>
+		Getting head isn't going to cut it. You easily overpower the startled $desc and
+		<<if canDoVaginal($activeSlave)>>
+			flip $him onto $his back.
+			<<if $PC.dick == 1>>
+				You viciously rape $him, forcing yourself deep into $him before painting $his insides with your seed. You leave the quivering $girl to leak fluids while you get comfortable again.
+				<<if $activeSlave.vagina == 0>>$His once virgin pussy now @@.lime;gapes slightly@@ after your enjoyment of it.<<set $activeSlave.vagina++>><</if>>
+			<<else>>
+				You don the biggest strap-on in reach and viciously rape $him, roughly groping $his breasts while you do. Once you are satisfied with the stimulation, you thrust hard and deep one last time for good measure, only to have the dildo stay firmly lodged in $his cunt. You shrug, not your problem.
+				<<if $activeSlave.vagina == 0>>$His once virgin pussy now is now @@.lime;thoroughly stretched@@ after your enjoyment of it. You watch $his body struggle to force the dildo out of $him until it manages to do so with a wet thud.<<set $activeSlave.vagina++>><</if>>
 			<</if>>
-			<<set $activeSlave.counter.anal += $fuckSlaves*2>>
-			<<set $analTotal += $fuckSlaves*2>>
-		<</if>>
-		<<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
-			<<if $activeSlave.vagina < 3>>
-				<<set $activeSlave.anus++>>
+			$He doesn't move from this position and barely reacts to your prodding; it seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake.
+			<<set $activeSlave.counter.vaginal++>>
+			<<set $vaginalTotal++>>
+			<<if canImpreg($activeSlave, $PC)>>
+				<<= knockMeUp($activeSlave, 5, 0, -1, 1)>>
 			<</if>>
-			<<set $activeSlave.counter.vaginal += $fuckSlaves*2>>
-			<<set $vaginalTotal += $fuckSlaves*2>>
-		<</if>>
-		<<set $activeSlave.counter.oral += $fuckSlaves*2>>
-		<<set $oralTotal += $fuckSlaves*2>>
-	<<elseif $fuckSlaves > 1>>
-		<<if canDoAnal($activeSlave) && $activeSlave.anus > 0>>
-			<<set $activeSlave.counter.anal += $fuckSlaves>>
-			<<set $analTotal += $fuckSlaves>>
-		<<elseif canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
-			<<set $activeSlave.counter.vaginal += $fuckSlaves>>
-			<<set $vaginalTotal += $fuckSlaves>>
+		<<elseif canDoAnal($activeSlave)>>
+			force $his ass into the air.
+			<<if $PC.dick == 1>>
+				You viciously assrape $him, cumming strongly into $his spasming anus while making sure to save one last spurt to paint $his back with.
+				<<if $activeSlave.anus == 0>>$His once virgin hole now @@.lime;gapes slightly@@ after your enjoyment of it.<<set $activeSlave.anus++>><</if>>
+			<<else>>
+				You don the biggest strap-on in reach and viciously assrape $him, forcing $his face into the sheets with one hand while roughly groping $his breasts with the other. Once you are satisfied with the stimulation, you thrust hard and deep one last time for good measure, only to have the dildo stay firmly lodged in $his ass. You shrug, not your problem.
+				<<if $activeSlave.anus == 0>>$His once virgin hole now is now @@.lime;thoroughly stretched@@ after your enjoyment of it. You watch $his body struggle to force the dildo out of rear until it manages to do so with a soft thud.<<set $activeSlave.anus++>><</if>>
+			<</if>>
+			$He doesn't move from this position and barely reacts to your prodding; it seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake.
+			<<if canImpreg($activeSlave, $PC)>>
+				<<= knockMeUp($activeSlave, 5, 1, -1, 1)>>
+			<</if>>
+			<<set $activeSlave.counter.anal++>>
+			<<set $analTotal++>>
 		<<else>>
-			<<set $activeSlave.counter.oral += $fuckSlaves>>
-			<<set $oralTotal += $fuckSlaves>>
-		<</if>>
-	<</if>>
-	<<set $activeSlave.kindness = -100>>
-	<</replace>>
-<</link>>//<<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>>This option will take $his virginity<<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>>This option will take $his anal virginity<</if>>//
+			slam $his head into your crotch.
+			<<if $PC.dick == 1>>
+				You viciously facefuck $him, cumming strongly down $his gagging throat while making sure to save one last spurt to paint $his face with.
+			<<else>>
+				As $he recoils, you grab a strap-on and force it into $his mouth before fastening it to yourself. Once you are situated, you viciously facefuck $him until you are satisfied. As $he struggles to catch $his breath, you toggle the release and reveal that it is a squirt dildo, painting $his face with fake semen.
+			<</if>>
+			$He falls backwards, where $he lays, unmoving. It seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake.
+			<<set $activeSlave.counter.oral++>>
+			<<set $oralTotal++>>
+		<</if>>
+		You pull the blanket back over yourself and nudge $him off your bed; you'll deal with $him in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling $his used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to $him first<</if>><</if>>.
+		<<if $fuckSlaves > 1 && $masterSuiteUpgradeLuxury == 2>>
+			<<if canDoAnal($activeSlave) && $activeSlave.anus > 0>>
+				<<if $activeSlave.anus < 3>>
+					<<set $activeSlave.anus++>>
+				<</if>>
+				<<set $activeSlave.counter.anal += $fuckSlaves*2>>
+				<<set $analTotal += $fuckSlaves*2>>
+			<</if>>
+			<<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
+				<<if $activeSlave.vagina < 3>>
+					<<set $activeSlave.anus++>>
+				<</if>>
+				<<set $activeSlave.counter.vaginal += $fuckSlaves*2>>
+				<<set $vaginalTotal += $fuckSlaves*2>>
+			<</if>>
+			<<set $activeSlave.counter.oral += $fuckSlaves*2>>
+			<<set $oralTotal += $fuckSlaves*2>>
+		<<elseif $fuckSlaves > 1>>
+			<<if canDoAnal($activeSlave) && $activeSlave.anus > 0>>
+				<<set $activeSlave.counter.anal += $fuckSlaves>>
+				<<set $analTotal += $fuckSlaves>>
+			<<elseif canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
+				<<set $activeSlave.counter.vaginal += $fuckSlaves>>
+				<<set $vaginalTotal += $fuckSlaves>>
+			<<else>>
+				<<set $activeSlave.counter.oral += $fuckSlaves>>
+				<<set $oralTotal += $fuckSlaves>>
+			<</if>>
+		<</if>>
+		<<set $activeSlave.kindness = -100>>
+	<</replace>>
+<</link>>//<<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>>This option will take $his virginity<<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>>This option will take $his anal virginity<</if>>//
 <br><<link "Punish $him for waking you">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	In one swift motion you throw aside the cover and backhand the $desc for waking you. $He falls to your side, where $he lays, unmoving. It seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake. You pull the blanket back over yourself; you'll deal with $him in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling $his used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to $him first<</if>><</if>>.
-	<<if $fuckSlaves > 1 && $masterSuiteUpgradeLuxury == 2>>
-		<<if canDoAnal($activeSlave) && $activeSlave.anus > 0>>
-			<<if $activeSlave.anus < 3>>
-				<<set $activeSlave.anus++>>
+		In one swift motion you throw aside the cover and backhand the $desc for waking you. $He falls to your side, where $he lays, unmoving. It seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake. You pull the blanket back over yourself; you'll deal with $him in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling $his used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to $him first<</if>><</if>>.
+		<<if $fuckSlaves > 1 && $masterSuiteUpgradeLuxury == 2>>
+			<<if canDoAnal($activeSlave) && $activeSlave.anus > 0>>
+				<<if $activeSlave.anus < 3>>
+					<<set $activeSlave.anus++>>
+				<</if>>
+				<<set $activeSlave.counter.anal += $fuckSlaves*2>>
+				<<set $analTotal += $fuckSlaves*2>>
 			<</if>>
-			<<set $activeSlave.counter.anal += $fuckSlaves*2>>
-			<<set $analTotal += $fuckSlaves*2>>
-		<</if>>
-		<<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
-			<<if $activeSlave.vagina < 3>>
-				<<set $activeSlave.anus++>>
+			<<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
+				<<if $activeSlave.vagina < 3>>
+					<<set $activeSlave.anus++>>
+				<</if>>
+				<<set $activeSlave.counter.vaginal += $fuckSlaves*2>>
+				<<set $vaginalTotal += $fuckSlaves*2>>
+			<</if>>
+			<<set $activeSlave.counter.oral += $fuckSlaves*2>>
+			<<set $oralTotal += $fuckSlaves*2>>
+		<<elseif $fuckSlaves > 1>>
+			<<if canDoAnal($activeSlave) && $activeSlave.anus > 0>>
+				<<set $activeSlave.counter.anal += $fuckSlaves>>
+				<<set $analTotal += $fuckSlaves>>
+			<<elseif canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
+				<<set $activeSlave.counter.vaginal += $fuckSlaves>>
+				<<set $vaginalTotal += $fuckSlaves>>
+			<<else>>
+				<<set $activeSlave.counter.oral += $fuckSlaves>>
+				<<set $oralTotal += $fuckSlaves>>
 			<</if>>
-			<<set $activeSlave.counter.vaginal += $fuckSlaves*2>>
-			<<set $vaginalTotal += $fuckSlaves*2>>
-		<</if>>
-		<<set $activeSlave.counter.oral += $fuckSlaves*2>>
-		<<set $oralTotal += $fuckSlaves*2>>
-	<<elseif $fuckSlaves > 1>>
-		<<if canDoAnal($activeSlave) && $activeSlave.anus > 0>>
-			<<set $activeSlave.counter.anal += $fuckSlaves>>
-			<<set $analTotal += $fuckSlaves>>
-		<<elseif canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
-			<<set $activeSlave.counter.vaginal += $fuckSlaves>>
-			<<set $vaginalTotal += $fuckSlaves>>
-		<<else>>
-			<<set $activeSlave.counter.oral += $fuckSlaves>>
-			<<set $oralTotal += $fuckSlaves>>
 		<</if>>
-	<</if>>
-	<<set $activeSlave.kindness = -100>>
+		<<set $activeSlave.kindness = -100>>
 	<</replace>>
 <</link>>
 
@@ -4967,8 +4969,133 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 	<<link "Fight $him off as much as you can">>
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
-		<<if overpowerCheck($activeSlave, $PC) >= random(1,100)>>
-			You know your own body well, at least enough to be able to make it as difficult as possible for $him to use you. If $he were to loosen $his grip by a little, you'd be quick to shake $him off, but the position $he's got you in doesn't leave much room to fight back. When you start to tire, $he pushes you to the wall and starts rubbing $his
+			<<if overpowerCheck($activeSlave, $PC) >= random(1,100)>>
+				You know your own body well, at least enough to be able to make it as difficult as possible for $him to use you. If $he were to loosen $his grip by a little, you'd be quick to shake $him off, but the position $he's got you in doesn't leave much room to fight back. When you start to tire, $he pushes you to the wall and starts rubbing $his
+				<<if $activeSlave.dick == 1>>
+					pathetic
+				<<elseif $activeSlave.dick == 2>>
+					little
+				<<elseif $activeSlave.dick == 3>>
+				<<elseif $activeSlave.dick == 4>>
+					big
+				<<elseif $activeSlave.dick == 5>>
+					impressive
+				<<elseif $activeSlave.dick == 6>>
+					huge
+				<<elseif $activeSlave.dick == 7>>
+					gigantic
+				<<elseif $activeSlave.dick == 8>>
+					titanic
+				<<elseif $activeSlave.dick == 9>>
+					absurd
+				<<elseif $activeSlave.dick == 10>>
+					inhuman
+				<<else>>
+					hypertrophied
+				<</if>>
+				dick on your lower body, thrusting blindly around your belly, before lodging $himself between your thighs. You have a hard time fighting against $him in your position, but you're not about to let $him dominate you either. You continue trying to shake $him off, making sure at the same time that your movements are as aggressive as possible to try and distract $him with pain or pleasure. You feel $his grip loosen as $his body tenses before pending orgasm, so you strongly push into $him, knocking $him off balance and to the floor. $He spills $his seed all over $himself and you as you wrestle $him into a chokehold. Now that you have $him restrained, it's time $he learned $his place.
+			<<else>>
+				You know your own body well, but $activeSlave.slaveName is much stronger than you had thought. $His grip shows little sign of loosening despite your struggle, and $he's got you in a position that allows for little other options to fight back. When you soon start to tire, $he pushes you to the wall, tears off your clothing, and starts rubbing $his
+				<<if $activeSlave.dick == 1>>
+					pathetic
+				<<elseif $activeSlave.dick == 2>>
+					little
+				<<elseif $activeSlave.dick == 3>>
+				<<elseif $activeSlave.dick == 4>>
+					big
+				<<elseif $activeSlave.dick == 5>>
+					impressive
+				<<elseif $activeSlave.dick == 6>>
+					huge
+				<<elseif $activeSlave.dick == 7>>
+					gigantic
+				<<elseif $activeSlave.dick == 8>>
+					titanic
+				<<elseif $activeSlave.dick == 9>>
+					absurd
+				<<elseif $activeSlave.dick == 10>>
+					inhuman
+				<<else>>
+					hypertrophied
+				<</if>>
+				dick on your lower body, thrusting blindly around your belly, before suddenly lodging $himself in your pussy. You have an even harder time fighting against $him in this position, especially since your aggressive movements seem to send a pleasurable sensation to $his cock. You only manage to find an opportunity to free yourself when $he reaches orgasm, shooting $his seed deep inside you. As $he cums, you strongly push into $him, knocking $him off balance and to the floor. By sheer luck, $his head strikes a large paperweight that was thrown across the room in your struggle, knocking $him unconscious long enough for you to dislodge yourself and tie $him up. Now that you have $him restrained, it's time $he learned $his place.
+				<<if canImpreg($PC, $activeSlave)>>
+					<<= knockMeUp($PC, 50, 0, $activeSlave.ID)>>
+				<</if>>
+				<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+			<</if>>
+			<<set $mutinery = 2>>
+
+			<br><br><span id="result2">
+				<<if $mutinery != 1>>
+					<br><<link "Lock $his dick in chastity">>
+						<<replace "#result2">>
+							You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, $he immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.orangered;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.orangered;spreading defiance@@ through your rebellious slaves.
+							<<set $activeSlave.trust += 10, $activeSlave.chastityPenis = 1>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
+						<</replace>>
+					<</link>>
+					<br><<link "Flog $him">>
+						<<replace "#result2">>
+							You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
+							<<set $activeSlave.trust -= 15>>
+							<<set $activeSlave.health -= 15>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
+						<</replace>>
+					<</link>>
+					<br><<link "Mute $him">>
+						<<replace "#result2">>
+							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.orangered;what stops $him from making another go at you?@@ Your other rebellious slaves see this as a minor loss for a potentially huge gain and, if anything, @@.orangered;become more defiant.@@
+							<<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>>
+							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+						<</replace>>
+					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
+					<br><<link "Castrate $him">>
+						<<replace "#result2">>
+							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
+							<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
+							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+						<</replace>>
+					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
+					<<if $activeSlave.vagina == -2>>
+						<br><<link "Surgically alter $his gender">>
+							<<replace "#result2">>
+								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
+								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
+								<<= VaginalVCheck()>>
+								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
+								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+							<</replace>>
+						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
+					<<else>>
+						<br><<link "Remove $his male genitalia">>
+							<<replace "#result2">>
+								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
+								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
+								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
+								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+							<</replace>>
+						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
+					<</if>>
+					<br><<link "Deny $him from ever having satisfying sex again">>
+						<<replace "#result2">>
+							You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
+							<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
+							<<= AnalVCheck()>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
+							<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave)>>
+						<</replace>>
+					<</link>> //This option will cost <<print cashFormat(($surgeryCost*4))>>//
+				<</if>>
+			</span>
+		<</replace>>
+	<</link>>
+	<br><<link "Try to talk it out">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You start trying to talk $him down, hoping to persuade $him that you might reconsider your punishment if $he stopped this foolishness; $he doesn't seem too keen on <<if canHear($activeSlave)>>listening to<<else>>acknowledging<</if>> you, instead pushing you against a wall and tearing your clothes off. Ignoring your words, $he forces $his
 			<<if $activeSlave.dick == 1>>
 				pathetic
 			<<elseif $activeSlave.dick == 2>>
@@ -4991,9 +5118,85 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			<<else>>
 				hypertrophied
 			<</if>>
-			dick on your lower body, thrusting blindly around your belly, before lodging $himself between your thighs. You have a hard time fighting against $him in your position, but you're not about to let $him dominate you either. You continue trying to shake $him off, making sure at the same time that your movements are as aggressive as possible to try and distract $him with pain or pleasure. You feel $his grip loosen as $his body tenses before pending orgasm, so you strongly push into $him, knocking $him off balance and to the floor. $He spills $his seed all over $himself and you as you wrestle $him into a chokehold. Now that you have $him restrained, it's time $he learned $his place.
-		<<else>>
-			You know your own body well, but $activeSlave.slaveName is much stronger than you had thought. $His grip shows little sign of loosening despite your struggle, and $he's got you in a position that allows for little other options to fight back. When you soon start to tire, $he pushes you to the wall, tears off your clothing, and starts rubbing $his
+			dick in without a second thought. You make sure to clamp down as hard as possible so the experience is not all that pleasant for $him, but $he continues to thrust in a daze.
+			<<if canImpreg($PC, $activeSlave)>>
+				You make one last plea for $him not to cum inside; it's a danger day. If anything, it only encourages $him to thrust deeper before painting the insides of your pussy with $his load.
+				<<= knockMeUp($PC, 100, 0, $activeSlave.ID)>>
+			<</if>>
+			Once spent, $he shoves you to the ground and crashes into your office chair. The moment $he lets down $his guard, you slam the heaviest object you can find into $his head. Now that you have $him controlled, it's time $he learned $his place — when $he wakes up, of course. It's more fun that way.
+			<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+			<<set $mutinery = 2>>
+
+			<br><br><span id="result2">
+				<<if $mutinery != 1>>
+					<br><<link "Lock $his dick in chastity">>
+						<<replace "#result2">>
+							You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, $he immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.orangered;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.orangered;spreading defiance@@ through your rebellious slaves.
+							<<set $activeSlave.trust += 10, $activeSlave.chastityPenis = 1>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
+						<</replace>>
+					<</link>>
+					<br><<link "Flog $him">>
+						<<replace "#result2">>
+							You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
+							<<set $activeSlave.trust -= 15>>
+							<<set $activeSlave.health -= 15>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
+						<</replace>>
+					<</link>>
+					<br><<link "Mute $him">>
+						<<replace "#result2">>
+							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.orangered;what stops $him from making another go at you?@@ Your other rebellious slaves see this as a minor loss for a potentially huge gain and, if anything, @@.orangered;become more defiant.@@
+							<<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>>
+							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+						<</replace>>
+					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
+					<br><<link "Castrate $him">>
+						<<replace "#result2">>
+							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
+							<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
+							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+						<</replace>>
+					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
+					<<if $activeSlave.vagina == -2>>
+						<br><<link "Surgically alter $his gender">>
+							<<replace "#result2">>
+								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
+								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
+								<<= VaginalVCheck()>>
+								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
+								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+							<</replace>>
+						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
+					<<else>>
+						<br><<link "Remove $his male genitalia">>
+							<<replace "#result2">>
+								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
+								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
+								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
+								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+							<</replace>>
+						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
+					<</if>>
+					<br><<link "Deny $him from ever having satisfying sex again">>
+						<<replace "#result2">>
+							You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
+							<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
+							<<= AnalVCheck()>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
+							<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave)>>
+						<</replace>>
+					<</link>> //This option will cost <<print cashFormat(($surgeryCost*4))>>//
+				<</if>>
+			</span>
+		<</replace>>
+	<</link>>
+	<br><<link "Fake playing along">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You start removing your top and putting on a show of seducing your slave, dropping to your knees while looking doe-eyed at $him. By sucking $him off, you'll probably get $him to lower $his guard enough to get the upper hand. You take $his
 			<<if $activeSlave.dick == 1>>
 				pathetic
 			<<elseif $activeSlave.dick == 2>>
@@ -5016,343 +5219,142 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			<<else>>
 				hypertrophied
 			<</if>>
-			dick on your lower body, thrusting blindly around your belly, before suddenly lodging $himself in your pussy. You have an even harder time fighting against $him in this position, especially since your aggressive movements seem to send a pleasurable sensation to $his cock. You only manage to find an opportunity to free yourself when $he reaches orgasm, shooting $his seed deep inside you. As $he cums, you strongly push into $him, knocking $him off balance and to the floor. By sheer luck, $his head strikes a large paperweight that was thrown across the room in your struggle, knocking $him unconscious long enough for you to dislodge yourself and tie $him up. Now that you have $him restrained, it's time $he learned $his place.
-			<<if canImpreg($PC, $activeSlave)>>
-				<<= knockMeUp($PC, 50, 0, $activeSlave.ID)>>
-			<</if>>
-			<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-		<</if>>
-		<<set $mutinery = 2>>
+			dick inside your<<if $PC.career == "escort" || $PC.career == "servant">> expert<</if>> mouth. You diligently suck until you feel $him begin to tense up; this is your chance. You clamp down on $his cock while simultaneously punching $him in the balls. $He howls in pain, until you headbutt $him in the stomach and knock the wind out of $him. You quickly pull $him into an arm lock and force $him over your desk. Now that you have $him restrained, it's time $he learned $his place — after you've gotten the taste of the slut out of your mouth, that is.
+			<<set $mutinery = 2>>
 
-		<br><br><span id="result2">
-		<<if $mutinery != 1>>
-			<br><<link "Lock $his dick in chastity">>
-				<<replace "#result2">>
-				You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, $he immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves.
-				<<set $activeSlave.trust += 10, $activeSlave.chastityPenis = 1>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
-				<</replace>>
-			<</link>>
-			<br><<link "Flog $him">>
-				<<replace "#result2">>
-				You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
-				<<set $activeSlave.trust -= 15>>
-				<<set $activeSlave.health -= 15>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
-				<</replace>>
-			<</link>>
-			<br><<link "Mute $him">>
-				<<replace "#result2">>
-				As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.mediumaquamarine;what stops $him from making another go at you?@@ Your other rebellious slaves see this as a minor loss for a potentially huge gain and, if anything, @@.mediumaquamarine;become more defiant.@@
-				<<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>>
-				<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-				<</replace>>
-			<</link>> //Will cost <<print cashFormat($surgeryCost)>>//
-			<br><<link "Castrate $him">>
-				<<replace "#result2">>
-				As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
-				<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
-				<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-				<</replace>> //Will cost <<print cashFormat($surgeryCost)>>//
-			<</link>>
-			<<if $activeSlave.vagina == -2>>
-				<br><<link "Surgically alter $his gender">>
-					<<replace "#result2">>
-					You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-					<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
-					<<= VaginalVCheck()>>
-					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-					<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
-					<</replace>>
-				<</link>> //Will cost <<print cashFormat(($surgeryCost*2))>>//
-			<<else>>
-				<br><<link "Remove $his male genitalia">>
-					<<replace "#result2">>
-					You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
-					<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
-					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-					<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
-					<</replace>>
-				<</link>> //Will cost <<print cashFormat(($surgeryCost*2))>>//
-			<</if>>
-			<br><<link "Deny $him from ever having satisfying sex again">>
-				<<replace "#result2">>
-				You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-				<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
-				<<= AnalVCheck()>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-				<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave)>>
-				<</replace>>
-			<</link>> //Will cost <<print cashFormat(($surgeryCost*4))>>//
-		<</if>>
-		</span>
+			<br><br><span id="result2">
+				<<if $mutinery != 1>>
+					<br><<link "Lock $his dick in chastity">>
+						<<replace "#result2">>
+							You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, $he immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.orangered;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.orangered;spreading defiance@@ through your rebellious slaves.
+							<<set $activeSlave.trust += 10, $activeSlave.chastityPenis = 1>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
+						<</replace>>
+					<</link>>
+					<br><<link "Flog $him">>
+						<<replace "#result2">>
+							You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
+							<<set $activeSlave.trust -= 15>>
+							<<set $activeSlave.health -= 15>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
+						<</replace>>
+					<</link>>
+					<br><<link "Mute $him">>
+						<<replace "#result2">>
+							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.orangered;what stops $him from making another go at you?@@ Your other rebellious slaves see this as a minor loss for a potentially huge gain and, if anything, @@.orangered;become more defiant.@@
+							<<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>>
+							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+						<</replace>>
+					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
+					<br><<link "Castrate $him">>
+						<<replace "#result2">>
+							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
+							<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
+							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+						<</replace>>
+					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
+					<<if $activeSlave.vagina == -2>>
+						<br><<link "Surgically alter $his gender">>
+							<<replace "#result2">>
+								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $his against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
+								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
+								<<= VaginalVCheck()>>
+								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
+								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+							<</replace>>
+						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
+					<<else>>
+						<br><<link "Remove $his male genitalia">>
+							<<replace "#result2">>
+								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
+								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
+								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
+								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+							<</replace>>
+						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
+					<</if>>
+					<br><<link "Deny $him from ever having satisfying sex again">>
+						<<replace "#result2">>
+							You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
+							<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
+							<<= AnalVCheck()>>
+							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
+							<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave)>>
+						<</replace>>
+					<</link>> //This option will cost <<print cashFormat(($surgeryCost*4))>>//
+				<</if>>
+			</span>
 		<</replace>>
 	<</link>>
-	<br><<link "Try to talk it out">>
-		<<EventNameDelink $activeSlave>>
-		<<replace "#result">>
-		You start trying to talk $him down, hoping to persuade $him that you might reconsider your punishment if $he stopped this foolishness; $he doesn't seem too keen on <<if canHear($activeSlave)>>listening to<<else>>acknowledging<</if>> you, instead pushing you against a wall and tearing your clothes off. Ignoring your words, $he forces $his
-		<<if $activeSlave.dick == 1>>
-			pathetic
-		<<elseif $activeSlave.dick == 2>>
-			little
-		<<elseif $activeSlave.dick == 3>>
-		<<elseif $activeSlave.dick == 4>>
-			big
-		<<elseif $activeSlave.dick == 5>>
-			impressive
-		<<elseif $activeSlave.dick == 6>>
-			huge
-		<<elseif $activeSlave.dick == 7>>
-			gigantic
-		<<elseif $activeSlave.dick == 8>>
-			titanic
-		<<elseif $activeSlave.dick == 9>>
-			absurd
-		<<elseif $activeSlave.dick == 10>>
-			inhuman
-		<<else>>
-			hypertrophied
-		<</if>>
-		dick in without a second thought. You make sure to clamp down as hard as possible so the experience is not all that pleasant for $him, but $he continues to thrust in a daze.
-		<<if canImpreg($PC, $activeSlave)>>
-			You make one last plea for $him not to cum inside; it's a danger day. If anything, it only encourages $him to thrust deeper before painting the insides of your pussy with $his load.
-			<<= knockMeUp($PC, 100, 0, $activeSlave.ID)>>
-		<</if>>
-		Once spent, $he shoves you to the ground and crashes into your office chair. The moment $he lets down $his guard, you slam the heaviest object you can find into $his head. Now that you have $him controlled, it's time $he learned $his place; when $he wakes up, of course. It's more fun that way.
-		<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-		<<set $mutinery = 2>>
+<<else>>
+	With the bitch restrained, you have all the time you need to devise $his punishment.
+	<<set $mutinery = 2>>
 
-		<br><br><span id="result2">
+	<br><br><span id="result2">
 		<<if $mutinery != 1>>
 			<br><<link "Lock $his dick in chastity">>
 				<<replace "#result2">>
-				You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, $he immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves.
-				<<set $activeSlave.trust += 10, $activeSlave.chastityPenis = 1>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
+					You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, $he immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves.
+					<<set $activeSlave.trust += 10, $activeSlave.chastityPenis = 1>>
+					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
 				<</replace>>
 			<</link>>
 			<br><<link "Flog $him">>
 				<<replace "#result2">>
-				You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
-				<<set $activeSlave.trust -= 15>>
-				<<set $activeSlave.health -= 15>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
+					You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
+					<<set $activeSlave.trust -= 15>>
+					<<set $activeSlave.health -= 15>>
+					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
 				<</replace>>
 			<</link>>
 			<br><<link "Mute $him">>
 				<<replace "#result2">>
-				As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.mediumaquamarine;what stops $him from making another go at you?@@ Your other rebellious slaves see this as a minor loss for a potentially huge gain and, if anything, @@.mediumaquamarine;become more defiant.@@
-				<<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>>
-				<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+					As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.mediumaquamarine;what stops $him from making another go at you?@@ Your other rebellious slaves see this as a minor loss for a potentially huge gain and, if anything, @@.mediumaquamarine;become more defiant.@@
+					<<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>>
+					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>>
+					<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
 				<</replace>>
-			<</link>> //Will cost <<print cashFormat($surgeryCost)>>//
+			<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
 			<br><<link "Castrate $him">>
 				<<replace "#result2">>
-				As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
-				<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
-				<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-				<</replace>> //Will cost <<print cashFormat($surgeryCost)>>//
-			<</link>>
-			<<if $activeSlave.vagina == -2>>
-				<br><<link "Surgically alter $his gender">>
-					<<replace "#result2">>
-					You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-					<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
-					<<= VaginalVCheck()>>
-					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-					<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
-					<</replace>>
-				<</link>> //Will cost <<print cashFormat(($surgeryCost*2))>>//
-			<<else>>
-				<br><<link "Remove $his male genitalia">>
-					<<replace "#result2">>
-					You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
-					<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
-					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-					<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
-					<</replace>>
-				<</link>> //Will cost <<print cashFormat(($surgeryCost*2))>>//
-			<</if>>
-			<br><<link "Deny $him from ever having satisfying sex again">>
-				<<replace "#result2">>
-				You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-				<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
-				<<= AnalVCheck()>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-				<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave)>>
-				<</replace>>
-			<</link>> //Will cost <<print cashFormat(($surgeryCost*4))>>//
-		<</if>>
-		</span>
-		<</replace>>
-	<</link>>
-	<br><<link "Fake playing along">>
-		<<EventNameDelink $activeSlave>>
-		<<replace "#result">>
-		You start removing your top and putting on a show of seducing your slave, dropping to your knees while looking doe-eyed at $him. By sucking $him off, you'll probably get $him to lower $his guard enough to get the upper hand. You take $his
-		<<if $activeSlave.dick == 1>>
-			pathetic
-		<<elseif $activeSlave.dick == 2>>
-			little
-		<<elseif $activeSlave.dick == 3>>
-		<<elseif $activeSlave.dick == 4>>
-			big
-		<<elseif $activeSlave.dick == 5>>
-			impressive
-		<<elseif $activeSlave.dick == 6>>
-			huge
-		<<elseif $activeSlave.dick == 7>>
-			gigantic
-		<<elseif $activeSlave.dick == 8>>
-			titanic
-		<<elseif $activeSlave.dick == 9>>
-			absurd
-		<<elseif $activeSlave.dick == 10>>
-			inhuman
-		<<else>>
-			hypertrophied
-		<</if>>
-		dick inside your<<if $PC.career == "escort" || $PC.career == "servant">> expert<</if>> mouth. You diligently suck until you feel $him begin to tense up; this is your chance. You clamp down on $his cock while simultaneously punching $him in the balls. $He howls in pain, until you headbutt $him in the stomach and knock the wind out of $him. You quickly pull $him into an arm lock and force $him over your desk. Now that you have $him restrained, it's time $he learned $his place — after you've gotten the taste of the slut out of your mouth, that is.
-		<<set $mutinery = 2>>
-
-		<br><br><span id="result2">
-		<<if $mutinery != 1>>
-			<br><<link "Lock $his dick in chastity">>
-				<<replace "#result2">>
-				You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, $he immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves.
-				<<set $activeSlave.trust += 10, $activeSlave.chastityPenis = 1>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
-				<</replace>>
-			<</link>>
-			<br><<link "Flog $him">>
-				<<replace "#result2">>
-				You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
-				<<set $activeSlave.trust -= 15>>
-				<<set $activeSlave.health -= 15>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
-				<</replace>>
-			<</link>>
-			<br><<link "Mute $him">>
-				<<replace "#result2">>
-				As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.mediumaquamarine;what stops $him from making another go at you?@@ Your other rebellious slaves see this as a minor loss for a potentially huge gain and, if anything, @@.mediumaquamarine;become more defiant.@@
-				<<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>>
-				<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+					As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
+					<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>>
+					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
+					<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
 				<</replace>>
-			<</link>> //Will cost <<print cashFormat($surgeryCost)>>//
-			<br><<link "Castrate $him">>
-				<<replace "#result2">>
-				As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
-				<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
-				<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-				<</replace>> //Will cost <<print cashFormat($surgeryCost)>>//
-			<</link>>
+			<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
 			<<if $activeSlave.vagina == -2>>
 				<br><<link "Surgically alter $his gender">>
 					<<replace "#result2">>
-					You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $his against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-					<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
-					<<= VaginalVCheck()>>
-					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-					<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+						You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $his against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
+						<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
+						<<= VaginalVCheck()>>
+						<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
+						<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
 					<</replace>>
-				<</link>> //Will cost <<print cashFormat(($surgeryCost*2))>>//
+				<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
 			<<else>>
 				<br><<link "Remove $his male genitalia">>
 					<<replace "#result2">>
-					You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
-					<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
-					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-					<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+						You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
+						<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
+						<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
+						<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
 					<</replace>>
-				<</link>> //Will cost <<print cashFormat(($surgeryCost*2))>>//
+				<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
 			<</if>>
 			<br><<link "Deny $him from ever having satisfying sex again">>
 				<<replace "#result2">>
-				You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-				<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
-				<<= AnalVCheck()>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-				<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave)>>
-				<</replace>>
-			<</link>> //Will cost <<print cashFormat(($surgeryCost*4))>>//
-		<</if>>
-		</span>
-		<</replace>>
-	<</link>>
-<<else>>
-	With the bitch restrained, you have all the time you need to devise $his punishment.
-	<<set $mutinery = 2>>
-
-	<br><br><span id="result2">
-	<<if $mutinery != 1>>
-		<br><<link "Lock $his dick in chastity">>
-			<<replace "#result2">>
-			You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, $he immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves.
-			<<set $activeSlave.trust += 10, $activeSlave.chastityPenis = 1>>
-			<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
-			<</replace>>
-		<</link>>
-		<br><<link "Flog $him">>
-			<<replace "#result2">>
-			You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
-			<<set $activeSlave.trust -= 15>>
-			<<set $activeSlave.health -= 15>>
-			<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
-			<</replace>>
-		<</link>>
-		<br><<link "Mute $him">>
-			<<replace "#result2">>
-			As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.mediumaquamarine;what stops $him from making another go at you?@@ Your other rebellious slaves see this as a minor loss for a potentially huge gain and, if anything, @@.mediumaquamarine;become more defiant.@@
-			<<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>>
-			<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>>
-			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-			<</replace>>
-		<</link>> //Will cost <<print cashFormat($surgeryCost)>>//
-		<br><<link "Castrate $him">>
-			<<replace "#result2">>
-			As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
-			<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>>
-			<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
-			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-			<</replace>> //Will cost <<print cashFormat($surgeryCost)>>//
-		<</link>>
-		<<if $activeSlave.vagina == -2>>
-			<br><<link "Surgically alter $his gender">>
-				<<replace "#result2">>
-				You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $his against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-				<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
-				<<= VaginalVCheck()>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-				<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
-				<</replace>>
-			<</link>> //Will cost <<print cashFormat(($surgeryCost*2))>>//
-		<<else>>
-			<br><<link "Remove $his male genitalia">>
-				<<replace "#result2">>
-				You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
-				<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
-				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-				<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave)>>
+					You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
+					<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
+					<<= AnalVCheck()>>
+					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
+					<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave)>>
 				<</replace>>
-			<</link>> //Will cost <<print cashFormat(($surgeryCost*2))>>//
+			<</link>> //This option will cost <<print cashFormat(($surgeryCost*4))>>//
 		<</if>>
-		<br><<link "Deny $him from ever having satisfying sex again">>
-			<<replace "#result2">>
-			You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
-			<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
-			<<= AnalVCheck()>>
-			<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
-			<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave)>>
-			<</replace>>
-		<</link>> //Will cost <<print cashFormat(($surgeryCost*4))>>//
-	<</if>>
 	</span>
 <</if>>
 
@@ -5364,18 +5366,18 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 		<<if overpowerCheck($activeSlave, $PC) >= random(1,100)>>
 			You struggle underneath $his grip and manage to wriggle your arms free. You grab the amorous bull and effortlessly flip $him off of you. $He might be strong, but you are <<if $arcologies[0].FSPhysicalIdealist != "unset">>a chiseled god<<if $PC.title == 0>>dess<</if>><<else>>far stronger<</if>>.
 			<br><br><span id="result2">
-			<<link "Show $him who's in charge">>
-				<<replace "#result2">>
-				You <<if $PC.dick == 0>>grab your biggest strap-on<<else>>stroke your growing erection<</if>> as $activeSlave.slaveName struggles to right $himself, catching $his hips as $he tries to escape. You show no mercy as you force yourself into $his <<if $activeSlave.anus == 0>>virgin<</if>> ass and viciously fuck $him like $he intended to do to you. You savor the sight of your every thrust against $his prostate forcing spurts of precum out $his gigantic, throbbing erection. You pick up the pace as $he climaxes, soaking the sheets beneath $him; $he's not getting out of this until you are satisfied. By the end of things, the master suite reeks of fresh cum and $activeSlave.slaveName's twitching body is the center piece of $his semen puddle. The sheets will definitely need a changing, you note, as $his semi-erect cock twitches and a thick rope of jism sprays forth.
-				<<= AnalVCheck(5)>>
-				<</replace>>
-			<</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
-			<br><<link "Just get $him out of here">>
-				<<replace "#result2">>
-				You grab $activeSlave.slaveName by the scruff of $his neck as $he struggles to right $himself and literally throw $him out of your room and into the hallway, where $he lands with a painful-sounding crash. You decide to deal with getting that mess cleaned up later; for now, you're going back to bed.
-				<<set $activeSlave.health -= 10>>
-				<</replace>>
-			<</link>>
+				<<link "Show $him who's in charge">>
+					<<replace "#result2">>
+					You <<if $PC.dick == 0>>grab your biggest strap-on<<else>>stroke your growing erection<</if>> as $activeSlave.slaveName struggles to right $himself, catching $his hips as $he tries to escape. You show no mercy as you force yourself into $his <<if $activeSlave.anus == 0>>virgin<</if>> ass and viciously fuck $him like $he intended to do to you. You savor the sight of your every thrust against $his prostate forcing spurts of precum out $his gigantic, throbbing erection. You pick up the pace as $he climaxes, soaking the sheets beneath $him; $he's not getting out of this until you are satisfied. By the end of things, the master suite reeks of fresh cum and $activeSlave.slaveName's twitching body is the center piece of $his semen puddle. The sheets will definitely need a changing, you note, as $his semi-erect cock twitches and a thick rope of jism sprays forth.
+					<<= AnalVCheck(5)>>
+					<</replace>>
+				<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
+				<br><<link "Just get $him out of here">>
+					<<replace "#result2">>
+					You grab $activeSlave.slaveName by the scruff of $his neck as $he struggles to right $himself and literally throw $him out of your room and into the hallway, where $he lands with a painful-sounding crash. You decide to deal with getting that mess cleaned up later; for now, you're going back to bed.
+					<<set $activeSlave.health -= 10>>
+					<</replace>>
+				<</link>>
 			</span>
 		<<else>>
 			You struggle underneath $his grip and manage to wriggle your arms free. You push at the amorous bull and attempt to lift the heavy $girl off you. $activeSlave.slaveName takes this poorly and rams $his gigantic dick straight into your vagina and through your cervix. You pass out from the pain.
@@ -5710,15 +5712,15 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			<</if>>
 			<<set $activeSlave.weight -= 5>>
 		<</replace>>
-	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 /*
 <<if canPenetrate($activeSlave) && $PC.belly < 1500 && (($activeSlave.height >= $PC.height*1.5) || $activeSlave.muscles > 70)>>
 	<br><<link "Take $him for a jog">>
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
-		<</replace>> //This option will penetrate you//
-	<</link>>
+		<</replace>>
+	<</link>> //This option will penetrate you//
 <</if>>
 */
 <br><<link "Send $him on $his way">>
@@ -5741,162 +5743,162 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 <<link "Apply lotion liberally">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You reach down to take $his hands, and pull $him up to stand in front of you before crushing $him in a frankly sexual embrace. Taking charge of the lotion, you apply it to your hands and start with $his face. $He submits to your close attention, even closing $his eyes so you can get $his eyelids, only a slight quickening of breath betraying $his intensity of feeling at having you do this. You take your time, which turns into exquisite sexual torture when you finally reach $his <<if $activeSlave.boobs > 2000>>incredible breasts, which stand out so far in front of $him that you have to reach around their mass rather inelegantly<<elseif $activeSlave.boobs > 800>>heavy breasts<<else>>lovely chest<</if>>. When your warm, moist hands <<if $activeSlave.nipples != "fuckable">>rub<<else>>slip into<</if>> $his<<if $activeSlave.lactation > 0>> milky<</if>> nipples, $he cannot suppress a moan. You take pity, take $his hands, guide them to the lotion bottle, and coat them generously. Then, you place $his hands in yours and move them to between $his legs, manipulating them like a music teacher guiding a pupil's hands on an instrument, guiding $him in gentle masturbation. You go back to applying lotion to the rest of $his body, enjoying the slave's intense pleasure. When you've covered every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of $him, you hug $him close, returning your hands to $his nipples <<if $PC.dick == 1>>and pushing your rock-hard prick in between $his well-lubricated thighs<<if $PC.vagina == 1>>, <</if>><</if>><<if $PC.vagina == 1>>after guiding one of $hers around behind $him to see to your pussy<</if>>. $He quickens $his pace<<if canSee($activeSlave)>> and raises $his gaze to the mirror, seeing $his magnificently nude, $activeSlave.skin skin flushed with arousal<<else>>, feeling $his magnificently nude, $activeSlave.skin skin flush with arousal<</if>> as $his
-	<<if ($activeSlave.chastityPenis == 1)>>
-		<<if canDoAnal($activeSlave)>>
-			eager fingering of $his anus turn frantic.
+		You reach down to take $his hands, and pull $him up to stand in front of you before crushing $him in a frankly sexual embrace. Taking charge of the lotion, you apply it to your hands and start with $his face. $He submits to your close attention, even closing $his eyes so you can get $his eyelids, only a slight quickening of breath betraying $his intensity of feeling at having you do this. You take your time, which turns into exquisite sexual torture when you finally reach $his <<if $activeSlave.boobs > 2000>>incredible breasts, which stand out so far in front of $him that you have to reach around their mass rather inelegantly<<elseif $activeSlave.boobs > 800>>heavy breasts<<else>>lovely chest<</if>>. When your warm, moist hands <<if $activeSlave.nipples != "fuckable">>rub<<else>>slip into<</if>> $his<<if $activeSlave.lactation > 0>> milky<</if>> nipples, $he cannot suppress a moan. You take pity, take $his hands, guide them to the lotion bottle, and coat them generously. Then, you place $his hands in yours and move them to between $his legs, manipulating them like a music teacher guiding a pupil's hands on an instrument, guiding $him in gentle masturbation. You go back to applying lotion to the rest of $his body, enjoying the slave's intense pleasure. When you've covered every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of $him, you hug $him close, returning your hands to $his nipples <<if $PC.dick == 1>>and pushing your rock-hard prick in between $his well-lubricated thighs<<if $PC.vagina == 1>>, <</if>><</if>><<if $PC.vagina == 1>>after guiding one of $hers around behind $him to see to your pussy<</if>>. $He quickens $his pace<<if canSee($activeSlave)>> and raises $his gaze to the mirror, seeing $his magnificently nude, $activeSlave.skin skin flushed with arousal<<else>>, feeling $his magnificently nude, $activeSlave.skin skin flush with arousal<</if>> as $his
+		<<if ($activeSlave.chastityPenis == 1)>>
+			<<if canDoAnal($activeSlave)>>
+				eager fingering of $his anus turn frantic.
+			<<else>>
+				frantic taint rubbing starts to pay off.
+			<</if>>
+		<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
+			frantic rubbing starts to produce lewd noises.
+		<<elseif $activeSlave.dick > 0>>
+			jacking off starts to produce lewd noises.
+		<<elseif canDoVaginal($activeSlave) || canDoVaginal($activeSlave)>>
+			index and middle fingers slip inside $himself.
 		<<else>>
 			frantic taint rubbing starts to pay off.
 		<</if>>
-	<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
-		frantic rubbing starts to produce lewd noises.
-	<<elseif $activeSlave.dick > 0>>
-		jacking off starts to produce lewd noises.
-	<<elseif canDoVaginal($activeSlave) || canDoVaginal($activeSlave)>>
-		index and middle fingers slip inside $himself.
-	<<else>>
-		frantic taint rubbing starts to pay off.
-	<</if>>
-	$He gasps your name with $his orgasm, and then turns and @@.mediumaquamarine;thanks you@@ prettily.
-	<<set $activeSlave.trust += 5>>
+		$He gasps your name with $his orgasm, and then turns and @@.mediumaquamarine;thanks you@@ prettily.
+		<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "Fist $his ass">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him to grab $his ankles. $He giggles and<<if $activeSlave.belly >= 5000>> carefully<</if>> complies<<if $activeSlave.belly >= 120000>> to the best of $his ability<</if>>, relaxing $his <<if $activeSlave.anus > 2>>asspussy<<elseif $activeSlave.anus == 2>>asshole<<else>>little ass<</if>> in the expectation of <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>, but starts with surprise when $he feels two warm, lubricated fingers slide into $his rectum.
-	<<if $activeSlave.anus > 2>>
-		$He moans when you add a third, and grunts when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and relaxes completely. The wide part of your hand, at the knuckles, squeezes into $him without much trouble, and $he lets out a huge sigh. When you start to fuck $him, though, $he collapses to $his knees,
-		<<if ($activeSlave.fetish == "buttslut")>>
-			<<if !canTalk($activeSlave)>>
-				whining and begging nonverbally
+	<br><<link "Fist $his ass">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him to grab $his ankles. $He giggles and<<if $activeSlave.belly >= 5000>> carefully<</if>> complies<<if $activeSlave.belly >= 120000>> to the best of $his ability<</if>>, relaxing $his <<if $activeSlave.anus > 2>>asspussy<<elseif $activeSlave.anus == 2>>asshole<<else>>little ass<</if>> in the expectation of <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>, but starts with surprise when $he feels two warm, lubricated fingers slide into $his rectum.
+			<<if $activeSlave.anus > 2>>
+				$He moans when you add a third, and grunts when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and relaxes completely. The wide part of your hand, at the knuckles, squeezes into $him without much trouble, and $he lets out a huge sigh. When you start to fuck $him, though, $he collapses to $his knees,
+				<<if ($activeSlave.fetish == "buttslut")>>
+					<<if !canTalk($activeSlave)>>
+						whining and begging nonverbally
+					<<else>>
+						panting, "Plea<<s>>e, fi<<s>>t my hole without mer<<c>>y, <<Master>>!"
+					<</if>>
+				<<else>>
+					whining and begging nonverbally.
+				<</if>>
+				You kick the lotion towards $his hand; $he gets the message and starts to frantically
+				<<if ($activeSlave.chastityPenis == 1)>>
+					rub $his taint.
+				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
+					rub $himself.
+				<<elseif $activeSlave.dick > 0>>
+					jerk off.
+				<<elseif canDoVaginal($activeSlave)>>
+					jill off.
+				<<else>>
+					rub $his taint.
+				<</if>>
+				$He manages to climax promptly, $his overstimulated sphincter helping, no doubt. $He slumps to the ground when you withdraw your hand, gasping, but you haul $him around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and groaning, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's already masturbating again.
+			<<elseif $activeSlave.anus == 2>>
+				$He grunts when you add a third, and begins to beg when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and does $his best to relax. The wide part of your hand, at the knuckles, squeezes into $him after some effort on your part and squealing on $his part. When you withdraw it and press it back in, slowly starting to fist fuck $his ass, though, $he collapses to $his knees,
+				<<if ($activeSlave.fetish == "buttslut")>>
+					<<if !canTalk($activeSlave)>>
+						crying
+					<<else>>
+						sobbing, "Plea<<s>>e, fi<<s>>t my tight hole without mer<<c>>y, <<Master>>!"
+					<</if>>
+				<<else>>
+					crying.
+				<</if>>
+				You kick the lotion towards $his hand; $he gets the message and starts to frantically
+				<<if ($activeSlave.chastityPenis == 1)>>
+					rub $his taint.
+				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
+					rub $himself.
+				<<elseif $activeSlave.dick > 0>>
+					jerk off.
+				<<elseif canDoVaginal($activeSlave)>>
+					jill off.
+				<<else>>
+					rub $his taint.
+				<</if>>
+				$He manages to climax eventually. $He slumps to the ground when you withdraw your hand, gasping, but you haul $his around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and weeping, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's tentatively masturbating again.
 			<<else>>
-				panting, "Plea<<s>>e, fi<<s>>t my hole without mer<<c>>y, <<Master>>!"
+				$He squeals when you add a third, and begins to shamelessly beg for mercy when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and collapses to $his knees,
+				<<if ($activeSlave.fetish == "buttslut")>>
+					<<if !canTalk($activeSlave)>>
+						begging you to be gentle
+					<<else>>
+						sobbing, "Plea<<s>>e, don't ruin my favorite hole, <<Master>>!"
+					<</if>>
+				<<else>>
+					begging you to be gentle.
+				<</if>>
+				You kick the lotion towards $his hand; $he gets the message and starts to frantically
+				<<if ($activeSlave.chastityPenis == 1)>>
+					rub $his taint.
+				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
+					rub $himself.
+				<<elseif $activeSlave.dick > 0>>
+					jerk off.
+				<<elseif canDoVaginal($activeSlave)>>
+					jill off.
+				<<else>>
+					rub $his taint.
+				<</if>>
+				As $he works $his sphincter relaxes bit by bit, and you advance your fist up $his butt. $He screams in surprise and relief when your knuckles finally make it in, and achieves a crying orgasm shortly thereafter. $He slumps to the ground when you withdraw your hand, moaning incoherently, but you haul $him around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ crying quietly in confusion and disarray, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, and by the time you finish $he hasn't yet worked up the courage to touch $his @@.lime;newly widened backdoor.@@
+				<<set $activeSlave.anus += 1>>
 			<</if>>
-		<<else>>
-			whining and begging nonverbally.
-		<</if>>
-		You kick the lotion towards $his hand; $he gets the message and starts to frantically
-		<<if ($activeSlave.chastityPenis == 1)>>
-			rub $his taint.
-		<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
-			rub $himself.
-		<<elseif $activeSlave.dick > 0>>
-			jerk off.
-		<<elseif canDoVaginal($activeSlave)>>
-			jill off.
-		<<else>>
-			rub $his taint.
-		<</if>>
-		$He manages to climax promptly, $his overstimulated sphincter helping, no doubt. $He slumps to the ground when you withdraw your hand, gasping, but you haul $him around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and groaning, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's already masturbating again.
-	<<elseif $activeSlave.anus == 2>>
-		$He grunts when you add a third, and begins to beg when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and does $his best to relax. The wide part of your hand, at the knuckles, squeezes into $him after some effort on your part and squealing on $his part. When you withdraw it and press it back in, slowly starting to fist fuck $his ass, though, $he collapses to $his knees,
-		<<if ($activeSlave.fetish == "buttslut")>>
-			<<if !canTalk($activeSlave)>>
-				crying
-			<<else>>
-				sobbing, "Plea<<s>>e, fi<<s>>t my tight hole without mer<<c>>y, <<Master>>!"
-			<</if>>
-		<<else>>
-			crying.
-		<</if>>
-		You kick the lotion towards $his hand; $he gets the message and starts to frantically
-		<<if ($activeSlave.chastityPenis == 1)>>
-			rub $his taint.
-		<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
-			rub $himself.
-		<<elseif $activeSlave.dick > 0>>
-			jerk off.
-		<<elseif canDoVaginal($activeSlave)>>
-			jill off.
-		<<else>>
-			rub $his taint.
-		<</if>>
-		$He manages to climax eventually. $He slumps to the ground when you withdraw your hand, gasping, but you haul $his around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and weeping, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's tentatively masturbating again.
-	<<else>>
-		$He squeals when you add a third, and begins to shamelessly beg for mercy when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and collapses to $his knees,
-		<<if ($activeSlave.fetish == "buttslut")>>
-			<<if !canTalk($activeSlave)>>
-				begging you to be gentle
-			<<else>>
-				sobbing, "Plea<<s>>e, don't ruin my favorite hole, <<Master>>!"
-			<</if>>
-		<<else>>
-			begging you to be gentle.
-		<</if>>
-		You kick the lotion towards $his hand; $he gets the message and starts to frantically
-		<<if ($activeSlave.chastityPenis == 1)>>
-			rub $his taint.
-		<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
-			rub $himself.
-		<<elseif $activeSlave.dick > 0>>
-			jerk off.
-		<<elseif canDoVaginal($activeSlave)>>
-			jill off.
-		<<else>>
-			rub $his taint.
-		<</if>>
-		As $he works $his sphincter relaxes bit by bit, and you advance your fist up $his butt. $He screams in surprise and relief when your knuckles finally make it in, and achieves a crying orgasm shortly thereafter. $He slumps to the ground when you withdraw your hand, moaning incoherently, but you haul $him around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ crying quietly in confusion and disarray, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, and by the time you finish $he hasn't yet worked up the courage to touch $his @@.lime;newly widened backdoor.@@
-		<<set $activeSlave.anus += 1>>
-	<</if>>
-	<<set $activeSlave.devotion += 5>>
-	<</replace>>
-<</link>>
+			<<set $activeSlave.devotion += 5>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
-<br><<link "Fist $his pussy">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You slide up behind $him and run a possessive hand down<<if $activeSlave.belly >= 1500>> $his swollen midriff down<</if>> to finger $his pussylips. $He compliantly cocks $his hips backward for you, and is surprised to find a couple of warm, lubricated fingers rather than <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> sliding into $his ready cunt.
-	<<if $activeSlave.vagina > 2>>
-		$He moans when you add a third, and grunts when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and relaxes completely. The wide part of your hand, at the knuckles, squeezes into $him without much trouble, and $he lets out a huge sigh. When you start to fuck $his huge cunt with your hand, though, $he collapses <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>to $his knees<</if>>, whining and begging nonverbally. You kick the lotion towards $his hand; $he gets the message and starts to frantically
-		<<if ($activeSlave.chastityPenis == 1)>>
-			rub $his taint.
-		<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
-			rub $himself.
-		<<elseif $activeSlave.dick > 0>>
-			jerk off.
-		<<elseif canDoVaginal($activeSlave)>>
-			rub $his clit.
-		<<else>>
-			rub $his taint.
-		<</if>>
-		$He manages to climax promptly, $his big vagina squeezing your hand strongly. $He slumps to the ground when you withdraw your hand, gasping, the collapse giving you a good view into $his open, pink-walled channel. You haul $his around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and groaning, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's replaced your hand with $his own.
-		<<set $activeSlave.devotion += 5>>
-	<<elseif $activeSlave.vagina == 2>>
-		$He grunts when you add a third, and begins to beg when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and hurriedly gets down <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>on $his knees<</if>> to present a more comfortable angle. The wide part of your hand, at the knuckles, squeezes into $him after some effort on your part and squealing on $his part. You kick the lotion towards $his hand; $he gets the message and starts to frantically
-		<<if ($activeSlave.chastityPenis == 1)>>
-			rub $his taint
-		<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
-			rub $himself
-		<<elseif $activeSlave.dick > 0>>
-			jerk off
-		<<elseif canDoVaginal($activeSlave)>>
-			rub $his clit
-		<<else>>
-			rub $his taint
-		<</if>>
-		as you slowly fist fuck $him. $He manages to climax eventually. $He slumps to the ground when you withdraw your hand, gasping, the collapse giving you a good view into $his now-gaping, pink-walled channel. You haul $him around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and gasping, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's masturbating again.
-		<<set $activeSlave.devotion += 5>>
-	<<else>>
-		$He squeals when you add a third, and begins to shamelessly beg for mercy when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and collapses <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>to $his knees<</if>>, begging you to be gentle. You kick the lotion towards $his hand; $he gets the message and starts to frantically
-		<<if ($activeSlave.chastityPenis == 1)>>
-			rub $his taint,
-		<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
-			rub $himself,
-		<<elseif $activeSlave.dick > 0>>
-			jerk off,
-		<<elseif canDoVaginal($activeSlave)>>
-			rub $his clit,
-		<<else>>
-			rub $his taint,
-		<</if>>
-		hoping to relax a little. As $he works $his pussy relaxes bit by bit, and you advance your fist into $his womanhood. $He screams in surprise and relief when your knuckles finally make it in, and achieves a crying orgasm shortly thereafter. $He slumps to the ground when you withdraw your hand, moaning incoherently, the collapse giving you a good view into $his now-gaping, pink-walled channel. You haul $his around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ crying quietly with overstimulation, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's gingerly massaging $his @@.lime;newly loosened cunt.@@
-		<<set $activeSlave.devotion += 5, $activeSlave.vagina += 1>>
-	<</if>>
-	<</replace>>
-<</link>>
+	<br><<link "Fist $his pussy">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You slide up behind $him and run a possessive hand down<<if $activeSlave.belly >= 1500>> $his swollen midriff down<</if>> to finger $his pussylips. $He compliantly cocks $his hips backward for you, and is surprised to find a couple of warm, lubricated fingers rather than <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> sliding into $his ready cunt.
+			<<if $activeSlave.vagina > 2>>
+				$He moans when you add a third, and grunts when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and relaxes completely. The wide part of your hand, at the knuckles, squeezes into $him without much trouble, and $he lets out a huge sigh. When you start to fuck $his huge cunt with your hand, though, $he collapses <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>to $his knees<</if>>, whining and begging nonverbally. You kick the lotion towards $his hand; $he gets the message and starts to frantically
+				<<if ($activeSlave.chastityPenis == 1)>>
+					rub $his taint.
+				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
+					rub $himself.
+				<<elseif $activeSlave.dick > 0>>
+					jerk off.
+				<<elseif canDoVaginal($activeSlave)>>
+					rub $his clit.
+				<<else>>
+					rub $his taint.
+				<</if>>
+				$He manages to climax promptly, $his big vagina squeezing your hand strongly. $He slumps to the ground when you withdraw your hand, gasping, the collapse giving you a good view into $his open, pink-walled channel. You haul $his around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and groaning, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's replaced your hand with $his own.
+				<<set $activeSlave.devotion += 5>>
+			<<elseif $activeSlave.vagina == 2>>
+				$He grunts when you add a third, and begins to beg when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and hurriedly gets down <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>on $his knees<</if>> to present a more comfortable angle. The wide part of your hand, at the knuckles, squeezes into $him after some effort on your part and squealing on $his part. You kick the lotion towards $his hand; $he gets the message and starts to frantically
+				<<if ($activeSlave.chastityPenis == 1)>>
+					rub $his taint
+				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
+					rub $himself
+				<<elseif $activeSlave.dick > 0>>
+					jerk off
+				<<elseif canDoVaginal($activeSlave)>>
+					rub $his clit
+				<<else>>
+					rub $his taint
+				<</if>>
+				as you slowly fist fuck $him. $He manages to climax eventually. $He slumps to the ground when you withdraw your hand, gasping, the collapse giving you a good view into $his now-gaping, pink-walled channel. You haul $him around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and gasping, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's masturbating again.
+				<<set $activeSlave.devotion += 5>>
+			<<else>>
+				$He squeals when you add a third, and begins to shamelessly beg for mercy when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and collapses <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>to $his knees<</if>>, begging you to be gentle. You kick the lotion towards $his hand; $he gets the message and starts to frantically
+				<<if ($activeSlave.chastityPenis == 1)>>
+					rub $his taint,
+				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
+					rub $himself,
+				<<elseif $activeSlave.dick > 0>>
+					jerk off,
+				<<elseif canDoVaginal($activeSlave)>>
+					rub $his clit,
+				<<else>>
+					rub $his taint,
+				<</if>>
+				hoping to relax a little. As $he works $his pussy relaxes bit by bit, and you advance your fist into $his womanhood. $He screams in surprise and relief when your knuckles finally make it in, and achieves a crying orgasm shortly thereafter. $He slumps to the ground when you withdraw your hand, moaning incoherently, the collapse giving you a good view into $his now-gaping, pink-walled channel. You haul $his around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ crying quietly with overstimulation, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's gingerly massaging $his @@.lime;newly loosened cunt.@@
+				<<set $activeSlave.devotion += 5, $activeSlave.vagina += 1>>
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "sore shoulders">>
@@ -5904,97 +5906,97 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 <<link "Make $him work it out">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him to get ready to go into a handstand. $He looks puzzled, but anticipatory, and hurries to comply.
-	<<if $activeSlave.boobs > 2000>> $He has to be careful doing it, since $his huge boobs come down and almost smother the poor slave once $he's inverted.<</if>>
-	<<if $activeSlave.belly >= 300000>>
-		$His belly is so hugely distended, $he'll practically require your assistance to stay inverted.
-	<<elseif $activeSlave.weight > 130>>
-		$His belly is so fat that $he has to take precautions to handle the massive shift in its mass when $he inverts.
-	<</if>>
-	You get up from behind your desk,<<if $PC.dick == 0>> don a strap-on,<</if>> and stand behind $him. You grab $him by the ankles, and $he giggles self-consciously, aware that in this position, $his <<if $activeSlave.vagina > -1>>holes are on display pretty much as openly as they can possibly be<<else>>butthole is on display pretty much as openly as it can possibly be<</if>>. $He groans with soreness as you lift $him by $his legs, pulling $him upward until $he's in a full handstand, $his knees clasping you on either side to steady $him. Carefully, you maneuver your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> to line it up with $his <<if $activeSlave.vagina > -1>>pussy<<else>>asspussy<</if>>. Realizing what you intend, $he arches $his back and cocks $his hips,<<if $activeSlave.belly >= 5000>> pushing $his already bulging stomach even further out from $him, all the while<</if>> grunting and shivering as $his sore muscles stretch to support $him in the necessary gymnastic pose to angle $his hole just right.
-	<br><br>
-	With the combined pain and pleasure of the stretch already overstimulating $him, $he gives a huge sobbing gasp as you enter $him. You move your hands to $his
-	<<if $activeSlave.weight > 95>>
-		soft
-	<<elseif $activeSlave.weight > 10>>
-		plush
-	<<elseif $activeSlave.muscles > 30>>
-		well-muscled
-	<<else>>
-		trim
-	<</if>>
-	hips one at a time, and then begin to slowly move $his inverted body towards you and away from you, impaling $him. $His whole body shakes with pleasure and exertion, and when $he orgasms, you have to support $him to stop $him crashing to the ground<<if $activeSlave.belly >= 300000>>, a struggle thanks to $his excessive weight<</if>>. You let $him down onto the floor slowly<<if $activeSlave.vagina > -1>>, but tell $him that after a short break, $he's to get back up so you can see to $his anus<</if>>. $He's breathing very hard and still coming down off a terrific head rush, so $he just @@.hotpink;blows you a kiss.@@
-	<<set $activeSlave.devotion += 4>>
-	<<= BothVCheck()>>
+		You tell $him to get ready to go into a handstand. $He looks puzzled, but anticipatory, and hurries to comply.
+		<<if $activeSlave.boobs > 2000>> $He has to be careful doing it, since $his huge boobs come down and almost smother the poor slave once $he's inverted.<</if>>
+		<<if $activeSlave.belly >= 300000>>
+			$His belly is so hugely distended, $he'll practically require your assistance to stay inverted.
+		<<elseif $activeSlave.weight > 130>>
+			$His belly is so fat that $he has to take precautions to handle the massive shift in its mass when $he inverts.
+		<</if>>
+		You get up from behind your desk,<<if $PC.dick == 0>> don a strap-on,<</if>> and stand behind $him. You grab $him by the ankles, and $he giggles self-consciously, aware that in this position, $his <<if $activeSlave.vagina > -1>>holes are on display pretty much as openly as they can possibly be<<else>>butthole is on display pretty much as openly as it can possibly be<</if>>. $He groans with soreness as you lift $him by $his legs, pulling $him upward until $he's in a full handstand, $his knees clasping you on either side to steady $him. Carefully, you maneuver your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> to line it up with $his <<if $activeSlave.vagina > -1>>pussy<<else>>asspussy<</if>>. Realizing what you intend, $he arches $his back and cocks $his hips,<<if $activeSlave.belly >= 5000>> pushing $his already bulging stomach even further out from $him, all the while<</if>> grunting and shivering as $his sore muscles stretch to support $him in the necessary gymnastic pose to angle $his hole just right.
+		<br><br>
+		With the combined pain and pleasure of the stretch already overstimulating $him, $he gives a huge sobbing gasp as you enter $him. You move your hands to $his
+		<<if $activeSlave.weight > 95>>
+			soft
+		<<elseif $activeSlave.weight > 10>>
+			plush
+		<<elseif $activeSlave.muscles > 30>>
+			well-muscled
+		<<else>>
+			trim
+		<</if>>
+		hips one at a time, and then begin to slowly move $his inverted body towards you and away from you, impaling $him. $His whole body shakes with pleasure and exertion, and when $he orgasms, you have to support $him to stop $him crashing to the ground<<if $activeSlave.belly >= 300000>>, a struggle thanks to $his excessive weight<</if>>. You let $him down onto the floor slowly<<if $activeSlave.vagina > -1>>, but tell $him that after a short break, $he's to get back up so you can see to $his anus<</if>>. $He's breathing very hard and still coming down off a terrific head rush, so $he just @@.hotpink;blows you a kiss.@@
+		<<set $activeSlave.devotion += 4>>
+		<<= BothVCheck()>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
 <br><<link "Give $him a massage">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You vault your desk, fold yourself into a cross-legged pose with your back against its front,
-	<<if canSee($activeSlave)>>and point to the floor in front of you.
-		<<if ($activeSlave.attrXX > 65) && ($PC.boobs == 1)>>
-			(As you do, $he watches the effects of the motion on your breasts with something like reverence<<if $PC.boobsImplant == 1>>, even though they don't move much thanks to your implants<</if>>.)
-		<<elseif ($activeSlave.attrXY > 65) && ($PC.boobs == 0)>>
-			(As you did, $he took in the powerful play of your muscles with something like reverence<<if $PC.balls > 2 || $PC.ballsImplant > 2>>. $He certainly noticed the motion of your massive nuts too<</if>>.)
-		<</if>>
-	<<elseif canHear($activeSlave)>>
-		and loudly tap the floor in front of you.
-	<<else>>
-		and reach out to lightly tug $him towards you.
-	<</if>>
-	$He hurries over and gets down on the floor with you, conforming to your manual guidance that $he should sit with $his back to you. You place your hands on either side of $his neck, run them capably down $his spine, and then back up to explore $his shoulders. $He gasps as $he realizes that you intend to give $him a massage, @@.mediumaquamarine;impressed@@ and a little perturbed that you would do this for $him. Indeed, it's unusual for a slaveowner to do something like this, but it's easily justifiable as hands-on maintenance of your property. You tell $him so as your fingers begin to probe $his muscles in more detail, eliciting a shiver<<if canTalk($activeSlave)>>.<<else>> and a tiny "Ye<<s>>, <<Master>>."<</if>> $He begins to breathe rather hard, and you notice
-	<<if $activeSlave.belly >= 120000>>
-		$him starting to shift $his hips uncomfortably. $His _belly belly blocks any view of $his crotch in the reflective wall opposite $him, but you can smell the precum beginning to flow under the crotch hiding orb.
-	<<elseif ($activeSlave.chastityPenis == 1)>>
-		$him starting to shift $his hips uncomfortably, though of course you see in the reflective wall opposite $him that $his cock remains as caged as ever.
-	<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-		$him starting to shift $his hips uncomfortably, though of course you see in the reflective wall opposite $him that $his cock remains as limp as ever.
-	<<elseif ($activeSlave.dick > 0)>>
-		$him starting to shift $his hips uncomfortably. You see in the reflective wall opposite $him that $his cock is almost agonizingly hard.
-	<<elseif $activeSlave.vagina == -1>>
-		$him starting to shift $his ass uncomfortably. $He must really want it, and of course, $he knows that $his butt is $his main source of stimulation now.
-	<<else>>
-		the wonderful aroma of female arousal beginning to permeate the office as $he starts to shift $his hips uncomfortably.
-	<</if>>
-	<<set $activeSlave.trust += 2>>
-	<br><br><span id="result2">
-	<<link "Tell $him $he's free to masturbate">>
-	<<replace "#result2">>
-		You lean forward until your lips graze one of $his ears, and tell $him that $he can touch $himself if $he wants.
-		<<if !canTalk($activeSlave)>>
-			$He raises a shaky hand to gesture @@.mediumaquamarine;$his thanks@@ as the other
+		You vault your desk, fold yourself into a cross-legged pose with your back against its front,
+		<<if canSee($activeSlave)>>and point to the floor in front of you.
+			<<if ($activeSlave.attrXX > 65) && ($PC.boobs == 1)>>
+				(As you do, $he watches the effects of the motion on your breasts with something like reverence<<if $PC.boobsImplant == 1>>, even though they don't move much thanks to your implants<</if>>.)
+			<<elseif ($activeSlave.attrXY > 65) && ($PC.boobs == 0)>>
+				(As you did, $he took in the powerful play of your muscles with something like reverence<<if $PC.balls > 2 || $PC.ballsImplant > 2>>. $He certainly noticed the motion of your massive nuts too<</if>>.)
+			<</if>>
+		<<elseif canHear($activeSlave)>>
+			and loudly tap the floor in front of you.
 		<<else>>
-			"@@.mediumaquamarine;Thank you@@ <<Master>>!" $he squeaks as a hand
+			and reach out to lightly tug $him towards you.
 		<</if>>
-		dives for $his crotch. $He
-		<<if ($activeSlave.vagina == -1) && ($activeSlave.dick == 0)>>
-			rubs $his perineum and anus
-		<<elseif ($activeSlave.chastityVagina)>>
-			rubs $his perineum
-		<<elseif ($activeSlave.vagina > -1)>>
-			schlicks $himself
+		$He hurries over and gets down on the floor with you, conforming to your manual guidance that $he should sit with $his back to you. You place your hands on either side of $his neck, run them capably down $his spine, and then back up to explore $his shoulders. $He gasps as $he realizes that you intend to give $him a massage, @@.mediumaquamarine;impressed@@ and a little perturbed that you would do this for $him. Indeed, it's unusual for a slaveowner to do something like this, but it's easily justifiable as hands-on maintenance of your property. You tell $him so as your fingers begin to probe $his muscles in more detail, eliciting a shiver<<if canTalk($activeSlave)>>.<<else>> and a tiny "Ye<<s>>, <<Master>>."<</if>> $He begins to breathe rather hard, and you notice
+		<<if $activeSlave.belly >= 120000>>
+			$him starting to shift $his hips uncomfortably. $His _belly belly blocks any view of $his crotch in the reflective wall opposite $him, but you can smell the precum beginning to flow under the crotch hiding orb.
 		<<elseif ($activeSlave.chastityPenis == 1)>>
-			rubs $his perineum and anus
+			$him starting to shift $his hips uncomfortably, though of course you see in the reflective wall opposite $him that $his cock remains as caged as ever.
 		<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-			rubs $his soft bitchclit
+			$him starting to shift $his hips uncomfortably, though of course you see in the reflective wall opposite $him that $his cock remains as limp as ever.
+		<<elseif ($activeSlave.dick > 0)>>
+			$him starting to shift $his hips uncomfortably. You see in the reflective wall opposite $him that $his cock is almost agonizingly hard.
+		<<elseif $activeSlave.vagina == -1>>
+			$him starting to shift $his ass uncomfortably. $He must really want it, and of course, $he knows that $his butt is $his main source of stimulation now.
 		<<else>>
-			jacks off
+			the wonderful aroma of female arousal beginning to permeate the office as $he starts to shift $his hips uncomfortably.
 		<</if>>
-		shamelessly as you complete the massage, moaning with satisfaction as the competing sources of endorphins suffuse $him.
 		<<set $activeSlave.trust += 2>>
-		<</replace>>
-	<</link>>
-	<<if $activeSlave.anus > 0>>
-	<br><<link "Fuck $him">>
-	<<replace "#result2">>
-		You gently push $his shoulders forward. $He moans as the forward lean stretches $his hip flexors, and then breathes deeply with relief as you pull $his legs back and out of their crossed position. The rush of a completed stretch crashes into $him, and $he relaxes completely. This change of position leaves $him with $his <<if $activeSlave.butt > 6>>massive ass<<elseif $activeSlave.butt > 3>>big butt<<else>>rear<</if>> pointed right at you, and $he knows what's coming next. $His <<if $activeSlave.anus > 2>>loose butthole relaxes completely into a gape that positively begs to be penetrated<<elseif $activeSlave.anus > 1>>relaxed anus opens into a slight gape that positively begs to be penetrated<<else>>tight anus relaxes slightly, $his rosebud begging to be fucked<</if>>. You rise partway to kneel behind $him, <<if $PC.dick == 0>>sliding fingers inside the slave's ass and humping your pussy against the heel of that hand<<else>>using a hand to guide your member inside the slave's ass<<if $PC.vagina == 1>>, not without teasing your own pussylips a bit<</if>><</if>>. $He gasps when your other hand grabs one of $his shoulders and continues the massage. You quickly find that working out a knot in $his muscles produces reflexive reactions across $his whole body, notably including $his anal sphincter. After you've driven $him into a state of @@.hotpink;mindless satiation@@ and climaxed yourself, you let $him slump to the floor and curl up around $his sweaty body.
-		<<set $activeSlave.devotion += 2>>
-		<<= AnalVCheck()>>
-		<</replace>>
-	<</link>>
-	<</if>>
-	</span>
+		<br><br><span id="result2">
+			<<link "Tell $him $he's free to masturbate">>
+			<<replace "#result2">>
+				You lean forward until your lips graze one of $his ears, and tell $him that $he can touch $himself if $he wants.
+				<<if !canTalk($activeSlave)>>
+					$He raises a shaky hand to gesture @@.mediumaquamarine;$his thanks@@ as the other
+				<<else>>
+					"@@.mediumaquamarine;Thank you@@ <<Master>>!" $he squeaks as a hand
+				<</if>>
+				dives for $his crotch. $He
+				<<if ($activeSlave.vagina == -1) && ($activeSlave.dick == 0)>>
+					rubs $his perineum and anus
+				<<elseif ($activeSlave.chastityVagina)>>
+					rubs $his perineum
+				<<elseif ($activeSlave.vagina > -1)>>
+					schlicks $himself
+				<<elseif ($activeSlave.chastityPenis == 1)>>
+					rubs $his perineum and anus
+				<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
+					rubs $his soft bitchclit
+				<<else>>
+					jacks off
+				<</if>>
+				shamelessly as you complete the massage, moaning with satisfaction as the competing sources of endorphins suffuse $him.
+				<<set $activeSlave.trust += 2>>
+				<</replace>>
+			<</link>>
+			<<if $activeSlave.anus > 0>>
+				<br><<link "Fuck $him">>
+				<<replace "#result2">>
+					You gently push $his shoulders forward. $He moans as the forward lean stretches $his hip flexors, and then breathes deeply with relief as you pull $his legs back and out of their crossed position. The rush of a completed stretch crashes into $him, and $he relaxes completely. This change of position leaves $him with $his <<if $activeSlave.butt > 6>>massive ass<<elseif $activeSlave.butt > 3>>big butt<<else>>rear<</if>> pointed right at you, and $he knows what's coming next. $His <<if $activeSlave.anus > 2>>loose butthole relaxes completely into a gape that positively begs to be penetrated<<elseif $activeSlave.anus > 1>>relaxed anus opens into a slight gape that positively begs to be penetrated<<else>>tight anus relaxes slightly, $his rosebud begging to be fucked<</if>>. You rise partway to kneel behind $him, <<if $PC.dick == 0>>sliding fingers inside the slave's ass and humping your pussy against the heel of that hand<<else>>using a hand to guide your member inside the slave's ass<<if $PC.vagina == 1>>, not without teasing your own pussylips a bit<</if>><</if>>. $He gasps when your other hand grabs one of $his shoulders and continues the massage. You quickly find that working out a knot in $his muscles produces reflexive reactions across $his whole body, notably including $his anal sphincter. After you've driven $him into a state of @@.hotpink;mindless satiation@@ and climaxed yourself, you let $him slump to the floor and curl up around $his sweaty body.
+					<<set $activeSlave.devotion += 2>>
+					<<= AnalVCheck()>>
+					<</replace>>
+				<</link>>
+			<</if>>
+		</span>
 	<</replace>>
 <</link>>
 
@@ -6003,133 +6005,133 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 <<link "Make the meeting">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	<<set _meetingBonus = Math.trunc($cash/10000)*1000>>
-	<<if _meetingBonus > 5000>>
-		<<set _meetingBonus = 5000>>
-	<<elseif _meetingBonus < 1000>>
-		<<set _meetingBonus = 1000>>
-	<</if>>
-	You finish the motion and get on with your day. $He burrows into the warm place on the bed where your body lay, which is actually an excellent sign of $his mental state. It suggests that $his dreaming mind is quite comfortable with your presence<<if canSmell($activeSlave)>> and even smell<</if>>. You make the meeting, consoling yourself with the thought that you're hardly lacking for opportunities to <<if $PC.dick == 1>>stick your dick in<<else>>have sex with<</if>> $activeSlave.slaveName. The business opportunity turns out to be @@.yellowgreen;quite profitable;@@ you're glad you didn't pass it up.
-	<<run cashX(_meetingBonus, "event", $activeSlave)>>
+		<<set _meetingBonus = Math.trunc($cash/10000)*1000>>
+		<<if _meetingBonus > 5000>>
+			<<set _meetingBonus = 5000>>
+		<<elseif _meetingBonus < 1000>>
+			<<set _meetingBonus = 1000>>
+		<</if>>
+		You finish the motion and get on with your day. $He burrows into the warm place on the bed where your body lay, which is actually an excellent sign of $his mental state. It suggests that $his dreaming mind is quite comfortable with your presence<<if canSmell($activeSlave)>> and even smell<</if>>. You make the meeting, consoling yourself with the thought that you're hardly lacking for opportunities to <<if $PC.dick == 1>>stick your dick in<<else>>have sex with<</if>> $activeSlave.slaveName. The business opportunity turns out to be @@.yellowgreen;quite profitable;@@ you're glad you didn't pass it up.
+		<<run cashX(_meetingBonus, "event", $activeSlave)>>
 	<</replace>>
 <</link>>
 <br><<link "Call in from where you are">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	<<set _meetingBonus = Math.trunc($cash/10000)*1000>>
-	<<if _meetingBonus > 5000>>
-		<<set _meetingBonus = 5000>>
-	<<elseif _meetingBonus < 1000>>
-		<<set _meetingBonus = 1000>>
-	<</if>>
-	You tell $assistantName to inform your business contacts that you'll be attending the meeting by telepresence. A camera mounted above you focuses tightly on your face, making it look like you're relaxing, but concealing the fact that you have a naked
-	<<if $activeSlave.physicalAge > 30>>
-		$woman
-	<<elseif $activeSlave.physicalAge > 18>>
-		$girl
-	<<elseif $activeSlave.physicalAge > 12>>
-		teen
-	<<else>>
-		kid
-	<</if>>
-	draped across you. The meeting is long enough that your interlocutors eventually realize that something unusual is going on, especially once $he wakes up and starts sleepily <<if $PC.dick == 1>>sucking your dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eating you out<</if>>, out of frame. They're @@.red;slightly annoyed,@@ since having sex during meetings is still considered a minor faux pas, but you @@.yellowgreen;close the deal,@@ and $activeSlave.slaveName is @@.hotpink;very pleased@@ that you would rearrange your affairs to make time for <<if $PC.dick == 1>>one of $his blowjobs<<else>>oral sex with $him<</if>>.
-	<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<run cashX(_meetingBonus, "event", $activeSlave)>>
-	<<run repX(-50, "event", $activeSlave)>>
-	<<set $activeSlave.devotion += 4>>
+		<<set _meetingBonus = Math.trunc($cash/10000)*1000>>
+		<<if _meetingBonus > 5000>>
+			<<set _meetingBonus = 5000>>
+		<<elseif _meetingBonus < 1000>>
+			<<set _meetingBonus = 1000>>
+		<</if>>
+		You tell $assistantName to inform your business contacts that you'll be attending the meeting by telepresence. A camera mounted above you focuses tightly on your face, making it look like you're relaxing, but concealing the fact that you have a naked
+		<<if $activeSlave.physicalAge > 30>>
+			$woman
+		<<elseif $activeSlave.physicalAge > 18>>
+			$girl
+		<<elseif $activeSlave.physicalAge > 12>>
+			teen
+		<<else>>
+			kid
+		<</if>>
+		draped across you. The meeting is long enough that your interlocutors eventually realize that something unusual is going on, especially once $he wakes up and starts sleepily <<if $PC.dick == 1>>sucking your dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eating you out<</if>>, out of frame. They're @@.red;slightly annoyed,@@ since having sex during meetings is still considered a minor faux pas, but you @@.yellowgreen;close the deal,@@ and $activeSlave.slaveName is @@.hotpink;very pleased@@ that you would rearrange your affairs to make time for <<if $PC.dick == 1>>one of $his blowjobs<<else>>oral sex with $him<</if>>.
+		<<set $activeSlave.counter.oral++, $oralTotal++>>
+		<<run cashX(_meetingBonus, "event", $activeSlave)>>
+		<<run repX(forceNeg(50), "event", $activeSlave)>>
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Go back to sleep">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $assistantName to cancel the appointment, plant a kiss atop your bedmate's sleeping head, and go back to sleep yourself, with the peerless comfort of a warm, naked
-	<<if $activeSlave.physicalAge > 30>>
-		$woman
-	<<elseif $activeSlave.physicalAge > 18>>
-		$girl
-	<<elseif $activeSlave.physicalAge > 12>>
-		teen
-	<<else>>
-		kid
-	<</if>>
-	cuddled up beside you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> lowers the temperature in the room and directs another slave to quietly put a couple of warm blankets over you and $activeSlave.slaveName. When you finally wake, several hours later, the effect is magical. You're ensconced in a little island of warmth and comfort, a tiny universe of relaxation populated only by yourself and your slave. $He woke before you did, but remained still to avoid disturbing you. <<if canSee($activeSlave)>>From the lazy, contented look in $his <<= App.Desc.eyeColor($activeSlave)>> eyes as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face when you opened your eyes.@@<<else>>From the serene expression on $his face as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face, lost in the soothing sounds of your breathing, when you opened your eyes.@@<</if>>
-	<br><br>
-	Since you're awake, $he rolls onto $his face and then further, to place $his back and <<if $activeSlave.butt > 5>>massive ass<<elseif $activeSlave.butt > 2>>healthy rear<<else>>butt<</if>> against you, making sure to drag $his $activeSlave.nipples nipples against you the whole way. You accept the invitation and spoon $him, <<if $activeSlave.height >= 185>>your bodies lining up well, since $he's as tall as you are<<elseif $activeSlave.height >= 160>>$his body fitting neatly within the embrace of your larger frame<<else>>$his small body fitting entirely within your embrace<</if>>. $His <<if $activeSlave.muscles > 30>>muscles<<else>>softness<</if>> and warmth awaken your desire, and $he feels <<if $PC.dick == 1>>your stiffening cock beginning to press against <<if $activeSlave.amp == 1>>$his perineum. $He shifts to slide $himself along its shaft<<if $PC.vagina == 1>> and down to where your pussy begins<</if>><<else>>the place between $his thighs. $He shifts to let your dick slide between them, and reaches down to massage its head<</if>><<else>>heat building against $his butt. <<if $activeSlave.amp == 1>>$He does $his best to grind against you, since $he can't caress you without hands<<else>>$He snakes a hand behind $himself to caress your womanhood, and begins to gently masturbate with the other<</if>><</if>>.
-	<<if $PC.dick == 1>>
-		<<if ($activeSlave.vagina > 0) && ($activeSlave.anus > 0) && canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-			$He begins to shift farther forward and back along your dick, causing its head to press against $his anus and then slide forward to nestle between $his pussylips. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek.
-			<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
-				$He hikes $himself up a bit, and then slides $his anal sphincter slowly around and down your cock until you're resting all the way up $his ass. You share loving anal
-				<<set _didAnal = 1>>
-			<<else>>
-				$He hikes $himself up to give your dickhead a last teasing press against $his butt before cocking $his hips and sliding your cock into $his soaking cunt. You make love
+		You tell $assistantName to cancel the appointment, plant a kiss atop your bedmate's sleeping head, and go back to sleep yourself, with the peerless comfort of a warm, naked
+		<<if $activeSlave.physicalAge > 30>>
+			$woman
+		<<elseif $activeSlave.physicalAge > 18>>
+			$girl
+		<<elseif $activeSlave.physicalAge > 12>>
+			teen
+		<<else>>
+			kid
+		<</if>>
+		cuddled up beside you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> lowers the temperature in the room and directs another slave to quietly put a couple of warm blankets over you and $activeSlave.slaveName. When you finally wake, several hours later, the effect is magical. You're ensconced in a little island of warmth and comfort, a tiny universe of relaxation populated only by yourself and your slave. $He woke before you did, but remained still to avoid disturbing you. <<if canSee($activeSlave)>>From the lazy, contented look in $his <<= App.Desc.eyeColor($activeSlave)>> eyes as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face when you opened your eyes.@@<<else>>From the serene expression on $his face as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face, lost in the soothing sounds of your breathing, when you opened your eyes.@@<</if>>
+		<br><br>
+		Since you're awake, $he rolls onto $his face and then further, to place $his back and <<if $activeSlave.butt > 5>>massive ass<<elseif $activeSlave.butt > 2>>healthy rear<<else>>butt<</if>> against you, making sure to drag $his $activeSlave.nipples nipples against you the whole way. You accept the invitation and spoon $him, <<if $activeSlave.height >= 185>>your bodies lining up well, since $he's as tall as you are<<elseif $activeSlave.height >= 160>>$his body fitting neatly within the embrace of your larger frame<<else>>$his small body fitting entirely within your embrace<</if>>. $His <<if $activeSlave.muscles > 30>>muscles<<else>>softness<</if>> and warmth awaken your desire, and $he feels <<if $PC.dick == 1>>your stiffening cock beginning to press against <<if $activeSlave.amp == 1>>$his perineum. $He shifts to slide $himself along its shaft<<if $PC.vagina == 1>> and down to where your pussy begins<</if>><<else>>the place between $his thighs. $He shifts to let your dick slide between them, and reaches down to massage its head<</if>><<else>>heat building against $his butt. <<if $activeSlave.amp == 1>>$He does $his best to grind against you, since $he can't caress you without hands<<else>>$He snakes a hand behind $himself to caress your womanhood, and begins to gently masturbate with the other<</if>><</if>>.
+		<<if $PC.dick == 1>>
+			<<if ($activeSlave.vagina > 0) && ($activeSlave.anus > 0) && canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+				$He begins to shift farther forward and back along your dick, causing its head to press against $his anus and then slide forward to nestle between $his pussylips. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek.
+				<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
+					$He hikes $himself up a bit, and then slides $his anal sphincter slowly around and down your cock until you're resting all the way up $his ass. You share loving anal
+					<<set _didAnal = 1>>
+				<<else>>
+					$He hikes $himself up to give your dickhead a last teasing press against $his butt before cocking $his hips and sliding your cock into $his soaking cunt. You make love
+					<<set _didVaginal = 1>>
+				<</if>>
+			<<elseif ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
+				$He cocks $his hips and so that your cock is pressing against $his soaked cunt. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek.
+				<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1) && isFertile($activeSlave)>>
+					$He pushes against you until you are fully inserted into $his pussy. $He's ripe for impregnation and needs your baby in $him. You make love
+				<<elseif ($activeSlave.anus > 2)>>
+					$He easily slides your cock into $his loose pussy. You make love
+				<<else>>
+					$He hikes $himself up a bit, and then gently slides your cock into $his tight pussy. You make love
+				<</if>>
 				<<set _didVaginal = 1>>
-			<</if>>
-		<<elseif ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
-			$He cocks $his hips and so that your cock is pressing against $his soaked cunt. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek.
-			<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1) && isFertile($activeSlave)>>
-				$He pushes against you until you are fully inserted into $his pussy. $He's ripe for impregnation and needs your baby in $him. You make love
-			<<elseif ($activeSlave.anus > 2)>>
-				$He easily slides your cock into $his loose pussy. You make love
-			<<else>>
-				$He hikes $himself up a bit, and then gently slides your cock into $his tight pussy. You make love
-			<</if>>
-			<<set _didVaginal = 1>>
-		<<elseif $activeSlave.anus > 0 && canDoAnal($activeSlave)>>
-			$He begins to shift farther forward along your dick, causing its head to press against $his anus. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek.
-			<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
-				$He hikes $himself up a bit, and then slides $his anal sphincter slowly around and down your cock until you're resting all the way up $his ass. You share loving anal
-				<<set _didAnal = 1>>
-			<<elseif ($activeSlave.anus > 2)>>
-				$He hikes $himself up a bit, and then easily slides your cock into $his loose rectum. You share loving anal
-				<<set _didAnal = 1>>
+			<<elseif $activeSlave.anus > 0 && canDoAnal($activeSlave)>>
+				$He begins to shift farther forward along your dick, causing its head to press against $his anus. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek.
+				<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
+					$He hikes $himself up a bit, and then slides $his anal sphincter slowly around and down your cock until you're resting all the way up $his ass. You share loving anal
+					<<set _didAnal = 1>>
+				<<elseif ($activeSlave.anus > 2)>>
+					$He hikes $himself up a bit, and then easily slides your cock into $his loose rectum. You share loving anal
+					<<set _didAnal = 1>>
+				<<else>>
+					$He decides against buttsex, and <<if $activeSlave.amp == 1>>contents $himself with grinding<<else>>presses $his thighs together so you can frot $him.<</if>> After making love
+				<</if>>
 			<<else>>
-				$He decides against buttsex, and <<if $activeSlave.amp == 1>>contents $himself with grinding<<else>>presses $his thighs together so you can frot $him.<</if>> After making love
+				You <<if $activeSlave.amp == 1>>grind against $him<<else>>frot $him<</if>>
 			<</if>>
 		<<else>>
-			You <<if $activeSlave.amp == 1>>grind against $him<<else>>frot $him<</if>>
+			You reach around $him and attend to a nipple with each hand, spreading your attention to the whole breast once they<<if $activeSlave.nipples != "fuckable">>'re perfectly stiff<<else>>'ve tightened around your fingers<</if>>. After sharing gentle lovemaking
+		<</if>>
+		for a while, until you sense that $he's on the edge of climax. Without warning, you lift the edge of the blankets and send a gust of cool air down $his front and <<if $activeSlave.dick > 0>>right onto $his cock<<else>>across $him <<if $activeSlave.nipples != "fuckable">>hard<<else>>engorged<</if>> nipples<</if>>. $He gasps at the sudden overstimulation and then orgasms very strongly, jerking against you
+		<<if !canTalk($activeSlave)>>
+			and panting in lieu of an exclamation.
+		<<else>>
+			and <<say>>ing "Oh" over and over again.
+		<</if>>
+		<<if $PC.dick == 1>>$He clenches against your dick,<<if $PC.vagina == 1>> so hard that you can feel the rush of blood into your cunt,<</if>><<else>>$He works your pussy harder,<</if>> getting you off in turn, and then rolls over to plant a whole-hearted kiss on your lips.
+		<<set $activeSlave.devotion += 4>>
+		<<if _didAnal == 1>>
+			<<= AnalVCheck()>>
+		<<elseif _didVaginal == 1>>
+			<<= VaginalVCheck()>>
 		<</if>>
-	<<else>>
-		You reach around $him and attend to a nipple with each hand, spreading your attention to the whole breast once they<<if $activeSlave.nipples != "fuckable">>'re perfectly stiff<<else>>'ve tightened around your fingers<</if>>. After sharing gentle lovemaking
-	<</if>>
-	for a while, until you sense that $he's on the edge of climax. Without warning, you lift the edge of the blankets and send a gust of cool air down $his front and <<if $activeSlave.dick > 0>>right onto $his cock<<else>>across $him <<if $activeSlave.nipples != "fuckable">>hard<<else>>engorged<</if>> nipples<</if>>. $He gasps at the sudden overstimulation and then orgasms very strongly, jerking against you
-	<<if !canTalk($activeSlave)>>
-		and panting in lieu of an exclamation.
-	<<else>>
-		and <<say>>ing "Oh" over and over again.
-	<</if>>
-	<<if $PC.dick == 1>>$He clenches against your dick,<<if $PC.vagina == 1>> so hard that you can feel the rush of blood into your cunt,<</if>><<else>>$He works your pussy harder,<</if>> getting you off in turn, and then rolls over to plant a whole-hearted kiss on your lips.
-	<<set $activeSlave.devotion += 4>>
-	<<if _didAnal == 1>>
-		<<= AnalVCheck()>>
-	<<elseif _didVaginal == 1>>
-		<<= VaginalVCheck()>>
-	<</if>>
 	<</replace>>
 <</link>>
 <br><<link "Spend the day in bed">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	What's the point of becoming a wealthy tycoon in an anarcho-libertarian paradise if you have to obey the rules all the time? You tell $assistantName to cancel the appointment. Then, you wake your bedmate, and <<if $PC.dick == 1>>get a blowjob<<if $PC.vagina == 1>> and some attention for your pussy<</if>><<else>>have $him eat you out<</if>> under the sheet while you enjoy the lurid sunrise through the glass wall of your bedroom. When the sun is up and you've <<if $PC.dick == 1>>shot your load down $his throat<<else>>climaxed twice<</if>>, you pull the bemused $girl up alongside you again, bring the sheets up over you both, switch on a wallscreen, and ask $him if there's anything $he'd like to <<if canSee($activeSlave)>>watch<<elseif canHear($activeSlave)>>listen to<<else>>put on<</if>>. $He smiles incredulously, but after you encourage $him $he @@.mediumaquamarine;finds $his confidence@@ and admits that there's a Free Cities serial drama about slave life that $he enjoys. You put it on and watch three episodes with $him. It's terribly insipid, but there's a lot of explicit sex to liven things up, and all the actresses are nice enough to look at. $activeSlave.slaveName cuddles comfortably with you the entire time, <<if canSee($activeSlave)>>watching raptly<<elseif canHear($activeSlave)>>listening intently<<else>>staying as silent as possible<</if>> and doing $his best to explain the wretchedly trite plot you've missed.
-	<<set $activeSlave.counter.oral++, $oralTotal++>>
-	You have a meal delivered,
-	<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
-		fuck $him,
-		<<set _didVaginal = 1>>
-	<<elseif $activeSlave.anus > 0 && canDoAnal($activeSlave)>>
-		fuck $his butt,
-		<<set _didAnal = 1>>
-	<<else>>
-		fuck $him,
+		What's the point of becoming a wealthy tycoon in an anarcho-libertarian paradise if you have to obey the rules all the time? You tell $assistantName to cancel the appointment. Then, you wake your bedmate, and <<if $PC.dick == 1>>get a blowjob<<if $PC.vagina == 1>> and some attention for your pussy<</if>><<else>>have $him eat you out<</if>> under the sheet while you enjoy the lurid sunrise through the glass wall of your bedroom. When the sun is up and you've <<if $PC.dick == 1>>shot your load down $his throat<<else>>climaxed twice<</if>>, you pull the bemused $girl up alongside you again, bring the sheets up over you both, switch on a wallscreen, and ask $him if there's anything $he'd like to <<if canSee($activeSlave)>>watch<<elseif canHear($activeSlave)>>listen to<<else>>put on<</if>>. $He smiles incredulously, but after you encourage $him $he @@.mediumaquamarine;finds $his confidence@@ and admits that there's a Free Cities serial drama about slave life that $he enjoys. You put it on and watch three episodes with $him. It's terribly insipid, but there's a lot of explicit sex to liven things up, and all the actresses are nice enough to look at. $activeSlave.slaveName cuddles comfortably with you the entire time, <<if canSee($activeSlave)>>watching raptly<<elseif canHear($activeSlave)>>listening intently<<else>>staying as silent as possible<</if>> and doing $his best to explain the wretchedly trite plot you've missed.
 		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<</if>>
-	and then share a shower and a nap. Thus invigorated, you decide to tour the arcology's nightlife, and tell $him $he'll accompany you. $He hurries to get ready, filled with excitement. A lovely day.
-	<<set $activeSlave.trust += 4>>
-	<<if _didAnal == 1>>
-		<<= AnalVCheck()>>
-	<<elseif _didVaginal == 1>>
-		<<= VaginalVCheck()>>
-	<</if>>
+		You have a meal delivered,
+		<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
+			fuck $him,
+			<<set _didVaginal = 1>>
+		<<elseif $activeSlave.anus > 0 && canDoAnal($activeSlave)>>
+			fuck $his butt,
+			<<set _didAnal = 1>>
+		<<else>>
+			fuck $him,
+			<<set $activeSlave.counter.oral++, $oralTotal++>>
+		<</if>>
+		and then share a shower and a nap. Thus invigorated, you decide to tour the arcology's nightlife, and tell $him $he'll accompany you. $He hurries to get ready, filled with excitement. A lovely day.
+		<<set $activeSlave.trust += 4>>
+		<<if _didAnal == 1>>
+			<<= AnalVCheck()>>
+		<<elseif _didVaginal == 1>>
+			<<= VaginalVCheck()>>
+		<</if>>
 	<</replace>>
 <</link>>
 
@@ -6138,91 +6140,91 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 <<link "Ask $him if $he needs help with $his tan">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You ask $him if $he needs help with $his tan. $He looks momentarily confused, but then $he catches <<if canSee($activeSlave)>>the gleam in your eye <<if $PC.dick == 1>>and notices your stiffening member<<else>>and the flush on your cheeks<</if>><<else>>on to the swing of things<</if>>. "Ooh," $he <<say>>s cheekily,
-	<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
-		"my back i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He rolls over and lies still, sighing with submissive relaxation as you <<if $activeSlave.belly >= 5000>>climb atop <<else>>settle against<</if>>$his warm back and take $him.
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
-		<<else>>
+		You ask $him if $he needs help with $his tan. $He looks momentarily confused, but then $he catches <<if canSee($activeSlave)>>the gleam in your eye <<if $PC.dick == 1>>and notices your stiffening member<<else>>and the flush on your cheeks<</if>><<else>>on to the swing of things<</if>>. "Ooh," $he <<say>>s cheekily,
+		<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
+			"my back i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He rolls over and lies still, sighing with submissive relaxation as you <<if $activeSlave.belly >= 5000>>climb atop <<else>>settle against<</if>>$his warm back and take $him.
+			<<if canDoVaginal($activeSlave)>>
+				<<set _didVaginal = 1>>
+			<<else>>
+				<<set _didAnal = 1>>
+			<</if>>
+		<<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
+			"my fa<<c>>e is getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me! I need <<s>>omewhere to hide it!" $He scrambles hungrily for your crotch, nuzzling you, licking you, and <<if $PC.dick == 1>>sucking your dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eating you out<</if>>.
+			<<set $activeSlave.counter.oral++, $oralTotal++>>
+		<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
+			"I'm getting <<s>>unburnt! I had better go in<<s>>ide. But <<Master>> everyone in there will <<s>>ee me naked!" $He looks at you in mock horror, and giggles with building lust as you pull $his sun-warmed body inside the arcology and into an open space for a good thorough public fucking.
+			<<if canDoVaginal($activeSlave)>>
+				<<set _didVaginal = 1>>
+			<<else>>
+				<<set _didAnal = 1>>
+			<</if>>
+		<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
+			"my butt i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He spins to point $his rear end at the sun, hikes it up to present $his asshole to the light, and begins to wink it lewdly, begging you to save $his anus from a sunburn. $He giggles happily as $he feels <<if $PC.dick == 1>>your cockhead<<else>>a strap-on<</if>> penetrate $his asshole, and starts to shove $himself back against you as hard as you're shoving it into $him.
 			<<set _didAnal = 1>>
-		<</if>>
-	<<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
-		"my fa<<c>>e is getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me! I need <<s>>omewhere to hide it!" $He scrambles hungrily for your crotch, nuzzling you, licking you, and <<if $PC.dick == 1>>sucking your dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eating you out<</if>>.
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
-		"I'm getting <<s>>unburnt! I had better go in<<s>>ide. But <<Master>> everyone in there will <<s>>ee me naked!" $He looks at you in mock horror, and giggles with building lust as you pull $his sun-warmed body inside the arcology and into an open space for a good thorough public fucking.
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
-		<<else>>
+		<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
+			"my boob<<s>> are getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He wiggles $his torso around to make $himself bounce enticingly, and then giggles happily as you
+			<<if $PC.dick == 1>>
+				get on top of $him and slide yourself <<if $activeSlave.nipples != "fuckable">>between $his lotion-slick tits<<if $PC.vagina == 1>>, occasionally riding up to slide $his hard nipples between your pussylips<</if>><<else>>all the way into a fuckable tit and attending to the other with your fingers<</if>>.
+			<<else>>
+				begin to <<if $activeSlave.nipples != "fuckable">>play with<<else>>finger<</if>> $his nipples.
+			<</if>>
+			<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
+		<<elseif $activeSlave.trust >= 80 && $activeSlave.toyHole == "dick" && canPenetrate($activeSlave)>>
+			"my cock i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me find <<s>>omepla<<c>>e to hide it!" $He wiggles $his pelvis around to make $himself bounce enticingly, and then giggles happily as you get on top of $him and slip $his sun-warmed dick deep into your <<if $PC.vagina == 1>>pussy<<else>>asshole<</if>><<if $PC.dick == 1>>, shuddering with delight at the warmth tickling your prostate<</if>>.
+			<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+			<<if canImpreg($PC, $activeSlave)>>
+				<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
+			<</if>>
+		<<elseif ($activeSlave.vagina <= 0)>>
+			"my butt i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He rolls over and spreads $his buttocks, begging you to cover $him up. $He moans as $he feels <<if $PC.dick == 1>>your cockhead<<else>>a strap-on<</if>> penetrate $his asshole, $his sun-warmed buttocks clenching wonderfully against your crotch.
 			<<set _didAnal = 1>>
-		<</if>>
-	<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
-		"my butt i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He spins to point $his rear end at the sun, hikes it up to present $his asshole to the light, and begins to wink it lewdly, begging you to save $his anus from a sunburn. $He giggles happily as $he feels <<if $PC.dick == 1>>your cockhead<<else>>a strap-on<</if>> penetrate $his asshole, and starts to shove $himself back against you as hard as you're shoving it into $him.
-		<<set _didAnal = 1>>
-	<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
-		"my boob<<s>> are getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He wiggles $his torso around to make $himself bounce enticingly, and then giggles happily as you
-		<<if $PC.dick == 1>>
-			get on top of $him and slide yourself <<if $activeSlave.nipples != "fuckable">>between $his lotion-slick tits<<if $PC.vagina == 1>>, occasionally riding up to slide $his hard nipples between your pussylips<</if>><<else>>all the way into a fuckable tit and attending to the other with your fingers<</if>>.
 		<<else>>
-			begin to <<if $activeSlave.nipples != "fuckable">>play with<<else>>finger<</if>> $his nipples.
+			"my pu<<ss>>y i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He spreads $his legs invitingly, running a hand across $his clit and down to spread $his pussylips to the sunshine. $He moans as $he feels <<if $PC.dick == 1>>your cockhead<<else>>a strap-on<</if>> penetrate $him, $his sun-warmed chest warm against yours.
+			<<set _didVaginal = 1>>
 		<</if>>
-		<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
-	<<elseif $activeSlave.trust >= 80 && $activeSlave.toyHole == "dick" && canPenetrate($activeSlave)>>
-		"my cock i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me find <<s>>omepla<<c>>e to hide it!" $He wiggles $his pelvis around to make $himself bounce enticingly, and then giggles happily as you get on top of $him and slip $his sun-warmed dick deep into your <<if $PC.vagina == 1>>pussy<<else>>asshole<</if>><<if $PC.dick == 1>>, shuddering with delight at the warmth tickling your prostate<</if>>.
-		<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-		<<if canImpreg($PC, $activeSlave)>>
-			<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
+		$He @@.mediumaquamarine;trusts you more@@ for being witty with $him, for allowing $him the simple pleasure of a little sunbathing — and for sharing fun sex with $him, of course.
+		<<set $activeSlave.trust += 4>>
+		<<if _didAnal == 1>>
+			<<= AnalVCheck()>>
+		<<elseif _didVaginal == 1>>
+			<<= VaginalVCheck()>>
 		<</if>>
-	<<elseif ($activeSlave.vagina <= 0)>>
-		"my butt i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He rolls over and spreads $his buttocks, begging you to cover $him up. $He moans as $he feels <<if $PC.dick == 1>>your cockhead<<else>>a strap-on<</if>> penetrate $his asshole, $his sun-warmed buttocks clenching wonderfully against your crotch.
-		<<set _didAnal = 1>>
-	<<else>>
-		"my pu<<ss>>y i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He spreads $his legs invitingly, running a hand across $his clit and down to spread $his pussylips to the sunshine. $He moans as $he feels <<if $PC.dick == 1>>your cockhead<<else>>a strap-on<</if>> penetrate $him, $his sun-warmed chest warm against yours.
-		<<set _didVaginal = 1>>
-	<</if>>
-	$He @@.mediumaquamarine;trusts you more@@ for being witty with $him, for allowing $him the simple pleasure of a little sunbathing — and for sharing fun sex with $him, of course.
-	<<set $activeSlave.trust += 4>>
-	<<if _didAnal == 1>>
-		<<= AnalVCheck()>>
-	<<elseif _didVaginal == 1>>
-		<<= VaginalVCheck()>>
-	<</if>>
 	<</replace>>
 <</link>>
 <br><<link "Just enjoy the sunshine with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Wordlessly, you fetch a towel of your own. $He raises $his head a little to see if $he's needed, but as soon as $he <<if canSee($activeSlave)>>sees<<else>>realizes<</if>> what you're doing, $he smiles with simple satisfaction and closes $his eyes again. You strip and lie down next to $him. $He made a good decision <<if $activeSlave.assignment == "rest">>about how to spend $his rest<<else>>about what to do with $his rest period<</if>>. The sun is warm and gentle, and the interminable demands of leadership and your harem suddenly seem very far away. You drop off for a short while, only waking when your apologetic personal assistant breaks in with notice of an upcoming meeting. As you get your senses back, you notice that $activeSlave.slaveName's hand is right next to yours, flattened out against the decking. $His eyes remain closed, and $his breath is steady; $he's fast asleep. It seems $he did not want to wake you, but @@.hotpink;wanted very much to be a little closer to you.@@ You consider canceling the meeting and waking the sun-warmed
-	<<if $activeSlave.physicalAge > 30>>
-		$woman,
-	<<elseif $activeSlave.physicalAge > 17>>
-		$girl,
-	<<elseif $activeSlave.physicalAge > 12>>
-		teen,
-	<<else>>
-		kid,
-	<</if>>
-	but you remember that you're not exactly starved for chances to fuck $him. Who knows when the sun will be this nice again?
-	<<set $activeSlave.devotion += 4>>
+		Wordlessly, you fetch a towel of your own. $He raises $his head a little to see if $he's needed, but as soon as $he <<if canSee($activeSlave)>>sees<<else>>realizes<</if>> what you're doing, $he smiles with simple satisfaction and closes $his eyes again. You strip and lie down next to $him. $He made a good decision <<if $activeSlave.assignment == "rest">>about how to spend $his rest<<else>>about what to do with $his rest period<</if>>. The sun is warm and gentle, and the interminable demands of leadership and your harem suddenly seem very far away. You drop off for a short while, only waking when your apologetic personal assistant breaks in with notice of an upcoming meeting. As you get your senses back, you notice that $activeSlave.slaveName's hand is right next to yours, flattened out against the decking. $His eyes remain closed, and $his breath is steady; $he's fast asleep. It seems $he did not want to wake you, but @@.hotpink;wanted very much to be a little closer to you.@@ You consider canceling the meeting and waking the sun-warmed
+		<<if $activeSlave.physicalAge > 30>>
+			$woman,
+		<<elseif $activeSlave.physicalAge > 17>>
+			$girl,
+		<<elseif $activeSlave.physicalAge > 12>>
+			teen,
+		<<else>>
+			kid,
+		<</if>>
+		but you remember that you're not exactly starved for chances to fuck $him. Who knows when the sun will be this nice again?
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Bring your good slaves out for a day at the beach">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You direct $assistantName to bring your girls who deserve it out for a day at the beach. There might be little sand out on the balcony, but there's plenty of warm sun. And beaches are overrated these days anyway, with the ocean becoming so unpredictable. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> advises them to get naked, and bring towels and sun lotion appropriate for their individual skin types, so they know they're going to get some sunshine, but they're surprised when they get outside. They're obviously expecting an orgy of some kind, but all they see is you and $activeSlave.slaveName luxuriating on the decking. As they arrive, they take the cue and line up with you one by one. After a long sunbathing session, you send a couple of them inside to bring out cool drinks, a beach ball, and other essentials. The hornier girls are doubtful for a while, but eventually they all relax and @@.mediumaquamarine;gain confidence@@ from the simple, nonsexual pleasure of a little time in the sun.
-	<<if ($activeSlave.ID != $HeadGirl.ID) && ($HeadGirl != 0)>>
-		<<setLocalPronouns $HeadGirl 2>>
-		Your Head Girl $HeadGirl.slaveName quietly compliments the idea, and asks you how it came to you. You let _him2 know it was $activeSlave.slaveName's idea,
-	<<else>>
-		Another slave thanks you profusely, and politely asks you what gave you such a wonderful idea. You let them know it was $activeSlave.slaveName,
-	<</if>>
-	which $activeSlave.slaveName <<if canHear($activeSlave)>>overhears<<elseif canSee($activeSlave)>>witnesses<<else>>soon discovers<</if>>. $He blushes prettily, and @@.mediumaquamarine;is pleased@@ to <<if canHear($activeSlave)>>hear<<else>>learn<</if>> that a slave can receive credit for finding a good thing.
-	<<set $activeSlave.trust++>>
-	<<for _ress = 0; _ress < $slaves.length; _ress++>>
-		<<if $slaves[_ress].devotion > 20>>
-			<<set $slaves[_ress].trust++>>
+		You direct $assistantName to bring your girls who deserve it out for a day at the beach. There might be little sand out on the balcony, but there's plenty of warm sun. And beaches are overrated these days anyway, with the ocean becoming so unpredictable. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> advises them to get naked, and bring towels and sun lotion appropriate for their individual skin types, so they know they're going to get some sunshine, but they're surprised when they get outside. They're obviously expecting an orgy of some kind, but all they see is you and $activeSlave.slaveName luxuriating on the decking. As they arrive, they take the cue and line up with you one by one. After a long sunbathing session, you send a couple of them inside to bring out cool drinks, a beach ball, and other essentials. The hornier girls are doubtful for a while, but eventually they all relax and @@.mediumaquamarine;gain confidence@@ from the simple, nonsexual pleasure of a little time in the sun.
+		<<if ($activeSlave.ID != $HeadGirl.ID) && ($HeadGirl != 0)>>
+			<<setLocalPronouns $HeadGirl 2>>
+			Your Head Girl $HeadGirl.slaveName quietly compliments the idea, and asks you how it came to you. You let _him2 know it was $activeSlave.slaveName's idea,
+		<<else>>
+			Another slave thanks you profusely, and politely asks you what gave you such a wonderful idea. You let them know it was $activeSlave.slaveName,
 		<</if>>
-	<</for>>
+		which $activeSlave.slaveName <<if canHear($activeSlave)>>overhears<<elseif canSee($activeSlave)>>witnesses<<else>>soon discovers<</if>>. $He blushes prettily, and @@.mediumaquamarine;is pleased@@ to <<if canHear($activeSlave)>>hear<<else>>learn<</if>> that a slave can receive credit for finding a good thing.
+		<<set $activeSlave.trust++>>
+		<<for _ress = 0; _ress < $slaves.length; _ress++>>
+			<<if $slaves[_ress].devotion > 20>>
+				<<set $slaves[_ress].trust++>>
+			<</if>>
+		<</for>>
 	<</replace>>
 <</link>>
 
@@ -6231,132 +6233,132 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 <<link "Make $him do that again">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You laugh at $him kindly, and $he @@.mediumaquamarine;smiles with relief,@@ happy that you find $his wonderful and terrible sex drive amusing. After a cursory inspection, you
-	<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
-		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a <<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around with things shoved up $his asshole
-	<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
-		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
-		<<if canDoVaginal($activeSlave)>>
-			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved in $his body
-		<<else>>
-			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved up $his asshole
-		<</if>>
-	<<elseif ($activeSlave.fetish == "masochism") && ($activeSlave.fetishKnown == 1)>>
-		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
-		<<if canDoVaginal($activeSlave)>>
-			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up $his hole
-		<<else>>
-			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up $his asshole
-		<</if>>
-	<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1) && $activeSlave.boobs > 300>>
-		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
-		<<if $activeSlave.nipples == "fuckable">>
-			pair of egg vibrators, let $him suck them wet and get them nestled inside $his nipples, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having things shoved inside $his nipplecunts
-		<<else>>
-			vibrating dildo, let $him suck it wet and get it nestled within $his cleavage, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having long, hard objects shoved between $his tits
-		<</if>>
-	<<else>>
-		<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
-		<<if canDoVaginal($activeSlave)>>
-			<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself,
+		You laugh at $him kindly, and $he @@.mediumaquamarine;smiles with relief,@@ happy that you find $his wonderful and terrible sex drive amusing. After a cursory inspection, you
+		<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
+			<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a <<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around with things shoved up $his asshole
+		<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
+			<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
+			<<if canDoVaginal($activeSlave)>>
+				<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved in $his body
+			<<else>>
+				<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved up $his asshole
+			<</if>>
+		<<elseif ($activeSlave.fetish == "masochism") && ($activeSlave.fetishKnown == 1)>>
+			<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
+			<<if canDoVaginal($activeSlave)>>
+				<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up $his hole
+			<<else>>
+				<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up $his asshole
+			<</if>>
+		<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1) && $activeSlave.boobs > 300>>
+			<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
+			<<if $activeSlave.nipples == "fuckable">>
+				pair of egg vibrators, let $him suck them wet and get them nestled inside $his nipples, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having things shoved inside $his nipplecunts
+			<<else>>
+				vibrating dildo, let $him suck it wet and get it nestled within $his cleavage, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having long, hard objects shoved between $his tits
+			<</if>>
 		<<else>>
-			<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks,
+			<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
+			<<if canDoVaginal($activeSlave)>>
+				<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself,
+			<<else>>
+				<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks,
+			<</if>>
+			and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he has a very short refractory period
 		<</if>>
-		and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he has a very short refractory period
-	<</if>>
-	and $he comes again without much delay, without touching $his <<if ($activeSlave.dick > 0) && ($activeSlave.vagina > -1)>>bits<<elseif ($activeSlave.dick > 0)>>cock<<elseif $activeSlave.vagina == -1>>soft perineum, the only place $he has left<<else>>pussy<</if>>. You keep $him there for quite a while, the quivering, <<if canAchieveErection($activeSlave)>>cum-jetting<<elseif ($activeSlave.balls > 0)>>cum-squirting<<elseif ($activeSlave.dick > 0)>>ejaculating<<elseif ($activeSlave.lactation > 0)>>milk-squirting<<elseif $activeSlave.vagina == -1>>weakly dribbling<<else>>femcum-dripping<</if>> statue of a slave providing visual diversion for visitors.
-	<<set $activeSlave.trust += 5>>
+		and $he comes again without much delay, without touching $his <<if ($activeSlave.dick > 0) && ($activeSlave.vagina > -1)>>bits<<elseif ($activeSlave.dick > 0)>>cock<<elseif $activeSlave.vagina == -1>>soft perineum, the only place $he has left<<else>>pussy<</if>>. You keep $him there for quite a while, the quivering, <<if canAchieveErection($activeSlave)>>cum-jetting<<elseif ($activeSlave.balls > 0)>>cum-squirting<<elseif ($activeSlave.dick > 0)>>ejaculating<<elseif ($activeSlave.lactation > 0)>>milk-squirting<<elseif $activeSlave.vagina == -1>>weakly dribbling<<else>>femcum-dripping<</if>> statue of a slave providing visual diversion for visitors.
+		<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
 <br><<link "Take pity on the poor nympho">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He shivers a little when $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>senses<</if>> you slide out from behind your desk and approach $him. $His overcharged sex drive allows $him no refractory period at all, and the hunger <<if !canSee($activeSlave)>>on $his face<<else>>in $his eyes<</if>> is undiminished. You pause to consider $him and $his face falls a little as $he wonders what you're planning. $He's wrong to doubt you;
-	<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
-		you pull $him in and embrace $him strongly, causing the submissive slut to melt into your
-		<<if $PC.boobs == 1>>
-			<<if $PC.boobsImplant == 1>>
-				firm chest.
+		$He shivers a little when $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>senses<</if>> you slide out from behind your desk and approach $him. $His overcharged sex drive allows $him no refractory period at all, and the hunger <<if !canSee($activeSlave)>>on $his face<<else>>in $his eyes<</if>> is undiminished. You pause to consider $him and $his face falls a little as $he wonders what you're planning. $He's wrong to doubt you;
+		<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
+			you pull $him in and embrace $him strongly, causing the submissive slut to melt into your
+			<<if $PC.boobs == 1>>
+				<<if $PC.boobsImplant == 1>>
+					firm chest.
+				<<else>>
+					soft chest.
+				<</if>>
 			<<else>>
-				soft chest.
+				muscular arms.
 			<</if>>
-		<<else>>
-			muscular arms.
-		<</if>>
-		You kiss $him aggressively, $his mouth opening to accept your dominant tongue as it slides into $him. Soon $he's sighing with contentment as something else slides into $him on the couch; $he clings to you with near desperation.
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
-		<<else>>
-			<<set _didAnal = 1>>
-		<</if>>
-	<<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
-		you push the orally fixated slut to $his knees and <<if $PC.dick == 0>>ride $his face like it's a pussy you're tribbing<<else>>fuck $his face like you're trying to impregnate $his throat<</if>>. $He's forced to hold onto your thighs for dear life, making it impossible for $him to touch $himself, but $he doesn't need to and climaxes again hands-free.
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
-		you set up a live feed on the screens throughout the arcology, pointing down from the ceiling above your desk, make $him lie down on the desk top, and fuck $him. $He <<if canSee($activeSlave)>>stares into<<else>>gazes towards<</if>> the camera's lens with mixed shame and relish as the full weight of the humiliation of being used in front of the whole arcology bears down on $his heaving chest.
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
-		<<else>>
-			<<set _didAnal = 1>>
-		<</if>>
-	<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
-		you <<if canSee($activeSlave)>>point at the couch<<else>>state "couch"<</if>> and $he hurries over to kneel and offer you $his asshole. Since the butthole slut clearly doesn't need any foreplay today, the first contact between you is <<if $PC.dick == 1>>the tip of your cock<<else>>the head of your strap-on<</if>> pressing forcefully against $his anus. $He gives a huge shuddering gasp of satisfaction as $his sphincter stretches around the invading phallus.
-		<<set _didAnal = 1>>
-	<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
-		you play with $his nipples until they<<if $activeSlave.nipples != "fuckable">>'re good and hard<<else>> swallow your fingers<</if>>, while $he stands there shamelessly presenting $his breasts for your play. Once you're satisfied they can't get any harder, you
-		<<if $PC.dick == 1>>
-			push $him to $his knees<<if $activeSlave.nipples != "fuckable">>, tell $him to take over the nipple stimulation,<</if>> and fuck $his boobs.
-		<<else>>
-			throw $him down on the couch, straddle $his boobs, and <<if $activeSlave.nipples != "fuckable">>ride each of $his erect<<else>>trib $his<</if>> nipples in turn.
-		<</if>>
-		<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
-	<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
-		you tell $him you're going to put a slave in $his belly, bringing $him instantaneously back to painfully full arousal. You take $him on the couch in the missionary position so $he can stare into your face.
-		<<if !canDoVaginal($activeSlave)>>
-			It's $his butt you're fucking, but $he doesn't let that disrupt $his fantasy.
-		<<elseif ($PC.dick == 0)>>
-			The phallus in $him is a strap-on, but $he doesn't let that disrupt $his fantasy.
-		<<elseif ($activeSlave.pregKnown == 1)>>
-			$He's already knocked up, but that just means that $he shamelessly begs you to fuck $him even more pregnant.
-		<<elseif !isFertile($activeSlave)>>
-			$He's not fertile, but $he doesn't let that get in $his way.
-		<</if>>
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
-		<<else>>
+			You kiss $him aggressively, $his mouth opening to accept your dominant tongue as it slides into $him. Soon $he's sighing with contentment as something else slides into $him on the couch; $he clings to you with near desperation.
+			<<if canDoVaginal($activeSlave)>>
+				<<set _didVaginal = 1>>
+			<<else>>
+				<<set _didAnal = 1>>
+			<</if>>
+		<<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
+			you push the orally fixated slut to $his knees and <<if $PC.dick == 0>>ride $his face like it's a pussy you're tribbing<<else>>fuck $his face like you're trying to impregnate $his throat<</if>>. $He's forced to hold onto your thighs for dear life, making it impossible for $him to touch $himself, but $he doesn't need to and climaxes again hands-free.
+			<<set $activeSlave.counter.oral++, $oralTotal++>>
+		<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
+			you set up a live feed on the screens throughout the arcology, pointing down from the ceiling above your desk, make $him lie down on the desk top, and fuck $him. $He <<if canSee($activeSlave)>>stares into<<else>>gazes towards<</if>> the camera's lens with mixed shame and relish as the full weight of the humiliation of being used in front of the whole arcology bears down on $his heaving chest.
+			<<if canDoVaginal($activeSlave)>>
+				<<set _didVaginal = 1>>
+			<<else>>
+				<<set _didAnal = 1>>
+			<</if>>
+		<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
+			you <<if canSee($activeSlave)>>point at the couch<<else>>state "couch"<</if>> and $he hurries over to kneel and offer you $his asshole. Since the butthole slut clearly doesn't need any foreplay today, the first contact between you is <<if $PC.dick == 1>>the tip of your cock<<else>>the head of your strap-on<</if>> pressing forcefully against $his anus. $He gives a huge shuddering gasp of satisfaction as $his sphincter stretches around the invading phallus.
 			<<set _didAnal = 1>>
+		<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
+			you play with $his nipples until they<<if $activeSlave.nipples != "fuckable">>'re good and hard<<else>> swallow your fingers<</if>>, while $he stands there shamelessly presenting $his breasts for your play. Once you're satisfied they can't get any harder, you
+			<<if $PC.dick == 1>>
+				push $him to $his knees<<if $activeSlave.nipples != "fuckable">>, tell $him to take over the nipple stimulation,<</if>> and fuck $his boobs.
+			<<else>>
+				throw $him down on the couch, straddle $his boobs, and <<if $activeSlave.nipples != "fuckable">>ride each of $his erect<<else>>trib $his<</if>> nipples in turn.
+			<</if>>
+			<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
+		<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
+			you tell $him you're going to put a slave in $his belly, bringing $him instantaneously back to painfully full arousal. You take $him on the couch in the missionary position so $he can stare into your face.
+			<<if !canDoVaginal($activeSlave)>>
+				It's $his butt you're fucking, but $he doesn't let that disrupt $his fantasy.
+			<<elseif ($PC.dick == 0)>>
+				The phallus in $him is a strap-on, but $he doesn't let that disrupt $his fantasy.
+			<<elseif ($activeSlave.pregKnown == 1)>>
+				$He's already knocked up, but that just means that $he shamelessly begs you to fuck $him even more pregnant.
+			<<elseif !isFertile($activeSlave)>>
+				$He's not fertile, but $he doesn't let that get in $his way.
+			<</if>>
+			<<if canDoVaginal($activeSlave)>>
+				<<set _didVaginal = 1>>
+			<<else>>
+				<<set _didAnal = 1>>
+			<</if>>
+		<<elseif ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1)>>
+			you shove $him back towards the couch and leap onto $him, pulling your legs into a scissor position. You bang $him hard, and $he grinds $his hips back at you with enthusiasm. This mutually challenging fuck goes on for a long time, to sweaty, endorphin-fueled muscle exhaustion.
+			<<if canDoVaginal($activeSlave)>>
+				<<set _didVaginal = 1>>
+			<<else>>
+				<<set _didAnal = 1>>
+			<</if>>
+		<<elseif ($activeSlave.fetish == "sadist") && ($activeSlave.fetishKnown == 1)>>
+			you call in a less favored slave and let $activeSlave.slaveName spank $him until $he's fully aroused again. That done, you and $activeSlave.slaveName spitroast the poor girl, with $activeSlave.slaveName taking the rear end. Judging by how the victim screams into your <<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>>, $activeSlave.slaveName is not being very nice to $him at all.
+			<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+		<<elseif ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
+			you prowl around $him to let $his masochistic anticipation build before nudging $him in the back of the knees. $He collapses helplessly and you drag $him over to the couch, slinging $him across its back and fucking $him without mercy. When the pleasurable pain loses its edge, you slide a finger into $him alongside your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, eliciting an appreciative shriek.
+			<<if canDoVaginal($activeSlave)>>
+				<<set _didVaginal = 1>>
+			<<else>>
+				<<set _didAnal = 1>>
+			<</if>>
 		<</if>>
-	<<elseif ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1)>>
-		you shove $him back towards the couch and leap onto $him, pulling your legs into a scissor position. You bang $him hard, and $he grinds $his hips back at you with enthusiasm. This mutually challenging fuck goes on for a long time, to sweaty, endorphin-fueled muscle exhaustion.
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
-		<<else>>
-			<<set _didAnal = 1>>
+		<<if _didAnal == 1>>
+			<<= AnalVCheck()>>
+		<<elseif _didVaginal == 1>>
+			<<= VaginalVCheck()>>
 		<</if>>
-	<<elseif ($activeSlave.fetish == "sadist") && ($activeSlave.fetishKnown == 1)>>
-		you call in a less favored slave and let $activeSlave.slaveName spank $him until $he's fully aroused again. That done, you and $activeSlave.slaveName spitroast the poor girl, with $activeSlave.slaveName taking the rear end. Judging by how the victim screams into your <<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>>, $activeSlave.slaveName is not being very nice to $him at all.
-		<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-	<<elseif ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
-		you prowl around $him to let $his masochistic anticipation build before nudging $him in the back of the knees. $He collapses helplessly and you drag $him over to the couch, slinging $him across its back and fucking $him without mercy. When the pleasurable pain loses its edge, you slide a finger into $him alongside your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, eliciting an appreciative shriek.
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
+		$He's extremely pleased <<if canSee($activeSlave)>>to see $himself<<elseif canHear($activeSlave)>>to hear $he's<<else>>to learn $he's<</if>> on the inspection schedule for the same time tomorrow, and is almost bouncing with eagerness the next morning.
+		<<if ($activeSlave.fetishStrength == 100) || ($activeSlave.fetishKnown == 0) || ($activeSlave.fetish == "none")>>
+			Being a nympho is a never-ending struggle in some ways, and $he is @@.hotpink;deeply grateful@@ to you for understanding $him.
+			<<set $activeSlave.devotion += 5>>
 		<<else>>
-			<<set _didAnal = 1>>
+			Since $he's developing $his kinks, this delightful reinforcement @@.lightcoral;advances $his fetish.@@
+			<<set $activeSlave.fetishStrength += 4>>
 		<</if>>
-	<</if>>
-	<<if _didAnal == 1>>
-		<<= AnalVCheck()>>
-	<<elseif _didVaginal == 1>>
-		<<= VaginalVCheck()>>
-	<</if>>
-	$He's extremely pleased <<if canSee($activeSlave)>>to see $himself<<elseif canHear($activeSlave)>>to hear $he's<<else>>to learn $he's<</if>> on the inspection schedule for the same time tomorrow, and is almost bouncing with eagerness the next morning.
-	<<if ($activeSlave.fetishStrength == 100) || ($activeSlave.fetishKnown == 0) || ($activeSlave.fetish == "none")>>
-		Being a nympho is a never-ending struggle in some ways, and $he is @@.hotpink;deeply grateful@@ to you for understanding $him.
-		<<set $activeSlave.devotion += 5>>
-	<<else>>
-		Since $he's developing $his kinks, this delightful reinforcement @@.lightcoral;advances $his fetish.@@
-		<<set $activeSlave.fetishStrength += 4>>
-	<</if>>
 	<</replace>>
 <</link>>
 
@@ -6365,342 +6367,342 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 <<link "Inspect $him normally">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You pay no attention to the unusual circumstances, and conduct a normal inspection of $his naked body. $He understands that $he did the right thing, and @@.mediumaquamarine;trusts@@ you a bit more. Since you're paying no attention to the unusual location for the inspection, $he does $his very best to perform $his role normally, too. $He <<if ($activeSlave.boobs > 2000)>>lifts $his enormous boobs one by one<<elseif ($activeSlave.boobs > 1000)>>hefts $his heavy breasts one by one<<elseif ($activeSlave.boobs > 300)>>squeezes $his boobs one by one<<else>><<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> the nipples capping $his flat tits<</if>>, <<if ($activeSlave.skill.oral > 60)>>opens $his mouth and wiggles $his expert tongue<<elseif ($activeSlave.lips > 40)>>opens $his mouth and licks $his puffy lips<<else>>opens $his mouth and sticks out $his tongue<</if>>,
-	<<if ($activeSlave.balls > 1)>>
-		pulls $his ballsack gently downward to display the outline of $his testes,
-	<<elseif ($activeSlave.dick > 0)>>
-		lifts $his dick by its tip and turns sideways to display it,
-	<<elseif ($activeSlave.labia > 0)>>
-		carefully spreads $his generous petals to show off $his pussy,
-	<<elseif ($activeSlave.clit > 0)>>
-		eases $his clitoral hood back to completely reveal $his massive clitoris,
-	<<elseif $activeSlave.vagina == -1>>
-		lets you see the featureless, mannequin place between $his legs,
-	<<else>>
-		spreads $his pussy,
-	<</if>>
-	turns around and <<if ($activeSlave.butt > 5)>>pulls $his massive buttocks apart to reveal<<elseif ($activeSlave.butt > 2)>>spreads $his healthy buttocks to reveal<<else>>bends over to display<</if>> $his <<if ($activeSlave.anus > 2)>>whorish rear pussy<<elseif ($activeSlave.anus > 1)>>inviting backdoor<<else>>tight anus<</if>>, winks it once, and then straightens, done.
-	<<set $activeSlave.trust += 5>>
+		You pay no attention to the unusual circumstances, and conduct a normal inspection of $his naked body. $He understands that $he did the right thing, and @@.mediumaquamarine;trusts@@ you a bit more. Since you're paying no attention to the unusual location for the inspection, $he does $his very best to perform $his role normally, too. $He <<if ($activeSlave.boobs > 2000)>>lifts $his enormous boobs one by one<<elseif ($activeSlave.boobs > 1000)>>hefts $his heavy breasts one by one<<elseif ($activeSlave.boobs > 300)>>squeezes $his boobs one by one<<else>><<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> the nipples capping $his flat tits<</if>>, <<if ($activeSlave.skill.oral > 60)>>opens $his mouth and wiggles $his expert tongue<<elseif ($activeSlave.lips > 40)>>opens $his mouth and licks $his puffy lips<<else>>opens $his mouth and sticks out $his tongue<</if>>,
+		<<if ($activeSlave.balls > 1)>>
+			pulls $his ballsack gently downward to display the outline of $his testes,
+		<<elseif ($activeSlave.dick > 0)>>
+			lifts $his dick by its tip and turns sideways to display it,
+		<<elseif ($activeSlave.labia > 0)>>
+			carefully spreads $his generous petals to show off $his pussy,
+		<<elseif ($activeSlave.clit > 0)>>
+			eases $his clitoral hood back to completely reveal $his massive clitoris,
+		<<elseif $activeSlave.vagina == -1>>
+			lets you see the featureless, mannequin place between $his legs,
+		<<else>>
+			spreads $his pussy,
+		<</if>>
+		turns around and <<if ($activeSlave.butt > 5)>>pulls $his massive buttocks apart to reveal<<elseif ($activeSlave.butt > 2)>>spreads $his healthy buttocks to reveal<<else>>bends over to display<</if>> $his <<if ($activeSlave.anus > 2)>>whorish rear pussy<<elseif ($activeSlave.anus > 1)>>inviting backdoor<<else>>tight anus<</if>>, winks it once, and then straightens, done.
+		<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
 <br><<link "Inspect $him and then leave $him out for the public to use">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You pay no attention to the unusual circumstances, and conduct a normal inspection of $his naked body. When done, you rise from your seat and produce a short strap. $His breath quickens as you bind $his hands and pull them down towards a bench; you secure $him so $he can crouch or kneel, naked and vulnerable. As you leave, $he understands, and glances around the balcony. Fixing on the nearest citizen paying attention to $him, $he looks him straight in the eye
-	<<switch $activeSlave.fetish>>
-	<<case "submissive">>
-		and begs him submissively to do whatever he wants to $him.
-	<<case "cumslut">>
-		and begs him to come over and feed $him his delicious cum.
-	<<case "humiliation">>
-		as $he begins to wordlessly writhe and blush with the @@.hotpink;excitement@@ of this humiliating situation.
-		<<set $activeSlave.devotion += 2>>
-	<<case "buttslut">>
-		and then turns as best $he can to offer him $his backdoor, begging him to stuff his cock up $his ass.
-	<<case "boobs">>
-		and swings $his torso from side to side, bouncing $his breasts around lewdly.
-	<<case "pregnancy">>
-		and begs him to come over and shoot his seed into $him.
-	<<case "dom" "sadist">>
-		and challenges him to come over and fuck $him.
-	<<case "masochist">>
-		and, applying a bit of reverse psychology, begins to beg him not to spank $his helpless behind.
-	<<default>>
-		and implores him to fuck $him.
-	<</switch>>
-	You detail another slave to fetch $him after the public loses interest. A couple of hours later, you catch sight of $him limping towards the showers, thoroughly disheveled. $His $activeSlave.skin face and chest are spattered with cum, $he's got <<if $activeSlave.dick > 0>>$his own ejaculate<<else>>pussyjuice<</if>> all over $his thighs, and $his well-fucked butthole is dripping semen. $He's certainly worked hard @@.green;improving your reputation.@@
-	<<run repX(1250, "event", $activeSlave)>>
-	<<set $activeSlave.counter.mammary += 10, $mammaryTotal += 10, $activeSlave.counter.oral += 10, $oralTotal += 10>>
-	<<= AnalVCheck(10)>>
-	<<set $activeSlave.counter.publicUse += 30>>
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck(10)>>
-		<<set $activeSlave.counter.publicUse += 10>>
-	<</if>>
+		You pay no attention to the unusual circumstances, and conduct a normal inspection of $his naked body. When done, you rise from your seat and produce a short strap. $His breath quickens as you bind $his hands and pull them down towards a bench; you secure $him so $he can crouch or kneel, naked and vulnerable. As you leave, $he understands, and glances around the balcony. Fixing on the nearest citizen paying attention to $him, $he looks him straight in the eye
+		<<switch $activeSlave.fetish>>
+		<<case "submissive">>
+			and begs him submissively to do whatever he wants to $him.
+		<<case "cumslut">>
+			and begs him to come over and feed $him his delicious cum.
+		<<case "humiliation">>
+			as $he begins to wordlessly writhe and blush with the @@.hotpink;excitement@@ of this humiliating situation.
+			<<set $activeSlave.devotion += 2>>
+		<<case "buttslut">>
+			and then turns as best $he can to offer him $his backdoor, begging him to stuff his cock up $his ass.
+		<<case "boobs">>
+			and swings $his torso from side to side, bouncing $his breasts around lewdly.
+		<<case "pregnancy">>
+			and begs him to come over and shoot his seed into $him.
+		<<case "dom" "sadist">>
+			and challenges him to come over and fuck $him.
+		<<case "masochist">>
+			and, applying a bit of reverse psychology, begins to beg him not to spank $his helpless behind.
+		<<default>>
+			and implores him to fuck $him.
+		<</switch>>
+		You detail another slave to fetch $him after the public loses interest. A couple of hours later, you catch sight of $him limping towards the showers, thoroughly disheveled. $His $activeSlave.skin face and chest are spattered with cum, $he's got <<if $activeSlave.dick > 0>>$his own ejaculate<<else>>pussyjuice<</if>> all over $his thighs, and $his well-fucked butthole is dripping semen. $He's certainly worked hard @@.green;improving your reputation.@@
+		<<run repX(1250, "event", $activeSlave)>>
+		<<set $activeSlave.counter.mammary += 10, $mammaryTotal += 10, $activeSlave.counter.oral += 10, $oralTotal += 10>>
+		<<= AnalVCheck(10)>>
+		<<set $activeSlave.counter.publicUse += 30>>
+		<<if canDoVaginal($activeSlave)>>
+			<<= VaginalVCheck(10)>>
+			<<set $activeSlave.counter.publicUse += 10>>
+		<</if>>
 	<</replace>>
 <</link>>
 <<if $activeSlave.fetishKnown == 1 && $activeSlave.fetish != "none">>
-<br><<link "Fuck $him like $he likes it">>
+	<br><<link "Fuck $him like $he likes it">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$He's completely unsurprised when you crook a finger at $him after a brief inspection, and skips over, looking excited. It's not in vain.
+			<<if ($activeSlave.fetish == "submissive")>>
+				You shove $him across the back of a balcony bench and take $him as $he moans with pleasure, happy you're using $his body. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby.
+				<<run repX(250, "event", $activeSlave)>>
+				<<if canDoVaginal($activeSlave)>>
+					<<set _didVaginal = 1>>
+				<<else>>
+					<<set _didAnal = 1>>
+				<</if>>
+			<<elseif ($activeSlave.fetish == "cumslut")>>
+				You push $him down to $his knees and <<if $PC.dick == 1>>shove your cock down $his throat<<if $PC.vagina == 1>> so far $he can almost reach your pussy with the tip of $his tongue<</if>><<else>>ride $his face<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, moaning into you as $he pleasures your <<if $PC.dick == 1>>dick<<else>>cunt<</if>>.
+				<<run repX(250, "event", $activeSlave)>>
+				<<set $activeSlave.counter.oral++, $oralTotal++>>
+			<<elseif ($activeSlave.fetish == "humiliation")>>
+				You sit down on a balcony bench and pull $him down to sit on your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, and then pull $his legs as wide as they'll go as you fuck $him, displaying everything to the whole balcony<<if $activeSlave.belly >= 120000>>; $his _belly stomach hangs so low that it blocks the view, however<<else>><<if $PC.vagina == 1>><<if $PC.dick == 1>>: incidentally including your own pussy, which slides up and down as you piston the cock above it in and out of $him<</if>><</if>><</if>>. $He @@.hotpink;laps up@@ the @@.green;openly aroused@@ stares from $his growing audience.
+				<<run repX(500, "event", $activeSlave)>>
+				<<set $activeSlave.devotion += 3>>
+				<<if canDoVaginal($activeSlave)>>
+					<<set _didVaginal = 1>>
+				<<else>>
+					<<set _didAnal = 1>>
+				<</if>>
+			<<elseif ($activeSlave.fetish == "buttslut")>>
+				You shove $him across the back of a balcony bench and fuck $his ass as $he moans with pleasure, happy you're using $his favorite hole. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, too focused on $his well-filled rectum to care.
+				<<run repX(250, "event", $activeSlave)>>
+				<<set _didAnal = 1>>
+			<<elseif ($activeSlave.fetish == "boobs")>>
+				You push $him down to $his knees and <<if $PC.dick == 1>>press your cock between $his tits<<else>>ride $his breasts<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, enjoying the feeling of your <<if $PC.dick == 1>>dick pounding $his <<if $activeSlave.nipples != "fuckable">>cleavage<<else>>breast<</if>><<else>>cunt rubbing against one of $his <<if $activeSlave.nipples != "fuckable">>hard<<else>>engorged<</if>> nipples<</if>>.
+				<<run repX(250, "event", $activeSlave)>>
+				<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
+			<<elseif ($activeSlave.fetish == "pregnancy")>>
+				You shove $him across the back of a balcony bench and whisper in $his ear that you're going to breed $him in public. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, too aroused by the idea to care.
+				<<if !canDoVaginal($activeSlave)>>
+					It's $his butt you're fucking, but $he doesn't let that disrupt $his fantasy.
+				<<elseif ($PC.dick == 0)>>
+					The phallus in $him is a strap-on, but $he doesn't let that disrupt $his fantasy.
+				<<elseif ($activeSlave.pregKnown == 1)>>
+					$He's already knocked up, but $he doesn't let that disrupt $his fantasy of getting even more pregnant.
+				<<elseif !isFertile($activeSlave)>>
+					$He's not fertile, but $he doesn't let that disrupt $his fantasy.
+				<</if>>
+				<<run repX(250, "event", $activeSlave)>>
+				<<if canDoVaginal($activeSlave)>>
+					<<set _didVaginal = 1>>
+				<<else>>
+					<<set _didAnal = 1>>
+				<</if>>
+			<<elseif ($activeSlave.fetish == "dom")>>
+				You shove $him back against a wall and seat your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> inside $him before wrapping $his legs around you, taking a good grip on $his butt, and hauling $him off the wall again, holding $him in midair<<if $activeSlave.belly >= 600000>> (though $his _belly belly is resting on the ground)<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, concentrating on fucking as hard as $he possibly can.
+				<<run repX(250, "event", $activeSlave)>>
+				<<if canDoVaginal($activeSlave)>>
+					<<set _didVaginal = 1>>
+				<<else>>
+					<<set _didAnal = 1>>
+				<</if>>
+			<<elseif ($activeSlave.fetish == "sadist")>>
+				You sit down on a balcony bench and pull $him down to sit on your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, and then hand $him a tablet after pulling up a feed from a nearby cellblock. $He ignores the @@.green;mildly appreciative@@ stares from passersby as you fuck $him, enthralled by the scenes of abuse and rape on the tablet in $his trembling hands.
+				<<run repX(250, "event", $activeSlave)>>
+				<<if canDoVaginal($activeSlave)>>
+					<<set _didVaginal = 1>>
+				<<else>>
+					<<set _didAnal = 1>>
+				<</if>>
+			<<elseif ($activeSlave.fetish == "masochist")>>
+				You spin $him around cruelly, jerking $him back against your torso and shoving your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> up $his butthole without bending $him over first. $He ignores the @@.green;mildly appreciative@@ stares from passersby as you fuck $him, too lost in the delicious agony of a harsh standing anal fuck to care.
+				<<run repX(250, "event", $activeSlave)>>
+				<<set _didAnal = 1>>
+			<<else>>
+				You appeal to $his uncomplicated tastes by letting $him ride you as you sit on a balcony bench, your hands idly <<if $activeSlave.nipples != "fuckable">>playing with<<else>>fingering<</if>> $his nipples as $he rocks $his hips against you. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, concentrating on your face, smiling as you react to $his efforts.
+				<<run repX(250, "event", $activeSlave)>>
+				<<if canDoVaginal($activeSlave)>>
+					<<set _didVaginal = 1>>
+				<<else>>
+					<<set _didAnal = 1>>
+				<</if>>
+			<</if>>
+			<<if _didAnal == 1>>
+				<<= AnalVCheck()>>
+			<<elseif _didVaginal == 1>>
+				<<= VaginalVCheck()>>
+			<</if>>
+			<<if ($activeSlave.fetishStrength == 100) || ($activeSlave.fetish == "none")>>
+				Since $he's totally sure of what gets $him off, this public display that you know it too makes $him @@.mediumaquamarine;trust you.@@
+				<<set $activeSlave.trust += 5>>
+			<<else>>
+				Since $he's developing $his kinks, this public display of $his sexual identity @@.lightcoral;advances $his fetish.@@
+				<<set $activeSlave.fetishStrength += 4>>
+			<</if>>
+		<</replace>>
+	<</link>>
+<</if>>
+
+<<case "permitted masturbation">>
+
+<<link "Sleep with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He's completely unsurprised when you crook a finger at $him after a brief inspection, and skips over, looking excited. It's not in vain.
-	<<if ($activeSlave.fetish == "submissive")>>
-		You shove $him across the back of a balcony bench and take $him as $he moans with pleasure, happy you're using $his body. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby.
-		<<run repX(250, "event", $activeSlave)>>
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
-		<<else>>
-			<<set _didAnal = 1>>
-		<</if>>
-	<<elseif ($activeSlave.fetish == "cumslut")>>
-		You push $him down to $his knees and <<if $PC.dick == 1>>shove your cock down $his throat<<if $PC.vagina == 1>> so far $he can almost reach your pussy with the tip of $his tongue<</if>><<else>>ride $his face<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, moaning into you as $he pleasures your <<if $PC.dick == 1>>dick<<else>>cunt<</if>>.
-		<<run repX(250, "event", $activeSlave)>>
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<elseif ($activeSlave.fetish == "humiliation")>>
-		You sit down on a balcony bench and pull $him down to sit on your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, and then pull $his legs as wide as they'll go as you fuck $him, displaying everything to the whole balcony<<if $activeSlave.belly >= 120000>>; $his _belly stomach hangs so low that it blocks the view, however<<else>><<if $PC.vagina == 1>><<if $PC.dick == 1>>: incidentally including your own pussy, which slides up and down as you piston the cock above it in and out of $him<</if>><</if>><</if>>. $He @@.hotpink;laps up@@ the @@.green;openly aroused@@ stares from $his growing audience.
-		<<run repX(500, "event", $activeSlave)>>
-		<<set $activeSlave.devotion += 3>>
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
-		<<else>>
-			<<set _didAnal = 1>>
-		<</if>>
-	<<elseif ($activeSlave.fetish == "buttslut")>>
-		You shove $him across the back of a balcony bench and fuck $his ass as $he moans with pleasure, happy you're using $his favorite hole. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, too focused on $his well-filled rectum to care.
-		<<run repX(250, "event", $activeSlave)>>
-		<<set _didAnal = 1>>
-	<<elseif ($activeSlave.fetish == "boobs")>>
-		You push $him down to $his knees and <<if $PC.dick == 1>>press your cock between $his tits<<else>>ride $his breasts<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, enjoying the feeling of your <<if $PC.dick == 1>>dick pounding $his <<if $activeSlave.nipples != "fuckable">>cleavage<<else>>breast<</if>><<else>>cunt rubbing against one of $his <<if $activeSlave.nipples != "fuckable">>hard<<else>>engorged<</if>> nipples<</if>>.
-		<<run repX(250, "event", $activeSlave)>>
-		<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
-	<<elseif ($activeSlave.fetish == "pregnancy")>>
-		You shove $him across the back of a balcony bench and whisper in $his ear that you're going to breed $him in public. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, too aroused by the idea to care.
-		<<if !canDoVaginal($activeSlave)>>
-			It's $his butt you're fucking, but $he doesn't let that disrupt $his fantasy.
-		<<elseif ($PC.dick == 0)>>
-			The phallus in $him is a strap-on, but $he doesn't let that disrupt $his fantasy.
-		<<elseif ($activeSlave.pregKnown == 1)>>
-			$He's already knocked up, but $he doesn't let that disrupt $his fantasy of getting even more pregnant.
-		<<elseif !isFertile($activeSlave)>>
-			$He's not fertile, but $he doesn't let that disrupt $his fantasy.
-		<</if>>
-		<<run repX(250, "event", $activeSlave)>>
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
-		<<else>>
-			<<set _didAnal = 1>>
-		<</if>>
-	<<elseif ($activeSlave.fetish == "dom")>>
-		You shove $him back against a wall and seat your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> inside $him before wrapping $his legs around you, taking a good grip on $his butt, and hauling $him off the wall again, holding $him in midair<<if $activeSlave.belly >= 600000>> (though $his _belly belly is resting on the ground)<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, concentrating on fucking as hard as $he possibly can.
-		<<run repX(250, "event", $activeSlave)>>
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
+		$He starts with surprise when $he feels your hand on $his
+		<<if $activeSlave.weight > 160>>
+			rippling
+		<<elseif $activeSlave.weight > 95>>
+			soft
+		<<elseif ($activeSlave.muscles > 95)>>
+			ripped
+		<<elseif ($activeSlave.muscles > 30)>>
+			muscular
+		<<elseif ($activeSlave.muscles > 5)>>
+			toned
 		<<else>>
-			<<set _didAnal = 1>>
+			soft
 		<</if>>
-	<<elseif ($activeSlave.fetish == "sadist")>>
-		You sit down on a balcony bench and pull $him down to sit on your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, and then hand $him a tablet after pulling up a feed from a nearby cellblock. $He ignores the @@.green;mildly appreciative@@ stares from passersby as you fuck $him, enthralled by the scenes of abuse and rape on the tablet in $his trembling hands.
-		<<run repX(250, "event", $activeSlave)>>
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
+		back, but is accustomed to your touch and knows who you are. $He does not pause $his masturbation, knowing that if you want $him to, you'll tell $him. You massage $his warm skin, enjoying the animal energy of the onanistic spectacle laid out before you. $He builds toward climax, turning $his head <<if canSee($activeSlave)>>to glance at<<else>>to listen to<</if>> you once or twice, but eventually realizing that you're just here to watch. $He turns over hurriedly for $his climax, efficiently
+		<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
+			dribbling $his weak orgasm out onto $his<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly
+		<<elseif $activeSlave.balls > 3>>
+			blowing $his massive load all over $his<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly<<if $activeSlave.belly < 10000>> and chest<</if>>
+		<<elseif $activeSlave.balls > 0>>
+			blowing cum up onto $his own<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly
+		<<elseif $activeSlave.vagina == -1>>
+			jerking $his tiny little front hole sideways
 		<<else>>
-			<<set _didAnal = 1>>
+			jerking $his wet pussy upward
 		<</if>>
-	<<elseif ($activeSlave.fetish == "masochist")>>
-		You spin $him around cruelly, jerking $him back against your torso and shoving your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> up $his butthole without bending $him over first. $He ignores the @@.green;mildly appreciative@@ stares from passersby as you fuck $him, too lost in the delicious agony of a harsh standing anal fuck to care.
-		<<run repX(250, "event", $activeSlave)>>
-		<<set _didAnal = 1>>
-	<<else>>
-		You appeal to $his uncomplicated tastes by letting $him ride you as you sit on a balcony bench, your hands idly <<if $activeSlave.nipples != "fuckable">>playing with<<else>>fingering<</if>> $his nipples as $he rocks $his hips against you. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, concentrating on your face, smiling as you react to $his efforts.
-		<<run repX(250, "event", $activeSlave)>>
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
+		to avoid having to change the sheets. $He gets up carefully and heads off for a quick shower. When $he returns, it's to <<if canSee($activeSlave)>>a sight<<else>>a sound<</if>> that brings $him to a shocked standstill: you're in $his bed, sound asleep. You had a long day, and the soft bed, warmed by $his pretty body, felt very nice. After some deliberation, $he crawls in beside you, snuggling up to offer you more of $his body heat, direct from the source. $He is impressed almost to tears at the @@.mediumaquamarine;trust@@ you display in $him, and relaxes completely as you, dominant even when unconscious, encircle $his
+		<<if $activeSlave.preg > 20>>
+			pregnant belly
+		<<elseif $activeSlave.belly >= 100000>>
+			_belly middle
+		<<elseif ($activeSlave.boobs > 2000)>>
+			massive mammaries
 		<<else>>
-			<<set _didAnal = 1>>
+			shoulders
 		<</if>>
-	<</if>>
-	<<if _didAnal == 1>>
-		<<= AnalVCheck()>>
-	<<elseif _didVaginal == 1>>
-		<<= VaginalVCheck()>>
-	<</if>>
-	<<if ($activeSlave.fetishStrength == 100) || ($activeSlave.fetish == "none")>>
-		Since $he's totally sure of what gets $him off, this public display that you know it too makes $him @@.mediumaquamarine;trust you.@@
+		with your arms and pull $him in close.
 		<<set $activeSlave.trust += 5>>
-	<<else>>
-		Since $he's developing $his kinks, this public display of $his sexual identity @@.lightcoral;advances $his fetish.@@
-		<<set $activeSlave.fetishStrength += 4>>
-	<</if>>
-	<</replace>>
-<</link>>
-<</if>>
-
-<<case "permitted masturbation">>
-
-<<link "Sleep with $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He starts with surprise when $he feels your hand on $his
-	<<if $activeSlave.weight > 160>>
-		rippling
-	<<elseif $activeSlave.weight > 95>>
-		soft
-	<<elseif ($activeSlave.muscles > 95)>>
-		ripped
-	<<elseif ($activeSlave.muscles > 30)>>
-		muscular
-	<<elseif ($activeSlave.muscles > 5)>>
-		toned
-	<<else>>
-		soft
-	<</if>>
-	back, but is accustomed to your touch and knows who you are. $He does not pause $his masturbation, knowing that if you want $him to, you'll tell $him. You massage $his warm skin, enjoying the animal energy of the onanistic spectacle laid out before you. $He builds toward climax, turning $his head <<if canSee($activeSlave)>>to glance at<<else>>to listen to<</if>> you once or twice, but eventually realizing that you're just here to watch. $He turns over hurriedly for $his climax, efficiently
-	<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-		dribbling $his weak orgasm out onto $his<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly
-	<<elseif $activeSlave.balls > 3>>
-		blowing $his massive load all over $his<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly<<if $activeSlave.belly < 10000>> and chest<</if>>
-	<<elseif $activeSlave.balls > 0>>
-		blowing cum up onto $his own<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly
-	<<elseif $activeSlave.vagina == -1>>
-		jerking $his tiny little front hole sideways
-	<<else>>
-		jerking $his wet pussy upward
-	<</if>>
-	to avoid having to change the sheets. $He gets up carefully and heads off for a quick shower. When $he returns, it's to <<if canSee($activeSlave)>>a sight<<else>>a sound<</if>> that brings $him to a shocked standstill: you're in $his bed, sound asleep. You had a long day, and the soft bed, warmed by $his pretty body, felt very nice. After some deliberation, $he crawls in beside you, snuggling up to offer you more of $his body heat, direct from the source. $He is impressed almost to tears at the @@.mediumaquamarine;trust@@ you display in $him, and relaxes completely as you, dominant even when unconscious, encircle $his
-	<<if $activeSlave.preg > 20>>
-		pregnant belly
-	<<elseif $activeSlave.belly >= 100000>>
-		_belly middle
-	<<elseif ($activeSlave.boobs > 2000)>>
-		massive mammaries
-	<<else>>
-		shoulders
-	<</if>>
-	with your arms and pull $him in close.
-	<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
 <br><<link "Exhaust $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He starts with surprise when $he feels your hand on $his
-	<<if $activeSlave.weight > 160>>
-		rippling
-	<<elseif $activeSlave.weight > 95>>
-		soft
-	<<elseif ($activeSlave.muscles > 95)>>
-		ripped
-	<<elseif ($activeSlave.muscles > 30)>>
-		muscular
-	<<elseif ($activeSlave.muscles > 5)>>
-		toned
-	<<else>>
-		soft
-	<</if>>
-	back, but is accustomed to your touch and knows who you are. $He does not pause $his masturbation, knowing that if you want $him to, you'll tell $him. You take a moment to enjoy the warmth of the working slave's body before gently taking the hand $he's using to buttfuck $himself, <<if ($activeSlave.anus > 2)>>pulling the dildo free of $his relaxed asshole, and replacing it with your <<if $PC.dick == 1>>prick<<else>>strap-on<</if>> before its gape can close.<<elseif ($activeSlave.anus > 1)>>pulling the dildo free of $his loose anus, and replacing it with your <<if $PC.dick == 1>>prick<<else>>strap-on<</if>> before its gape can close.<<else>>pulling $his fingers free of $his tight little ass, and replacing them with your <<if $PC.dick == 1>>prick<<else>>strap-on<</if>> while it's still relaxed.<</if>> $He moans into the pillow and pats around blindly with $his freed hand before finding your thigh and rubbing it affectionately. $He steps up $his humping and soon shudders,
-	<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-		releasing a pathetic spurt onto
-	<<elseif $activeSlave.balls > 3>>
-		shooting a big jet of cum all over $his own <<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> stomach<<else>>chest<</if>> and
-	<<elseif $activeSlave.balls != 0>>
-		orgasming messily onto
-	<<else>>
-		going limp and slumping down onto
-	<</if>>
-	the sheets beneath $him. When you climax soon after, $he expects you to get off $him so $he can clean up, but instead, the <<if $PC.dick == 1>>cock up $his butt returns to rock hardness<<if $PC.vagina == 1>> as you use a little manual stimulation of your own cunt to get your cock stiff again<</if>> and<<else>>strap-on up $his butt<</if>> goes back to pumping in and out of $him. $He slides a hand under $himself to <<if $activeSlave.vagina == -1>>jerk off<<else>>rub $himself<</if>> this time. When you finally finish, a long time later, the exhausted slave is lying on a bed wet with lube, <<if ($PC.dick == 1) || ($activeSlave.dick > 0)>> ejaculate,<</if>><<if ($PC.dick == 0) || ($activeSlave.vagina > -1)>> girlcum,<</if>> drool, and sweat. $He doesn't care, and you let $him curl up in $his sex-soaked nest. As you leave, you think $he's asleep already, but <<if !canSee($activeSlave)>>as you go<<else>>$his <<= App.Desc.eyeColor($activeSlave)>> eyes open a slit as you go and<</if>> $he murmurs, @@.hotpink;Thank<<s>>,@@ <<Master>>."
-	<<set $activeSlave.devotion += 5>>
-	<<= AnalVCheck(5)>>
-	<</replace>>
-<</link>>
-<<if $activeSlave.fetishKnown == 1 && $activeSlave.fetish != "none">>
-<br><<link "Play into $his fetish at bedtime">>
-	<<EventNameDelink $activeSlave>>
-	<<setNonlocalPronouns $seeDicks>>
-	<<replace "#result">>
-	$He starts with surprise when $he feels your hands seize $him by $his
-	<<if $activeSlave.weight > 160>>
-		fat
-	<<elseif $activeSlave.weight > 130>>
-		chubby
-	<<elseif $activeSlave.weight > 95>>
-		soft
-	<<elseif ($activeSlave.muscles > 95)>>
-		ripped
-	<<elseif ($activeSlave.muscles > 30)>>
-		muscular
-	<<elseif ($activeSlave.muscles > 5)>>
-		toned
-	<<else>>
-		soft
-	<</if>>
-	shoulders,
-	<<if ($activeSlave.fetish == "submissive")>>
-		but $he relaxes into submissive compliance as you slide it up to the nape of $his neck, grinding $his face deeper into the pillow. $He gives muffled whines of happiness as you give $him some light spanks before using $his butt without regard for $his pleasure. $He does not climax, but when you roll $his unresisting body over to give $his mouth<<if $activeSlave.belly >= 1500>>, swollen belly and breasts<<else>> and breasts<</if>> some attention, $he's clearly enjoying $himself.
-		<<set _didAnal = 1>>
-		<<set $activeSlave.counter.oral++, $oralTotal++, $activeSlave.counter.mammary++, $mammaryTotal++>>
-	<<elseif ($activeSlave.fetish == "cumslut")>>
-		but $he is already licking $his lips with anticipation as you roll $him over and straddle $his chest so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. The orally fixated slut concentrates on the oral to a fault, so you take $his arms and straddle them too so $he can reach $himself and get back to masturbating. $He hums happily, a very fine sensation on <<if $PC.dick == 1>>shaft<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>pussylips<</if>>.
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<elseif ($activeSlave.fetish == "humiliation")>>
-		but $he complies as you pull $him up to kneel and take an assfuck. You let $him get used to it and then wordlessly turn $his head so $he can <<if canSee($activeSlave)>>see the screen in the room: it's now on, and it's showing a public live feed of your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> penetrating $his anus. $He recognizes $himself immediately<<else>>listen to the screen in the room: it's now on, and it's showing a public live feed of your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> penetrating $his anus. $He realizes the sounds of you fucking $his ass sync up with it<</if>>, and although the shot is such a closeup that the identity of the participants is not clear, the sheer humiliation of having $his rectum penetrated on camera brings $him to an indecently quick climax.
-		<<set _didAnal = 1>>
-	<<elseif ($activeSlave.fetish == "buttslut")>>
-		but $he eagerly complies as you pull $him up to kneel and take an assfuck. You shove $his arms up over $his head to stop $his masturbation, confident that the anal whore can climax from nothing but your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> pumping in and out of $his butt. You're right, and $his sphincter tightens with orgasm even sooner than you expected it to. You roll $him over and go again,
-		<<if ($activeSlave.chastityVagina) || ($activeSlave.chastityPenis == 1)>>
-			the evidence of $his first orgasm leaking out from behind $his chastity belt.
-		<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-			$his soft cock still releasing little spurts of ejaculate onto $his <<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>><</if>> belly.
-		<<elseif $activeSlave.dick > 0>>
-			$his hard dick scattering the evidence of $his orgasm around as it flops around with the buttsex.
-		<<elseif $activeSlave.vagina == -1>>
-			$his tiny front hole dribbling a little fluid down $his legs.
-		<<else>>
-			$his pussy soaking wet with arousal.
-		<</if>>
-		<<set _didAnal = 1>>
-	<<elseif ($activeSlave.fetish == "boobs")>>
-		but $he giggles with anticipation as you flip $him over. $His cute giggling turns into a gasp of arousal when you <<if $activeSlave.nipples != "fuckable">>seize both of $his hard<<else>>sink your fingers into $his<</if>> nipples and tug them upward to pull $him into a half-sitting position. You hold $his boobs for $him to accomplish a messy titfuck and let $him masturbate at the same time. With $his nipples providing second and third loci of pleasure, $he climaxes quickly; you flip $him over and do $him doggy style, holding $his shoulders down so the rough fuck drags $his sensitive nipples<<if $activeSlave.belly >= 100000>> and _belly belly<</if>> across the sheets with every stroke.
-		<<set _didAnal = 1>>
-		<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
-	<<elseif ($activeSlave.fetish == "pregnancy")>>
-		but $he complies as you pull $him up
-		<<if $activeSlave.belly >= 300000>>
-			onto $his _belly dome of a middle and take $him over it.
-		<<else>>
-			to kneel and take it doggy style.
-		<</if>>
-		After getting things going, you use one hand to begin groping $his<<if $activeSlave.bellyPreg >= 1500>> pregnant<<elseif $activeSlave.belly >= 1500>> _belly<</if>> belly. Bending forward to whisper into $his ear, you begin to describe how
-		<<if $activeSlave.belly >= 750000>>
-			$he's nothing more than a giant egg just waiting for $his children to hatch; how $he's so close to bursting with life that just a few more babies should do it.
-		<<elseif $activeSlave.belly >= 600000>>
-			if $he grows any larger with child, $he'll practically be nothing more than an overswollen womb.
-		<<elseif $activeSlave.belly >= 450000>>
-			it must feel to be so obscenely pregnant that anyone and everyone can see the life distending $his struggling body.
-		<<elseif $activeSlave.belly >= 300000>>
-			full $he would feel if $he got anymore pregnant and how it would be to do even the most simple of tasks.
-		<<elseif $activeSlave.belly >= 150000>>
-			with a few more babies in $him, $his obscene womb would each the floor.
-		<<elseif $activeSlave.belly >= 100000>>
-			obscene it would be if $he were swollen with more than a dozen children.
-		<<elseif $activeSlave.belly >= 15000>>
-			full and heavy $he'd be with octuplets crowding $his womb.
-		<<elseif $activeSlave.pregKnown == 1>>
-			$he'd look and feel swollen with multiple children.
+		$He starts with surprise when $he feels your hand on $his
+		<<if $activeSlave.weight > 160>>
+			rippling
+		<<elseif $activeSlave.weight > 95>>
+			soft
+		<<elseif ($activeSlave.muscles > 95)>>
+			ripped
+		<<elseif ($activeSlave.muscles > 30)>>
+			muscular
+		<<elseif ($activeSlave.muscles > 5)>>
+			toned
 		<<else>>
-			it might feel if $his belly were to grow heavy with pregnancy.
+			soft
 		<</if>>
-		$He gasps with sudden shocked arousal at the idea, moaning with desire as you describe your hot seed jetting into $him, racing towards $his core, turning $his body into nothing more than a breeding machine.
-		<<if !canDoVaginal($activeSlave)>> It's $his butt you're fucking, but $he doesn't care.<</if>>
-		<<if canDoVaginal($activeSlave)>>
-			<<set _didVaginal = 1>>
+		back, but is accustomed to your touch and knows who you are. $He does not pause $his masturbation, knowing that if you want $him to, you'll tell $him. You take a moment to enjoy the warmth of the working slave's body before gently taking the hand $he's using to buttfuck $himself, <<if ($activeSlave.anus > 2)>>pulling the dildo free of $his relaxed asshole, and replacing it with your <<if $PC.dick == 1>>prick<<else>>strap-on<</if>> before its gape can close.<<elseif ($activeSlave.anus > 1)>>pulling the dildo free of $his loose anus, and replacing it with your <<if $PC.dick == 1>>prick<<else>>strap-on<</if>> before its gape can close.<<else>>pulling $his fingers free of $his tight little ass, and replacing them with your <<if $PC.dick == 1>>prick<<else>>strap-on<</if>> while it's still relaxed.<</if>> $He moans into the pillow and pats around blindly with $his freed hand before finding your thigh and rubbing it affectionately. $He steps up $his humping and soon shudders,
+		<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
+			releasing a pathetic spurt onto
+		<<elseif $activeSlave.balls > 3>>
+			shooting a big jet of cum all over $his own <<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> stomach<<else>>chest<</if>> and
+		<<elseif $activeSlave.balls != 0>>
+			orgasming messily onto
 		<<else>>
-			<<set _didAnal = 1>>
+			going limp and slumping down onto
 		<</if>>
-	<<elseif ($activeSlave.fetish == "dom")>>
-		but $he keeps masturbating even as you flip $him over. You tell $him to keep going, and leave $him there for a moment. $He obeys, looking mystified, but is pleased to <<if canSee($activeSlave)>>see you return with another slave<<elseif canHear($activeSlave)>>hear your footsteps return accompanied by a second set<<else>>feel the body heat of another slave upon your return<</if>>. You push the other _girlU unceremoniously down onto $activeSlave.slaveName, making _himU give $activeSlave.slaveName some oral while you roughly fuck _hisU ass. $activeSlave.slaveName enjoys $himself immensely, jerking with pleasure every time you pound the poor _girlU hard enough to make _himU moan into $activeSlave.slaveName.
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<elseif ($activeSlave.fetish == "sadist")>>
-		but $he keeps masturbating even as you flip $him over. You tell $him to keep going, and leave $him there for a moment. $He obeys, looking mystified, but is pleased to <<if canSee($activeSlave)>>see you return with another slave<<elseif canHear($activeSlave)>>hear your footsteps return accompanied by a second set<<else>>feel the body heat of another slave upon your return<</if>>. You push the other _girlU unceremoniously down onto $activeSlave.slaveName, making _himU give $activeSlave.slaveName some oral while you spank _himU and then roughly fuck _hisU ass. $activeSlave.slaveName enjoys $himself immensely, jerking with pleasure every time you strike or sodomize the poor _girlU hard enough to make _himU scream into $activeSlave.slaveName.
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<elseif ($activeSlave.fetish == "masochist")>>
-		but $he relaxes into submissive compliance as you slide it up to the nape of $his neck, grinding $his face deeper into the pillow. $He gives muffled whines of mixed pain and pleasure as you give $him some hard spanks before sodomizing $him right up to the edge of what $his poor anus can take without damage. $He climaxes repeatedly to the pain, screaming helplessly as $his orgasms force $his abused sphincter to tighten spastically against the phallus invading it.
-		<<set _didAnal = 1>>
-	<</if>>
-	<<if _didAnal == 1>>
-		<<= AnalVCheck()>>
-	<<elseif _didVaginal == 1>>
-		<<= VaginalVCheck()>>
-	<</if>>
-	$He's surprised but not displeased to find you standing over $him the next night at exactly the same time. By the third night, $he's masturbating in anticipation of your visit to $his bed.
-	<<if ($activeSlave.fetishStrength > 95)>>
-		Since $he's totally sure of what gets $him off, this consistent proof that you know it too makes $him @@.mediumaquamarine;trust you.@@
-		<<set $activeSlave.trust += 5>>
-	<<else>>
-		Since $he's developing $his kinks, this consistent reinforcement @@.lightcoral;advances $his fetish.@@
-		<<set $activeSlave.fetishStrength += 4>>
-	<</if>>
+		the sheets beneath $him. When you climax soon after, $he expects you to get off $him so $he can clean up, but instead, the <<if $PC.dick == 1>>cock up $his butt returns to rock hardness<<if $PC.vagina == 1>> as you use a little manual stimulation of your own cunt to get your cock stiff again<</if>> and<<else>>strap-on up $his butt<</if>> goes back to pumping in and out of $him. $He slides a hand under $himself to <<if $activeSlave.vagina == -1>>jerk off<<else>>rub $himself<</if>> this time. When you finally finish, a long time later, the exhausted slave is lying on a bed wet with lube, <<if ($PC.dick == 1) || ($activeSlave.dick > 0)>> ejaculate,<</if>><<if ($PC.dick == 0) || ($activeSlave.vagina > -1)>> girlcum,<</if>> drool, and sweat. $He doesn't care, and you let $him curl up in $his sex-soaked nest. As you leave, you think $he's asleep already, but <<if !canSee($activeSlave)>>as you go<<else>>$his <<= App.Desc.eyeColor($activeSlave)>> eyes open a slit as you go and<</if>> $he murmurs, @@.hotpink;Thank<<s>>,@@ <<Master>>."
+		<<set $activeSlave.devotion += 5>>
+		<<= AnalVCheck(5)>>
 	<</replace>>
 <</link>>
+<<if $activeSlave.fetishKnown == 1 && $activeSlave.fetish != "none">>
+	<br><<link "Play into $his fetish at bedtime">>
+		<<EventNameDelink $activeSlave>>
+		<<setNonlocalPronouns $seeDicks>>
+		<<replace "#result">>
+			$He starts with surprise when $he feels your hands seize $him by $his
+			<<if $activeSlave.weight > 160>>
+				fat
+			<<elseif $activeSlave.weight > 130>>
+				chubby
+			<<elseif $activeSlave.weight > 95>>
+				soft
+			<<elseif ($activeSlave.muscles > 95)>>
+				ripped
+			<<elseif ($activeSlave.muscles > 30)>>
+				muscular
+			<<elseif ($activeSlave.muscles > 5)>>
+				toned
+			<<else>>
+				soft
+			<</if>>
+			shoulders,
+			<<if ($activeSlave.fetish == "submissive")>>
+				but $he relaxes into submissive compliance as you slide it up to the nape of $his neck, grinding $his face deeper into the pillow. $He gives muffled whines of happiness as you give $him some light spanks before using $his butt without regard for $his pleasure. $He does not climax, but when you roll $his unresisting body over to give $his mouth<<if $activeSlave.belly >= 1500>>, swollen belly and breasts<<else>> and breasts<</if>> some attention, $he's clearly enjoying $himself.
+				<<set _didAnal = 1>>
+				<<set $activeSlave.counter.oral++, $oralTotal++, $activeSlave.counter.mammary++, $mammaryTotal++>>
+			<<elseif ($activeSlave.fetish == "cumslut")>>
+				but $he is already licking $his lips with anticipation as you roll $him over and straddle $his chest so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. The orally fixated slut concentrates on the oral to a fault, so you take $his arms and straddle them too so $he can reach $himself and get back to masturbating. $He hums happily, a very fine sensation on <<if $PC.dick == 1>>shaft<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>pussylips<</if>>.
+				<<set $activeSlave.counter.oral++, $oralTotal++>>
+			<<elseif ($activeSlave.fetish == "humiliation")>>
+				but $he complies as you pull $him up to kneel and take an assfuck. You let $him get used to it and then wordlessly turn $his head so $he can <<if canSee($activeSlave)>>see the screen in the room: it's now on, and it's showing a public live feed of your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> penetrating $his anus. $He recognizes $himself immediately<<else>>listen to the screen in the room: it's now on, and it's showing a public live feed of your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> penetrating $his anus. $He realizes the sounds of you fucking $his ass sync up with it<</if>>, and although the shot is such a closeup that the identity of the participants is not clear, the sheer humiliation of having $his rectum penetrated on camera brings $him to an indecently quick climax.
+				<<set _didAnal = 1>>
+			<<elseif ($activeSlave.fetish == "buttslut")>>
+				but $he eagerly complies as you pull $him up to kneel and take an assfuck. You shove $his arms up over $his head to stop $his masturbation, confident that the anal whore can climax from nothing but your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> pumping in and out of $his butt. You're right, and $his sphincter tightens with orgasm even sooner than you expected it to. You roll $him over and go again,
+				<<if ($activeSlave.chastityVagina) || ($activeSlave.chastityPenis == 1)>>
+					the evidence of $his first orgasm leaking out from behind $his chastity belt.
+				<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
+					$his soft cock still releasing little spurts of ejaculate onto $his <<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>><</if>> belly.
+				<<elseif $activeSlave.dick > 0>>
+					$his hard dick scattering the evidence of $his orgasm around as it flops around with the buttsex.
+				<<elseif $activeSlave.vagina == -1>>
+					$his tiny front hole dribbling a little fluid down $his legs.
+				<<else>>
+					$his pussy soaking wet with arousal.
+				<</if>>
+				<<set _didAnal = 1>>
+			<<elseif ($activeSlave.fetish == "boobs")>>
+				but $he giggles with anticipation as you flip $him over. $His cute giggling turns into a gasp of arousal when you <<if $activeSlave.nipples != "fuckable">>seize both of $his hard<<else>>sink your fingers into $his<</if>> nipples and tug them upward to pull $him into a half-sitting position. You hold $his boobs for $him to accomplish a messy titfuck and let $him masturbate at the same time. With $his nipples providing second and third loci of pleasure, $he climaxes quickly; you flip $him over and do $him doggy style, holding $his shoulders down so the rough fuck drags $his sensitive nipples<<if $activeSlave.belly >= 100000>> and _belly belly<</if>> across the sheets with every stroke.
+				<<set _didAnal = 1>>
+				<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
+			<<elseif ($activeSlave.fetish == "pregnancy")>>
+				but $he complies as you pull $him up
+				<<if $activeSlave.belly >= 300000>>
+					onto $his _belly dome of a middle and take $him over it.
+				<<else>>
+					to kneel and take it doggy style.
+				<</if>>
+				After getting things going, you use one hand to begin groping $his<<if $activeSlave.bellyPreg >= 1500>> pregnant<<elseif $activeSlave.belly >= 1500>> _belly<</if>> belly. Bending forward to whisper into $his ear, you begin to describe how
+				<<if $activeSlave.belly >= 750000>>
+					$he's nothing more than a giant egg just waiting for $his children to hatch; how $he's so close to bursting with life that just a few more babies should do it.
+				<<elseif $activeSlave.belly >= 600000>>
+					if $he grows any larger with child, $he'll practically be nothing more than an overswollen womb.
+				<<elseif $activeSlave.belly >= 450000>>
+					it must feel to be so obscenely pregnant that anyone and everyone can see the life distending $his struggling body.
+				<<elseif $activeSlave.belly >= 300000>>
+					full $he would feel if $he got anymore pregnant and how it would be to do even the most simple of tasks.
+				<<elseif $activeSlave.belly >= 150000>>
+					with a few more babies in $him, $his obscene womb would each the floor.
+				<<elseif $activeSlave.belly >= 100000>>
+					obscene it would be if $he were swollen with more than a dozen children.
+				<<elseif $activeSlave.belly >= 15000>>
+					full and heavy $he'd be with octuplets crowding $his womb.
+				<<elseif $activeSlave.pregKnown == 1>>
+					$he'd look and feel swollen with multiple children.
+				<<else>>
+					it might feel if $his belly were to grow heavy with pregnancy.
+				<</if>>
+				$He gasps with sudden shocked arousal at the idea, moaning with desire as you describe your hot seed jetting into $him, racing towards $his core, turning $his body into nothing more than a breeding machine.
+				<<if !canDoVaginal($activeSlave)>> It's $his butt you're fucking, but $he doesn't care.<</if>>
+				<<if canDoVaginal($activeSlave)>>
+					<<set _didVaginal = 1>>
+				<<else>>
+					<<set _didAnal = 1>>
+				<</if>>
+			<<elseif ($activeSlave.fetish == "dom")>>
+				but $he keeps masturbating even as you flip $him over. You tell $him to keep going, and leave $him there for a moment. $He obeys, looking mystified, but is pleased to <<if canSee($activeSlave)>>see you return with another slave<<elseif canHear($activeSlave)>>hear your footsteps return accompanied by a second set<<else>>feel the body heat of another slave upon your return<</if>>. You push the other _girlU unceremoniously down onto $activeSlave.slaveName, making _himU give $activeSlave.slaveName some oral while you roughly fuck _hisU ass. $activeSlave.slaveName enjoys $himself immensely, jerking with pleasure every time you pound the poor _girlU hard enough to make _himU moan into $activeSlave.slaveName.
+				<<set $activeSlave.counter.oral++, $oralTotal++>>
+			<<elseif ($activeSlave.fetish == "sadist")>>
+				but $he keeps masturbating even as you flip $him over. You tell $him to keep going, and leave $him there for a moment. $He obeys, looking mystified, but is pleased to <<if canSee($activeSlave)>>see you return with another slave<<elseif canHear($activeSlave)>>hear your footsteps return accompanied by a second set<<else>>feel the body heat of another slave upon your return<</if>>. You push the other _girlU unceremoniously down onto $activeSlave.slaveName, making _himU give $activeSlave.slaveName some oral while you spank _himU and then roughly fuck _hisU ass. $activeSlave.slaveName enjoys $himself immensely, jerking with pleasure every time you strike or sodomize the poor _girlU hard enough to make _himU scream into $activeSlave.slaveName.
+				<<set $activeSlave.counter.oral++, $oralTotal++>>
+			<<elseif ($activeSlave.fetish == "masochist")>>
+				but $he relaxes into submissive compliance as you slide it up to the nape of $his neck, grinding $his face deeper into the pillow. $He gives muffled whines of mixed pain and pleasure as you give $him some hard spanks before sodomizing $him right up to the edge of what $his poor anus can take without damage. $He climaxes repeatedly to the pain, screaming helplessly as $his orgasms force $his abused sphincter to tighten spastically against the phallus invading it.
+				<<set _didAnal = 1>>
+			<</if>>
+			<<if _didAnal == 1>>
+				<<= AnalVCheck()>>
+			<<elseif _didVaginal == 1>>
+				<<= VaginalVCheck()>>
+			<</if>>
+			$He's surprised but not displeased to find you standing over $him the next night at exactly the same time. By the third night, $he's masturbating in anticipation of your visit to $his bed.
+			<<if ($activeSlave.fetishStrength > 95)>>
+				Since $he's totally sure of what gets $him off, this consistent proof that you know it too makes $him @@.mediumaquamarine;trust you.@@
+				<<set $activeSlave.trust += 5>>
+			<<else>>
+				Since $he's developing $his kinks, this consistent reinforcement @@.lightcoral;advances $his fetish.@@
+				<<set $activeSlave.fetishStrength += 4>>
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "terrified inspection">>
@@ -6708,64 +6710,64 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 <<link "Confirm $his fears about you">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	<<if canSee($activeSlave)>>You throw $him a black cloth bag and tell $him to put it over $his head. $He obeys hurriedly, though $he cannot quite restrain $his tears from running down $his $activeSlave.skin cheeks as $he dons the bag, blinding $himself.<</if>> $He trembles, blind and terrified, for several agonized minutes before a strangled sob escapes $him. $He immediately cringes, expecting to be punished, but nothing happens. You let $him stand there for almost an hour, until you're sure $he's let $his guard down, and then approach $him quietly. You consider $his body, your personal property, carefully; and on careful consideration, you aim a vicious flick at $his <<if ($activeSlave.balls > 3)>>nutsack<<elseif ($activeSlave.dick > 0)>>cockhead<<elseif ($activeSlave.clit > 1)>>prominent clit<<elseif ($activeSlave.labia > 0)>>prominent labia<<elseif ($activeSlave.nipples == "huge")>>one of $his vulnerable nipples<<else>>one of $his nipples<</if>>. A flick barely registers on the list of ways you can administer pain to a slave, but after so much sensory deprivation, it knocks $him halfway to the ground with a shriek of surprise and agony. $He crouches involuntarily, cherishing $his stinging <<if ($activeSlave.balls > 3)>>testicles<<elseif ($activeSlave.dick > 0)>>prick<<elseif ($activeSlave.clit > 1)>>bitch button<<elseif ($activeSlave.labia > 0)>>pussylips<<else>>nipple<</if>> with both hands, sobbing. You <<if canSee($activeSlave)>>pluck the bag off $his head and <</if>>tell $him to get out. $He half-walks, half-crawls away<<if canSee($activeSlave)>>, shielding $his eyes from the sudden brightness<</if>>, @@.gold;choking on $his tears.@@
-	<<set $activeSlave.trust -= 5>>
+		<<if canSee($activeSlave)>>You throw $him a black cloth bag and tell $him to put it over $his head. $He obeys hurriedly, though $he cannot quite restrain $his tears from running down $his $activeSlave.skin cheeks as $he dons the bag, blinding $himself.<</if>> $He trembles, blind and terrified, for several agonized minutes before a strangled sob escapes $him. $He immediately cringes, expecting to be punished, but nothing happens. You let $him stand there for almost an hour, until you're sure $he's let $his guard down, and then approach $him quietly. You consider $his body, your personal property, carefully; and on careful consideration, you aim a vicious flick at $his <<if ($activeSlave.balls > 3)>>nutsack<<elseif ($activeSlave.dick > 0)>>cockhead<<elseif ($activeSlave.clit > 1)>>prominent clit<<elseif ($activeSlave.labia > 0)>>prominent labia<<elseif ($activeSlave.nipples == "huge")>>one of $his vulnerable nipples<<else>>one of $his nipples<</if>>. A flick barely registers on the list of ways you can administer pain to a slave, but after so much sensory deprivation, it knocks $him halfway to the ground with a shriek of surprise and agony. $He crouches involuntarily, cherishing $his stinging <<if ($activeSlave.balls > 3)>>testicles<<elseif ($activeSlave.dick > 0)>>prick<<elseif ($activeSlave.clit > 1)>>bitch button<<elseif ($activeSlave.labia > 0)>>pussylips<<else>>nipple<</if>> with both hands, sobbing. You <<if canSee($activeSlave)>>pluck the bag off $his head and <</if>>tell $him to get out. $He half-walks, half-crawls away<<if canSee($activeSlave)>>, shielding $his eyes from the sudden brightness<</if>>, @@.gold;choking on $his tears.@@
+		<<set $activeSlave.trust -= 5>>
 	<</replace>>
 <</link>>
 <br><<link "Conduct a straightforward inspection">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You order $him to spin slowly in place in a matter-of-fact tone of voice. $He does,
-	<<if ($activeSlave.weight > 160)>>
-		$his fat body wobbling a little with the motion.
-	<<elseif $activeSlave.belly >= 10000>>
-		$his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly swinging wide as $he turns.
-	<<elseif ($activeSlave.weight > 95)>>
-		$his chubby body wobbling a little with the motion.
-	<<elseif ($activeSlave.weight > 30)>>
-		$his chubby belly wobbling a little with the motion.
-	<<elseif ($activeSlave.dick > 1)>>
-		$his soft dick waving a little with the motion.
-	<<elseif ($activeSlave.boobs > 800)>>
-		$his udders swaying a little with the motion.
-	<<elseif ($activeSlave.butt > 4)>>
-		$his ass jiggling a little with the motion.
-	<<elseif ($activeSlave.muscles > 5)>>
-		$his abs playing across $his midsection as $he does<<else>>$his trim rear catching your eye.
-	<</if>>
-	In the same straightforward tone, you ask about $his health. $He swallows nervously and stammers,
-	<<if ($activeSlave.preg > $activeSlave.pregData.normalBirth/8) && ($activeSlave.preg < $activeSlave.pregData.normalBirth/3.33)>>
-		"I, I haven't been feeling good in the morning,
-	<<elseif ($activeSlave.health < -20)>>
-		"I, I don't feel very good,
-	<<elseif ($activeSlave.preg > 0) && ($activeSlave.preg < $activeSlave.pregData.normalBirth/6.66)>>
-		"I, I feel a little off. The food ta<<s>>te<<s>> weird lately and my brea<<s>>t<<s>> are really <<s>>en<<s>>itive,
-	<<elseif ($activeSlave.health > 20)>>
-		"I'm, I'm okay,
-	<<else>>
-		"I, I feel healthy,
-	<</if>>
-	<<if $activeSlave.preg > $activeSlave.pregData.normalBirth-2 && $activeSlave.pregControl != "labor suppressors">>
-		and I think it might be time <<s>>oon,
-	<</if>>
-	<<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>."
-	<br><br>
-	You then conduct a more thorough inspection, from the top of $his $activeSlave.hColor-haired head on down. $He complies submissively, obviously expecting to be abused at any moment. $He obediently <<if ($activeSlave.boobs > 1000)>>lifts each of $his massive breasts one by one to display each of them from all angles.<<elseif $activeSlave.belly >= 5000>> allows you to do as you will to $his gravid stomach.<<else>>opens $his mouth and sticks out $his tongue on command.<</if>> $He even obeys an instruction to <<if ($activeSlave.dick > 1)>>take $himself by the dickhead and pull $his member flat up against $his abdomen.<<elseif ($activeSlave.dick > 0)>>take $his little dickhead between a thumb and forefinger and hold $himself out straight to reveal how tiny $he really is.<<elseif ($activeSlave.clit > 1)>>push back $his hood to reveal all of $his enormous clit.<<elseif ($activeSlave.labia > 1)>>spread $his meaty labia to reveal $his cunt.<<elseif $activeSlave.vagina == -1>>really show off $his smooth groin, displaying every bit of it, down to the tiny hole that's its only feature.<<else>>spread $his pussylips to show off $his cunt.<</if>>
-	<br><br>
-	Finally the inspection reaches $his backdoor, so you tell $him to turn around, bend over, and pull $his buttocks apart as wide as $he can. $He tenses in fear, obviously expecting anal rape, but after a moment of hesitation, $he obeys. $He turns, <<if $activeSlave.belly >= 10000>>carefully bends<<else>>bends<</if>>, and <<if ($activeSlave.butt > 5)>>grabs a handful of buttcheek in both hands, trembling as $he spreads $his ass to reveal<<elseif ($activeSlave.butt > 2)>>harshly pulls $his own buttcheeks apart, clearly hoping that if $he treats $himself this way, you won't. $He reveals<<else>>even though $his trim ass has already revealed everything, uses $his hands to spread $himself even wider to show off<</if>> $his <<if ($activeSlave.anus > 2)>>poor, overused asshole, which despite $his terror is still gaping a little.<<elseif ($activeSlave.anus > 1)>>asshole, which is clenched tight in terror.<<else>>invitingly tight asshole, which is clenched hard in terror.<</if>> Maintaining your neutral tone, you ask $him how $he feels about anal sex.
-	<<if ($activeSlave.anus == 0)>>
-		"It'<<s>> <<s>>-<<s>>cary, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm afraid it'll h-hurt," $he gasps out.
-	<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut")>>
-		"It'<<s>> o-okay, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I d-don't hate it," $he gasps out.
-	<<elseif ($activeSlave.sexualFlaw == "hates anal")>>
-		"I h-hate it, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. It'<<s>> d-dirty and it hurt<<s>>," $he gasps out.
-	<<elseif ($activeSlave.anus > 2)>>
-		"It'<<s>> not that bad, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm u<<s>>ed to getting a<<ss>>fucked, I gue<<ss>>," $he <<say>>s haltingly.
-	<<else>>
-		"I h-hate it, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm n-not u<<s>>ed to it, and it hurt<<s>>," $he gasps out.
-	<</if>>
-	Without another word, you tell $him $he can go. $He looks around to gape uncomprehendingly at you for a moment before letting go of $his buttocks, straightening up, and <<if $activeSlave.belly >= 10000>>quickly waddling<<else>>fleeing<</if>>, feeling rather mystified that you @@.mediumaquamarine;didn't use $him.@@
-	<<set $activeSlave.trust += 4>>
+		You order $him to spin slowly in place in a matter-of-fact tone of voice. $He does,
+		<<if ($activeSlave.weight > 160)>>
+			$his fat body wobbling a little with the motion.
+		<<elseif $activeSlave.belly >= 10000>>
+			$his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly swinging wide as $he turns.
+		<<elseif ($activeSlave.weight > 95)>>
+			$his chubby body wobbling a little with the motion.
+		<<elseif ($activeSlave.weight > 30)>>
+			$his chubby belly wobbling a little with the motion.
+		<<elseif ($activeSlave.dick > 1)>>
+			$his soft dick waving a little with the motion.
+		<<elseif ($activeSlave.boobs > 800)>>
+			$his udders swaying a little with the motion.
+		<<elseif ($activeSlave.butt > 4)>>
+			$his ass jiggling a little with the motion.
+		<<elseif ($activeSlave.muscles > 5)>>
+			$his abs playing across $his midsection as $he does<<else>>$his trim rear catching your eye.
+		<</if>>
+		In the same straightforward tone, you ask about $his health. $He swallows nervously and stammers,
+		<<if ($activeSlave.preg > $activeSlave.pregData.normalBirth/8) && ($activeSlave.preg < $activeSlave.pregData.normalBirth/3.33)>>
+			"I, I haven't been feeling good in the morning,
+		<<elseif ($activeSlave.health < -20)>>
+			"I, I don't feel very good,
+		<<elseif ($activeSlave.preg > 0) && ($activeSlave.preg < $activeSlave.pregData.normalBirth/6.66)>>
+			"I, I feel a little off. The food ta<<s>>te<<s>> weird lately and my brea<<s>>t<<s>> are really <<s>>en<<s>>itive,
+		<<elseif ($activeSlave.health > 20)>>
+			"I'm, I'm okay,
+		<<else>>
+			"I, I feel healthy,
+		<</if>>
+		<<if $activeSlave.preg > $activeSlave.pregData.normalBirth-2 && $activeSlave.pregControl != "labor suppressors">>
+			and I think it might be time <<s>>oon,
+		<</if>>
+		<<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>."
+		<br><br>
+		You then conduct a more thorough inspection, from the top of $his $activeSlave.hColor-haired head on down. $He complies submissively, obviously expecting to be abused at any moment. $He obediently <<if ($activeSlave.boobs > 1000)>>lifts each of $his massive breasts one by one to display each of them from all angles.<<elseif $activeSlave.belly >= 5000>> allows you to do as you will to $his gravid stomach.<<else>>opens $his mouth and sticks out $his tongue on command.<</if>> $He even obeys an instruction to <<if ($activeSlave.dick > 1)>>take $himself by the dickhead and pull $his member flat up against $his abdomen.<<elseif ($activeSlave.dick > 0)>>take $his little dickhead between a thumb and forefinger and hold $himself out straight to reveal how tiny $he really is.<<elseif ($activeSlave.clit > 1)>>push back $his hood to reveal all of $his enormous clit.<<elseif ($activeSlave.labia > 1)>>spread $his meaty labia to reveal $his cunt.<<elseif $activeSlave.vagina == -1>>really show off $his smooth groin, displaying every bit of it, down to the tiny hole that's its only feature.<<else>>spread $his pussylips to show off $his cunt.<</if>>
+		<br><br>
+		Finally the inspection reaches $his backdoor, so you tell $him to turn around, bend over, and pull $his buttocks apart as wide as $he can. $He tenses in fear, obviously expecting anal rape, but after a moment of hesitation, $he obeys. $He turns, <<if $activeSlave.belly >= 10000>>carefully bends<<else>>bends<</if>>, and <<if ($activeSlave.butt > 5)>>grabs a handful of buttcheek in both hands, trembling as $he spreads $his ass to reveal<<elseif ($activeSlave.butt > 2)>>harshly pulls $his own buttcheeks apart, clearly hoping that if $he treats $himself this way, you won't. $He reveals<<else>>even though $his trim ass has already revealed everything, uses $his hands to spread $himself even wider to show off<</if>> $his <<if ($activeSlave.anus > 2)>>poor, overused asshole, which despite $his terror is still gaping a little.<<elseif ($activeSlave.anus > 1)>>asshole, which is clenched tight in terror.<<else>>invitingly tight asshole, which is clenched hard in terror.<</if>> Maintaining your neutral tone, you ask $him how $he feels about anal sex.
+		<<if ($activeSlave.anus == 0)>>
+			"It'<<s>> <<s>>-<<s>>cary, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm afraid it'll h-hurt," $he gasps out.
+		<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut")>>
+			"It'<<s>> o-okay, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I d-don't hate it," $he gasps out.
+		<<elseif ($activeSlave.sexualFlaw == "hates anal")>>
+			"I h-hate it, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. It'<<s>> d-dirty and it hurt<<s>>," $he gasps out.
+		<<elseif ($activeSlave.anus > 2)>>
+			"It'<<s>> not that bad, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm u<<s>>ed to getting a<<ss>>fucked, I gue<<ss>>," $he <<say>>s haltingly.
+		<<else>>
+			"I h-hate it, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm n-not u<<s>>ed to it, and it hurt<<s>>," $he gasps out.
+		<</if>>
+		Without another word, you tell $him $he can go. $He looks around to gape uncomprehendingly at you for a moment before letting go of $his buttocks, straightening up, and <<if $activeSlave.belly >= 10000>>quickly waddling<<else>>fleeing<</if>>, feeling rather mystified that you @@.mediumaquamarine;didn't use $him.@@
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 
@@ -6774,200 +6776,200 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 <<link "Just direct $assistantName to let $him out">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> unlatches the cooler door remotely, and admonishes $activeSlave.slaveName. The chilled slave scampers out of the cold air, rubbing $his<<if $activeSlave.bellyPreg >= 1500>> _belly pregnant belly's<</if>> $activeSlave.skin skin to get some warmth back into it. $He's too cold to do much more than nod dumbly at $assistantName's review of how to operate the release, but $he's much more careful the next time $he's sent in there.
+		<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> unlatches the cooler door remotely, and admonishes $activeSlave.slaveName. The chilled slave scampers out of the cold air, rubbing $his<<if $activeSlave.bellyPreg >= 1500>> _belly pregnant belly's<</if>> $activeSlave.skin skin to get some warmth back into it. $He's too cold to do much more than nod dumbly at $assistantName's review of how to operate the release, but $he's much more careful the next time $he's sent in there.
 	<</replace>>
 <</link>>
 <br><<link "Let $him out yourself">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You're not close to the penthouse kitchen area, so it takes you some time to make your way there. By the time you get there, the poor $girl is pounding weakly against the refrigerator door to try to get someone's attention. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> was right, $he must be too cold to think straight; if $he weren't $he might <<if canSee($activeSlave)>>notice the<<else>>have thought to feel around for the<</if>> prominent release button right next to where $he's striking the door. $His desperate $activeSlave.skin face is visible in the window. You hit the exterior release and the door swings open quickly, dumping $him into your arms. Despite not being devoted to you, $he clings to you like a long lost love, $his <<if ($activeSlave.height >= 185)>>big cold<<elseif ($activeSlave.height >= 160)>>cold<<else>>cold little<</if>> <<if $activeSlave.belly >= 1500>>_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>><</if>>body shaking convulsively. $He tries to burrow even <<if ($PC.boobs > 0)>>deeper between your breasts<<else>>closer to you<</if>>, soaking up your warmth.
-	<<if !canTalk($activeSlave)>>
-		$He gestures $his thanks shakily.
-	<<else>>
-		"T-t-thank y-you, <<Master>>. I d-don't know what would have hap-p-pened if you hadn't come by," $he <<say>>s, teeth chattering.
-	<</if>>
-	$He clearly has no idea whatsoever that $assistantName could have let $him out at any time. You rub your hands up and down $his
-	<<if $activeSlave.weight > 160>>
-		rippling
-	<<elseif $activeSlave.weight > 95>>
-		soft
-	<<elseif ($activeSlave.muscles > 95)>>
-		ripped
-	<<elseif ($activeSlave.muscles > 30)>>
-		muscular
-	<<elseif ($activeSlave.muscles > 5)>>
-		toned
-	<<else>>
-		soft
-	<</if>>
-	back, helping $him get warm. You point out the release handle and $he apologizes hastily for forgetting. Once $he's warm you gently tell $him to get back to it, and give $him a gentle shove on $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice little butt<</if>>. $He @@.mediumaquamarine;smiles gratefully@@ at you before heading back to get those drinks.
-	<<set $activeSlave.trust += 4>>
+		You're not close to the penthouse kitchen area, so it takes you some time to make your way there. By the time you get there, the poor $girl is pounding weakly against the refrigerator door to try to get someone's attention. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> was right, $he must be too cold to think straight; if $he weren't $he might <<if canSee($activeSlave)>>notice the<<else>>have thought to feel around for the<</if>> prominent release button right next to where $he's striking the door. $His desperate $activeSlave.skin face is visible in the window. You hit the exterior release and the door swings open quickly, dumping $him into your arms. Despite not being devoted to you, $he clings to you like a long lost love, $his <<if ($activeSlave.height >= 185)>>big cold<<elseif ($activeSlave.height >= 160)>>cold<<else>>cold little<</if>> <<if $activeSlave.belly >= 1500>>_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>><</if>>body shaking convulsively. $He tries to burrow even <<if ($PC.boobs > 0)>>deeper between your breasts<<else>>closer to you<</if>>, soaking up your warmth.
+		<<if !canTalk($activeSlave)>>
+			$He gestures $his thanks shakily.
+		<<else>>
+			"T-t-thank y-you, <<Master>>. I d-don't know what would have hap-p-pened if you hadn't come by," $he <<say>>s, teeth chattering.
+		<</if>>
+		$He clearly has no idea whatsoever that $assistantName could have let $him out at any time. You rub your hands up and down $his
+		<<if $activeSlave.weight > 160>>
+			rippling
+		<<elseif $activeSlave.weight > 95>>
+			soft
+		<<elseif ($activeSlave.muscles > 95)>>
+			ripped
+		<<elseif ($activeSlave.muscles > 30)>>
+			muscular
+		<<elseif ($activeSlave.muscles > 5)>>
+			toned
+		<<else>>
+			soft
+		<</if>>
+		back, helping $him get warm. You point out the release handle and $he apologizes hastily for forgetting. Once $he's warm you gently tell $him to get back to it, and give $him a gentle shove on $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice little butt<</if>>. $He @@.mediumaquamarine;smiles gratefully@@ at you before heading back to get those drinks.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Punish $him for $his forgetfulness">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You're not close to the penthouse kitchen area, so it takes you some time to make your way there. By the time you<<if $PC.dick == 0>> don a strap-on and<</if>> get there, the poor <<if $activeSlave.pregKnown == 1>>pregnant <</if>>$girl is pounding weakly against the refrigerator door to try to get someone's attention. $He looks relieved when you open the door, but $his relief turns to ashes when you shut the door behind you. $He shivers with cold and fear as you sternly point out the release, high up on the door, and then demand $his hands. You bind them together and loop them over the release before hoisting $his legs off the ground so that $his back is against the cold metal door and all $his weight is hanging off the release by $his arms. $He doesn't struggle until you tell $him $he can leave — if $he can get the release open like this. $He tries, but $he can't get enough leverage; $his spastic efforts get weaker as you pull $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice little butt<</if>> away from the door and line <<if $PC.dick == 0>>the strap-on<<else>>your cock<</if>> up with $his <<if ($activeSlave.anus > 2)>>loose asspussy<<elseif ($activeSlave.anus > 1)>>asshole<<else>>tight little asshole<</if>>. Teeth chattering, legs shaking with cold, $he takes a buttfuck in the cold cooler, hanging from what $he should have used to let $himself out. When you finish, you hit it yourself and drop $his legs, letting $him unhook $himself and flee to the warmth outside. $He @@.gold;begs your pardon@@ abjectly as $he rubs $his <<if $activeSlave.belly >= 5000>> _belly $activeSlave.skin belly <<else>>$activeSlave.skin shoulders <</if>>to warm $himself up<<if $PC.dick == 0>><<else>>, ignoring the cum <<if ($activeSlave.anus > 2)>>leaking out of $his fucked-out anus<<elseif ($activeSlave.anus > 1)>>leaking out of $his now-gaped backdoor<<else>>filling $his still-tight anus<</if>><</if>>.
-	<<set $activeSlave.trust -= 5>>
-	<<= AnalVCheck()>>
+		You're not close to the penthouse kitchen area, so it takes you some time to make your way there. By the time you<<if $PC.dick == 0>> don a strap-on and<</if>> get there, the poor <<if $activeSlave.pregKnown == 1>>pregnant <</if>>$girl is pounding weakly against the refrigerator door to try to get someone's attention. $He looks relieved when you open the door, but $his relief turns to ashes when you shut the door behind you. $He shivers with cold and fear as you sternly point out the release, high up on the door, and then demand $his hands. You bind them together and loop them over the release before hoisting $his legs off the ground so that $his back is against the cold metal door and all $his weight is hanging off the release by $his arms. $He doesn't struggle until you tell $him $he can leave — if $he can get the release open like this. $He tries, but $he can't get enough leverage; $his spastic efforts get weaker as you pull $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice little butt<</if>> away from the door and line <<if $PC.dick == 0>>the strap-on<<else>>your cock<</if>> up with $his <<if ($activeSlave.anus > 2)>>loose asspussy<<elseif ($activeSlave.anus > 1)>>asshole<<else>>tight little asshole<</if>>. Teeth chattering, legs shaking with cold, $he takes a buttfuck in the cold cooler, hanging from what $he should have used to let $himself out. When you finish, you hit it yourself and drop $his legs, letting $him unhook $himself and flee to the warmth outside. $He @@.gold;begs your pardon@@ abjectly as $he rubs $his <<if $activeSlave.belly >= 5000>> _belly $activeSlave.skin belly <<else>>$activeSlave.skin shoulders <</if>>to warm $himself up<<if $PC.dick == 0>><<else>>, ignoring the cum <<if ($activeSlave.anus > 2)>>leaking out of $his fucked-out anus<<elseif ($activeSlave.anus > 1)>>leaking out of $his now-gaped backdoor<<else>>filling $his still-tight anus<</if>><</if>>.
+		<<set $activeSlave.trust -= 5>>
+		<<= AnalVCheck()>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 
 <<case "spa boobs">>
 
 <<link "Sit against the side of the pool with $him in your lap">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You<<if $PC.dick == 0>> don a waterproof, vibrating strap-on and<</if>> step into the pool and <<if $activeSlave.belly >= 450000>>struggle to <</if>> lift $him half-out of the water in a bridal carry, your arms behind $his shoulders and the backs of $his knees. <<if canSee($activeSlave)>>$His eyes open<<else>>$He mumbles<</if>> sleepily<<if $activeSlave.belly >= 1500>>as $he rests a hand on $his _belly belly,<</if>> and $he <<say>>s
-	<<if ($activeSlave.lips > 70)>>
-		through $his huge lips,
-	<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-		through $his piercings,
-	<<else>>
-		quietly,
-	<</if>>
-	"Hi, <<Master>>." You sit against the side of the pool, letting $his
-	<<if ($activeSlave.butt > 8)>>
-		massive
-	<<elseif ($activeSlave.butt > 5)>>
-		huge
-	<<elseif ($activeSlave.butt > 2)>>
-		healthy
-	<<else>>
-		trim
-	<</if>>
-	bottom sink down into your lap. $He shimmies $himself atop your <<if $PC.dick == 0>>phallus<<else>>dick<</if>>, gently seating it between $his buttocks, and cranes $his neck back to kiss the bottom of your chin. $He gradually comes out of $his heat stupor, riding $himself back and forth more and more until the <<if ($activeSlave.anus > 2)>>slit of $his asspussy<<elseif ($activeSlave.anus > 1)>>opening of $his anus<<else>>pucker of $his butt<</if>> rests against your <<if $PC.dick == 0>>strongly vibrating strap-on<<else>>cock<</if>>. You take $his hips and firmly thrust into $his rectum, eliciting a little whimper, but $he begins to bounce gently in the water, sodomizing $himself, $his gigantic breasts moving up and down and making concentric ripples spread outward. $He's still very relaxed and $his first orgasm takes $him by surprise, <<if ($activeSlave.balls > 0)>>$his cum floating to the surface<<if canSee($activeSlave)>>; $he points at it and giggles<<else>>; $he feels it brush $his skin and giggles<</if>> before getting<<else>>making $him twitch and shudder with aftershocks as $he gets<</if>> $his feet up on the ledge to ride you harder. When you're done you let $him float again, but curiosity about how $his fucked butt feels under the water leads you to reach a hand between $his legs and grope $his anus. $His warm, relaxed <<if ($activeSlave.anus > 2)>>asspussy<<elseif ($activeSlave.anus > 1)>>backdoor<<else>>tightness<</if>> is so enticing you push $him to $his feet and take $him a second time, standing in the shoulder-depth water. By the time you're done $he's so @@.hotpink;sexually exhausted@@ that you carry $him to the shower.
-	<<= AnalVCheck(2)>>
-	<<set $activeSlave.devotion += 4>>
+		You<<if $PC.dick == 0>> don a waterproof, vibrating strap-on and<</if>> step into the pool and <<if $activeSlave.belly >= 450000>>struggle to <</if>> lift $him half-out of the water in a bridal carry, your arms behind $his shoulders and the backs of $his knees. <<if canSee($activeSlave)>>$His eyes open<<else>>$He mumbles<</if>> sleepily<<if $activeSlave.belly >= 1500>>as $he rests a hand on $his _belly belly,<</if>> and $he <<say>>s
+		<<if ($activeSlave.lips > 70)>>
+			through $his huge lips,
+		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
+			through $his piercings,
+		<<else>>
+			quietly,
+		<</if>>
+		"Hi, <<Master>>." You sit against the side of the pool, letting $his
+		<<if ($activeSlave.butt > 8)>>
+			massive
+		<<elseif ($activeSlave.butt > 5)>>
+			huge
+		<<elseif ($activeSlave.butt > 2)>>
+			healthy
+		<<else>>
+			trim
+		<</if>>
+		bottom sink down into your lap. $He shimmies $himself atop your <<if $PC.dick == 0>>phallus<<else>>dick<</if>>, gently seating it between $his buttocks, and cranes $his neck back to kiss the bottom of your chin. $He gradually comes out of $his heat stupor, riding $himself back and forth more and more until the <<if ($activeSlave.anus > 2)>>slit of $his asspussy<<elseif ($activeSlave.anus > 1)>>opening of $his anus<<else>>pucker of $his butt<</if>> rests against your <<if $PC.dick == 0>>strongly vibrating strap-on<<else>>cock<</if>>. You take $his hips and firmly thrust into $his rectum, eliciting a little whimper, but $he begins to bounce gently in the water, sodomizing $himself, $his gigantic breasts moving up and down and making concentric ripples spread outward. $He's still very relaxed and $his first orgasm takes $him by surprise, <<if ($activeSlave.balls > 0)>>$his cum floating to the surface<<if canSee($activeSlave)>>; $he points at it and giggles<<else>>; $he feels it brush $his skin and giggles<</if>> before getting<<else>>making $him twitch and shudder with aftershocks as $he gets<</if>> $his feet up on the ledge to ride you harder. When you're done you let $him float again, but curiosity about how $his fucked butt feels under the water leads you to reach a hand between $his legs and grope $his anus. $His warm, relaxed <<if ($activeSlave.anus > 2)>>asspussy<<elseif ($activeSlave.anus > 1)>>backdoor<<else>>tightness<</if>> is so enticing you push $him to $his feet and take $him a second time, standing in the shoulder-depth water. By the time you're done $he's so @@.hotpink;sexually exhausted@@ that you carry $him to the shower.
+		<<= AnalVCheck(2)>>
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <br><<link "Fuck $him under the water">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You gather some necessary items into a pool bag and step stealthily into the water, taking $him by an ankle and towing $him toward the deep end. "Hi, <<Master>>," comes a sleepy greeting from the slave as you pull $him through the water, $his boobs making twin bow waves. $He manages a shocked squeal as you quickly secure a weight belt <<if $activeSlave.belly >= 120000>>above $his<<else>>around $his<</if>><<if $activeSlave.belly >= 1500>> _belly<</if>> middle and drop $him, letting $him sink so swiftly that <<if ($activeSlave.butt > 5)>>$his massive bottom pads $him against a painful thump on<<elseif ($activeSlave.butt > 2)>>$his healthy bottom pads $him against a painful thump on<<else>>$his bottom receives a painful thump against<</if>> the bottom of the pool. Before $he can panic, $he feels your mouth against $his<<if ($activeSlave.lips > 70)>> dick sucking<<elseif ($activeSlave.lips > 20)>> lovely<</if>> lips, breathing for $him. You have two long, flexible snorkels designed for exactly this, but you keep $hers away from $him and breathe $his air into $him for a short time, and $he @@.mediumaquamarine;trusts@@ you enough to rely on you. When you finally give $him $his snorkel $he laughs, bubbles rising from around the mouthpiece, and then hugs you impulsively, intentionally giving you a huge faceful of boob. You pull $his weight belt down and tighten it around $his ankles so $he's pinned standing on the bottom, and then
-	<<if ($PC.vagina == 1)>>
-		spread $his knees so you can scissor your pussy against $him in the near-zero gravity, the tangle of limbs and breasts swaying gently as you grind.
-	<<else>>
-		insert yourself into the
-		<<if canDoVaginal($activeSlave)>>
-			<<if ($activeSlave.vagina > 3)>>welcoming gape of $his pussy<<elseif ($activeSlave.vagina > 2)>>loose embrace of $his pussy<<elseif ($activeSlave.vagina > 1)>>welcoming embrace of $his pussy<<else>>tight tight embrace of $his pussy<</if>>. $He enjoys the sensation of such an unusual fucking, wriggling against $his weighted feet and moaning through $his snorkel as you gently take $him under water. $His enormous breasts quiver in near-zero gravity with each thrust, until you notice the delicious motion and take one in each hand.
-			<<= VaginalVCheck()>>
+		You gather some necessary items into a pool bag and step stealthily into the water, taking $him by an ankle and towing $him toward the deep end. "Hi, <<Master>>," comes a sleepy greeting from the slave as you pull $him through the water, $his boobs making twin bow waves. $He manages a shocked squeal as you quickly secure a weight belt <<if $activeSlave.belly >= 120000>>above $his<<else>>around $his<</if>><<if $activeSlave.belly >= 1500>> _belly<</if>> middle and drop $him, letting $him sink so swiftly that <<if ($activeSlave.butt > 5)>>$his massive bottom pads $him against a painful thump on<<elseif ($activeSlave.butt > 2)>>$his healthy bottom pads $him against a painful thump on<<else>>$his bottom receives a painful thump against<</if>> the bottom of the pool. Before $he can panic, $he feels your mouth against $his<<if ($activeSlave.lips > 70)>> dick sucking<<elseif ($activeSlave.lips > 20)>> lovely<</if>> lips, breathing for $him. You have two long, flexible snorkels designed for exactly this, but you keep $hers away from $him and breathe $his air into $him for a short time, and $he @@.mediumaquamarine;trusts@@ you enough to rely on you. When you finally give $him $his snorkel $he laughs, bubbles rising from around the mouthpiece, and then hugs you impulsively, intentionally giving you a huge faceful of boob. You pull $his weight belt down and tighten it around $his ankles so $he's pinned standing on the bottom, and then
+		<<if ($PC.vagina == 1)>>
+			spread $his knees so you can scissor your pussy against $him in the near-zero gravity, the tangle of limbs and breasts swaying gently as you grind.
 		<<else>>
-			<<if ($activeSlave.anus > 2)>>loose slit of $his asspussy<<elseif ($activeSlave.anus > 1)>>welcoming pucker of $his anus<<else>>tight pucker of $his butt<</if>>. $He exaggerates $his discomfort, wriggling against $his weighted feet and squealing through $his snorkel as you gently sodomize $him under water. $His enormous breasts quiver in near-zero gravity with each thrust, until you notice the delicious motion and take one in each hand.
-			<<= AnalVCheck()>>
+			insert yourself into the
+			<<if canDoVaginal($activeSlave)>>
+				<<if ($activeSlave.vagina > 3)>>welcoming gape of $his pussy<<elseif ($activeSlave.vagina > 2)>>loose embrace of $his pussy<<elseif ($activeSlave.vagina > 1)>>welcoming embrace of $his pussy<<else>>tight tight embrace of $his pussy<</if>>. $He enjoys the sensation of such an unusual fucking, wriggling against $his weighted feet and moaning through $his snorkel as you gently take $him under water. $His enormous breasts quiver in near-zero gravity with each thrust, until you notice the delicious motion and take one in each hand.
+				<<= VaginalVCheck()>>
+			<<else>>
+				<<if ($activeSlave.anus > 2)>>loose slit of $his asspussy<<elseif ($activeSlave.anus > 1)>>welcoming pucker of $his anus<<else>>tight pucker of $his butt<</if>>. $He exaggerates $his discomfort, wriggling against $his weighted feet and squealing through $his snorkel as you gently sodomize $him under water. $His enormous breasts quiver in near-zero gravity with each thrust, until you notice the delicious motion and take one in each hand.
+				<<= AnalVCheck()>>
+			<</if>>
 		<</if>>
-	<</if>>
-	The amount of air you can pull through the snorkel just isn't enough to facilitate the throes of your lovemaking, so by the time you're done, $he's so exhausted $he can barely float to the edge of the pool. Fortunately $his lovely tits make for quite the floatation device, so you gently guide $him to the shallow end<<if $PC.dick || $activeSlave.balls>>, leaving a trail of cum in your wake<</if>>.
-	<<set $activeSlave.trust += 4>>
+		The amount of air you can pull through the snorkel just isn't enough to facilitate the throes of your lovemaking, so by the time you're done, $he's so exhausted $he can barely float to the edge of the pool. Fortunately $his lovely tits make for quite the floatation device, so you gently guide $him to the shallow end<<if $PC.dick || $activeSlave.balls>>, leaving a trail of cum in your wake<</if>>.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 
 <<case "newly devoted sunrise">>
 
 <<link "Slaveowners do not hold their slaves' hands">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	<<if canSee($activeSlave)>>You shake your head sternly<<else>>You say nothing but don't take $his hand<</if>>. $He looks neither afraid nor crushed, but simply gazes properly at you, clearly waiting for punishment. When none comes, $he accepts that it was not culpably wrong of $him to ask, but that the answer is no. $He leaves the balcony feeling reassured about $his place in $arcologies[0].name — a little more independent of $his <<= WrittenMaster()>> and yet a little more inured to the reality of his control. $He is a proper devoted slave and will remain so.
+		<<if canSee($activeSlave)>>You shake your head sternly<<else>>You say nothing but don't take $his hand<</if>>. $He looks neither afraid nor crushed, but simply gazes properly at you, clearly waiting for punishment. When none comes, $he accepts that it was not culpably wrong of $him to ask, but that the answer is no. $He leaves the balcony feeling reassured about $his place in $arcologies[0].name — a little more independent of $his <<= WrittenMaster()>> and yet a little more inured to the reality of his control. $He is a proper devoted slave and will remain so.
 	<</replace>>
 <</link>>
 <br><<link "Hold $his hand">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	<<if canSee($activeSlave)>>You nod without taking your eyes off the blazing horizon<<else>>You take $his hand without taking your eyes off the blazing horizon<</if>>. $His
-	<<if $activeSlave.height >= 185>>
-		hand is almost as large as yours,
-	<<elseif $activeSlave.height >= 170>>
-		hand fits into yours,
-	<<elseif $activeSlave.height >= 160>>
-		small hand fits comfortably into yours,
-	<<elseif $activeSlave.height >= 150>>
-		petite hand slides into yours,
-	<<else>>
-		tiny hand nestles into yours,
-	<</if>>
-	and <<if $activeSlave.muscles > 30>>$his grip is extremely powerful<<elseif $activeSlave.muscles > 5>>$his grip surprisingly strong<<else>>$his grip is soft and feminine<</if>>. Through $his hand you feel $him give a little shiver and relax. It's not difficult to sense $his emotions as the two of you stand there gazing at the rising sun: $he's reassessing who $he is in light of $his @@.hotpink;growing devotion@@ to you, drawing emotional strength from the strong grip that gently encircles $his hand.
-	<<set $activeSlave.devotion += 4>>
+		<<if canSee($activeSlave)>>You nod without taking your eyes off the blazing horizon<<else>>You take $his hand without taking your eyes off the blazing horizon<</if>>. $His
+		<<if $activeSlave.height >= 185>>
+			hand is almost as large as yours,
+		<<elseif $activeSlave.height >= 170>>
+			hand fits into yours,
+		<<elseif $activeSlave.height >= 160>>
+			small hand fits comfortably into yours,
+		<<elseif $activeSlave.height >= 150>>
+			petite hand slides into yours,
+		<<else>>
+			tiny hand nestles into yours,
+		<</if>>
+		and <<if $activeSlave.muscles > 30>>$his grip is extremely powerful<<elseif $activeSlave.muscles > 5>>$his grip surprisingly strong<<else>>$his grip is soft and feminine<</if>>. Through $his hand you feel $him give a little shiver and relax. It's not difficult to sense $his emotions as the two of you stand there gazing at the rising sun: $he's reassessing who $he is in light of $his @@.hotpink;growing devotion@@ to you, drawing emotional strength from the strong grip that gently encircles $his hand.
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "Buttfuck $him against the railing">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You move quietly over to $him and encircle $him with your arms, holding both $his hands over $his _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your
-	<<if $PC.boobsBonus > 2>>
-		enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts
-	<<elseif $PC.boobsBonus == 2>>
-		huge<<if $PC.boobsImplant == 1>> fake<</if>> breasts
-	<<elseif $PC.boobsBonus == 1>>
-		big<<if $PC.boobsImplant == 1>> firm<</if>> breasts
-	<<elseif $PC.boobsBonus == -0.5>>
-		breasts
-	<<elseif $PC.boobsBonus == -1>>
-		average breasts
-	<<elseif $PC.boobs == 1>>
-		breasts
-	<<elseif $PC.title == 0>>
-		flat chest
-	<<else>>
-		chest
-	<</if>>
-	for a few moments until $he feels your <<if $PC.dick == 0>>building warmth<<else>>hardening member<</if>> against
-	<<if $activeSlave.height >= 160>>
-		$his ass.
-	<<else>>
-		$his lower back.
-	<</if>>
-	$He automatically begins to rub $himself up and down to stimulate you; once $he feels you reach <<if $PC.dick == 0>>full arousal<<else>>rock hardness<<if $PC.vagina == 1>> and total wetness<</if>><</if>> $he
-	<<if $activeSlave.height >= 170>>
-		leans into the rail, bending over it just slightly to offer $his asshole at just the right height.
-	<<else>>
-		hikes $himself up on the rail, up on tiptoe, to bring $his asshole to the most comfortable height.
-	<</if>>
-	$He moans a little as you<<if $PC.dick == 0>> pull on your trusty vibrating strap-on and<</if>> enter $his butt, but $he keeps $his gaze on the fiery horizon. $He extricated $his hands from yours to stabilize $himself against the railing, leaving you free to gently massage $his breasts in time with your slow thrusts. $He does not climax, but after you do $he turns halfway within your arms and kisses you impulsively. $He leaves the balcony with a @@.hotpink;small smile@@ on $his face.
-	<<= AnalVCheck()>>
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take virginity//<</if>>
+	<br><<link "Buttfuck $him against the railing">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You move quietly over to $him and encircle $him with your arms, holding both $his hands over $his _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your
+			<<if $PC.boobsBonus > 2>>
+				enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts
+			<<elseif $PC.boobsBonus == 2>>
+				huge<<if $PC.boobsImplant == 1>> fake<</if>> breasts
+			<<elseif $PC.boobsBonus == 1>>
+				big<<if $PC.boobsImplant == 1>> firm<</if>> breasts
+			<<elseif $PC.boobsBonus == -0.5>>
+				breasts
+			<<elseif $PC.boobsBonus == -1>>
+				average breasts
+			<<elseif $PC.boobs == 1>>
+				breasts
+			<<elseif $PC.title == 0>>
+				flat chest
+			<<else>>
+				chest
+			<</if>>
+			for a few moments until $he feels your <<if $PC.dick == 0>>building warmth<<else>>hardening member<</if>> against
+			<<if $activeSlave.height >= 160>>
+				$his ass.
+			<<else>>
+				$his lower back.
+			<</if>>
+			$He automatically begins to rub $himself up and down to stimulate you; once $he feels you reach <<if $PC.dick == 0>>full arousal<<else>>rock hardness<<if $PC.vagina == 1>> and total wetness<</if>><</if>> $he
+			<<if $activeSlave.height >= 170>>
+				leans into the rail, bending over it just slightly to offer $his asshole at just the right height.
+			<<else>>
+				hikes $himself up on the rail, up on tiptoe, to bring $his asshole to the most comfortable height.
+			<</if>>
+			$He moans a little as you<<if $PC.dick == 0>> pull on your trusty vibrating strap-on and<</if>> enter $his butt, but $he keeps $his gaze on the fiery horizon. $He extricated $his hands from yours to stabilize $himself against the railing, leaving you free to gently massage $his breasts in time with your slow thrusts. $He does not climax, but after you do $he turns halfway within your arms and kisses you impulsively. $He leaves the balcony with a @@.hotpink;small smile@@ on $his face.
+			<<= AnalVCheck()>>
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his virginity//<</if>>
 <</if>>
 <<if canDoVaginal($activeSlave)>>
-<br><<link "Fuck $him against the railing">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You move quietly over to $him and encircle $him with your arms, holding both $his hands over $his _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your
-	<<if $PC.boobsBonus > 2>>
-		enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts
-	<<elseif $PC.boobsBonus == 2>>
-		huge<<if $PC.boobsImplant == 1>> fake<</if>> breasts
-	<<elseif $PC.boobsBonus == 1>>
-		big<<if $PC.boobsImplant == 1>> firm<</if>> breasts
-	<<elseif $PC.boobsBonus == -0.5>>
-		breasts
-	<<elseif $PC.boobsBonus == -1>>
-		average breasts
-	<<elseif $PC.boobs == 1>>
-		breasts
-	<<elseif $PC.title == 0>>
-		flat chest
-	<<else>>
-		chest
-	<</if>>
-	for a few moments until $he feels your <<if $PC.dick == 0>>building warmth<<else>>hardening member<</if>> against
-	<<if $activeSlave.height >= 160>>
-		$his ass.
-	<<else>>
-		$his lower back.
-	<</if>>
-	$He automatically begins to rub $himself up and down to stimulate you; once $he feels you reach <<if $PC.dick == 0>>full arousal<<else>>rock hardness<<if $PC.vagina == 1>> and total wetness<</if>><</if>> $he
-	<<if $activeSlave.height >= 170>>
-		leans into the rail, bending over it just slightly to offer $his pussy at just the right height
-	<<else>>
-		hikes $himself up on the rail, up on tiptoe, to bring $his pussy to the most comfortable height.
-	<</if>>
-	$He moans a little as you<<if $PC.dick == 0>> pull on your trusty vibrating strap-on and<</if>> enter $his depths, but $he keeps $his gaze on the fiery horizon. $He extricated $his hands from yours to stabilize $himself against the railing, leaving you free to gently massage $his breasts in time with your slow thrusts. $He does not climax, but after you do $he turns halfway within your arms and kisses you impulsively. $He leaves the balcony with a @@.hotpink;small smile@@ on $his face.
-	<<= VaginalVCheck()>>
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>>
+	<br><<link "Fuck $him against the railing">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You move quietly over to $him and encircle $him with your arms, holding both $his hands over $his _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your
+			<<if $PC.boobsBonus > 2>>
+				enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts
+			<<elseif $PC.boobsBonus == 2>>
+				huge<<if $PC.boobsImplant == 1>> fake<</if>> breasts
+			<<elseif $PC.boobsBonus == 1>>
+				big<<if $PC.boobsImplant == 1>> firm<</if>> breasts
+			<<elseif $PC.boobsBonus == -0.5>>
+				breasts
+			<<elseif $PC.boobsBonus == -1>>
+				average breasts
+			<<elseif $PC.boobs == 1>>
+				breasts
+			<<elseif $PC.title == 0>>
+				flat chest
+			<<else>>
+				chest
+			<</if>>
+			for a few moments until $he feels your <<if $PC.dick == 0>>building warmth<<else>>hardening member<</if>> against
+			<<if $activeSlave.height >= 160>>
+				$his ass.
+			<<else>>
+				$his lower back.
+			<</if>>
+			$He automatically begins to rub $himself up and down to stimulate you; once $he feels you reach <<if $PC.dick == 0>>full arousal<<else>>rock hardness<<if $PC.vagina == 1>> and total wetness<</if>><</if>> $he
+			<<if $activeSlave.height >= 170>>
+				leans into the rail, bending over it just slightly to offer $his pussy at just the right height
+			<<else>>
+				hikes $himself up on the rail, up on tiptoe, to bring $his pussy to the most comfortable height.
+			<</if>>
+			$He moans a little as you<<if $PC.dick == 0>> pull on your trusty vibrating strap-on and<</if>> enter $his depths, but $he keeps $his gaze on the fiery horizon. $He extricated $his hands from yours to stabilize $himself against the railing, leaving you free to gently massage $his breasts in time with your slow thrusts. $He does not climax, but after you do $he turns halfway within your arms and kisses you impulsively. $He leaves the balcony with a @@.hotpink;small smile@@ on $his face.
+			<<= VaginalVCheck()>>
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
 <</if>>
 
 <<case "nympho with assistant">>
@@ -6975,86 +6977,86 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 <<link "No, spectate and relax with $him afterward">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You leave for a moment, but return quickly with a chair and a refreshing beverage so you can sit and enjoy the spectacle. It's hard to tell, but you're reasonably sure $activeSlave.slaveName is flattered by your interest. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> does not let $him go for a long time, however, and when $he finally retracts all the phalli, $activeSlave.slaveName collapses weakly to the sweat-stained floor.
-	<<if $activeSlave.belly >= 300000>>
-		You try to gather the limp nympho in your arms, but $his _belly is far too heavy to carry, so you settle for assisting $him to your private bath, which is all ready and filled with steaming water. $activeSlave.slaveName groans with pleasure as you help $him into the water and slip in beside $him.
-	<<else>>
-		You gather the limp nympho in your arms and carry $him to your private bath, which is all ready and filled with steaming water. $activeSlave.slaveName groans with pleasure as you lower $him, still cradled in your arms, into the water.
-	<</if>>
-	$He nuzzles $his $activeSlave.skin cheek against your <<if ($PC.boobs > 0)>>breasts<<else>>chest<</if>>, eyes closed in @@.hotpink;bliss.@@
-	<<set $activeSlave.devotion += 4>>
+		You leave for a moment, but return quickly with a chair and a refreshing beverage so you can sit and enjoy the spectacle. It's hard to tell, but you're reasonably sure $activeSlave.slaveName is flattered by your interest. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> does not let $him go for a long time, however, and when $he finally retracts all the phalli, $activeSlave.slaveName collapses weakly to the sweat-stained floor.
+		<<if $activeSlave.belly >= 300000>>
+			You try to gather the limp nympho in your arms, but $his _belly is far too heavy to carry, so you settle for assisting $him to your private bath, which is all ready and filled with steaming water. $activeSlave.slaveName groans with pleasure as you help $him into the water and slip in beside $him.
+		<<else>>
+			You gather the limp nympho in your arms and carry $him to your private bath, which is all ready and filled with steaming water. $activeSlave.slaveName groans with pleasure as you lower $him, still cradled in your arms, into the water.
+		<</if>>
+		$He nuzzles $his $activeSlave.skin cheek against your <<if ($PC.boobs > 0)>>breasts<<else>>chest<</if>>, eyes closed in @@.hotpink;bliss.@@
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Tour $his holes">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The polite thing to do would be to instruct $assistantName to retract a dildo before replacing it with <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>>. You are not, however, feeling particularly polite. $activeSlave.slaveName writhes in anguish when $he feels an additional phallus forcing its way past $his lips. $He tries to relax but loses control and spasms; the throat fucking continues unmercifully and in short order $he is gagging desperately. Each of $his holes receives the same treatment in turn; all $he manages to do in response is writhe here and there, and squeal incoherently whenever $his mouth isn't totally full. $He has become @@.hotpink;more submissive to you.@@
-	<<= BothVCheck()>>
-	<<set $activeSlave.devotion += 4>>
-	<<if $activeSlave.vagina == 1 && canDoVaginal($activeSlave)>>
-		$His tight pussy @@.lime;isn't so tight any more.@@
-		<<set $activeSlave.vagina += 1>>
-	<</if>>
-	<<if $activeSlave.anus == 1 && canDoAnal($activeSlave)>>
-		$His tight butt @@.lime;has been loosened by the double anal.@@
-		<<set $activeSlave.anus += 1>>
-	<</if>>
-	<<if $activeSlave.nipples == "fuckable">>
-		<<set $activeSlave.counter.mammary += 2, $mammaryTotal += 2>>
-	<</if>>
-	<<set _skillIncrease = 10>>
-	<<if $activeSlave.skill.anal <= 10 && canDoAnal($activeSlave)>>
-		$He can't help but learn how to take a rough buttfuck.
-		<<= SkillIncrease.Anal($activeSlave, _skillIncrease)>>
-	<</if>>
-	<<if $activeSlave.skill.oral <= 10>>
-		$He can't help but learn how to deepthroat.
-		<<= SkillIncrease.Oral($activeSlave, _skillIncrease)>>
-	<</if>>
+		The polite thing to do would be to instruct $assistantName to retract a dildo before replacing it with <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>>. You are not, however, feeling particularly polite. $activeSlave.slaveName writhes in anguish when $he feels an additional phallus forcing its way past $his lips. $He tries to relax but loses control and spasms; the throat fucking continues unmercifully and in short order $he is gagging desperately. Each of $his holes receives the same treatment in turn; all $he manages to do in response is writhe here and there, and squeal incoherently whenever $his mouth isn't totally full. $He has become @@.hotpink;more submissive to you.@@
+		<<= BothVCheck()>>
+		<<set $activeSlave.devotion += 4>>
+		<<if $activeSlave.vagina == 1 && canDoVaginal($activeSlave)>>
+			$His tight pussy @@.lime;isn't so tight any more.@@
+			<<set $activeSlave.vagina += 1>>
+		<</if>>
+		<<if $activeSlave.anus == 1 && canDoAnal($activeSlave)>>
+			$His tight butt @@.lime;has been loosened by the double anal.@@
+			<<set $activeSlave.anus += 1>>
+		<</if>>
+		<<if $activeSlave.nipples == "fuckable">>
+			<<set $activeSlave.counter.mammary += 2, $mammaryTotal += 2>>
+		<</if>>
+		<<set _skillIncrease = 10>>
+		<<if $activeSlave.skill.anal <= 10 && canDoAnal($activeSlave)>>
+			$He can't help but learn how to take a rough buttfuck.
+			<<= SkillIncrease.Anal($activeSlave, _skillIncrease)>>
+		<</if>>
+		<<if $activeSlave.skill.oral <= 10>>
+			$He can't help but learn how to deepthroat.
+			<<= SkillIncrease.Oral($activeSlave, _skillIncrease)>>
+		<</if>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <<set _cumSlaves = $slaves.filter(function(s) { return s.assignment == "work in the dairy" && s.balls > 0 && isSlaveAvailable(s) && canPenetrate(s); })>>
 <<if _cumSlaves.length >= 5>>
-<br><<link "Replace the machines with cockmilkees from the Dairy">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	Some minutes later $activeSlave.slaveName feels one of the dildos retract and wriggles in protest. $He's not long disappointed, though, as $he immediately feels it replaced by a turgid dick. You and $assistantName stage-manage, and it isn't easy. Getting all the cocks into $him requires some creative choreography; quite apart from the limits of even $his well-used holes, it's hard just figuring out where everyone ought to stand. The cockmilked slaves are used to coming fast, and they do here, too, so there's also the necessity of switching them out periodically. Eventually you tire of the amusement and direct the Dairy bitches to clean up, which is no mean job, since $activeSlave.slaveName is by now lying in a pool of sweat and cum. But mostly cum. Despite the mess, everyone @@.hotpink;enjoys@@ themselves immensely.
-	<<if $activeSlave.vagina == 0 && canDoVaginal($activeSlave)>>
-		$He certainly @@.lime;isn't a virgin any more.@@
-		<<set $activeSlave.vagina += 1>>
-	<</if>>
-	<<if $activeSlave.anus == 0 && canDoAnal($activeSlave)>>
-		$His virgin butt @@.lime;has been broken in.@@
-		<<set $activeSlave.anus += 1>>
-	<</if>>
-	<<set $activeSlave.devotion += 4>>
-	<<set _totalFuckers = 0>>
-	<<for _ress = 0; _ress < _cumSlaves.length; _ress++>>
-		<<set _RESS = $slaveIndices[_cumSlaves[_ress].ID]>>
-		<<set $slaves[_RESS].devotion += 4, $slaves[_RESS].counter.penetrative++>>
-		<<set $penetrativeTotal++, _totalFuckers++>>
-		<<if canImpreg($activeSlave, $slaves[_RESS])>>
-			<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
-				<<= knockMeUp($activeSlave, 5, 2, $slaves[_RESS].ID)>>
-			<<elseif canDoVaginal($activeSlave)>>
-				<<= knockMeUp($activeSlave, 5, 0, $slaves[_RESS].ID)>>
-			<<elseif canDoAnal($activeSlave)>>
-				<<= knockMeUp($activeSlave, 5, 1, $slaves[_RESS].ID)>>
+	<br><<link "Replace the machines with cockmilkees from the Dairy">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			Some minutes later $activeSlave.slaveName feels one of the dildos retract and wriggles in protest. $He's not long disappointed, though, as $he immediately feels it replaced by a turgid dick. You and $assistantName stage-manage, and it isn't easy. Getting all the cocks into $him requires some creative choreography; quite apart from the limits of even $his well-used holes, it's hard just figuring out where everyone ought to stand. The cockmilked slaves are used to coming fast, and they do here, too, so there's also the necessity of switching them out periodically. Eventually you tire of the amusement and direct the Dairy bitches to clean up, which is no mean job, since $activeSlave.slaveName is by now lying in a pool of sweat and cum. But mostly cum. Despite the mess, everyone @@.hotpink;enjoys@@ themselves immensely.
+			<<if $activeSlave.vagina == 0 && canDoVaginal($activeSlave)>>
+				$He certainly @@.lime;isn't a virgin any more.@@
+				<<set $activeSlave.vagina += 1>>
 			<</if>>
-		<</if>>
-	<</for>>
-	<<if $activeSlave.nipples == "fuckable">>
-		<<set $activeSlave.counter.mammary += _totalFuckers*2, $mammaryTotal += _totalFuckers*2>>
-	<</if>>
-	<<if canDoAnal($activeSlave)>>
-		<<set $activeSlave.counter.anal += _totalFuckers, $analTotal += _totalFuckers>>
-	<</if>>
-	<<if canDoVaginal($activeSlave)>>
-		<<set $activeSlave.counter.vaginal += _totalFuckers, $vaginalTotal += _totalFuckers>>
-	<</if>>
-	<<set $activeSlave.counter.oral += _totalFuckers, $oralTotal += _totalFuckers>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+			<<if $activeSlave.anus == 0 && canDoAnal($activeSlave)>>
+				$His virgin butt @@.lime;has been broken in.@@
+				<<set $activeSlave.anus += 1>>
+			<</if>>
+			<<set $activeSlave.devotion += 4>>
+			<<set _totalFuckers = 0>>
+			<<for _ress = 0; _ress < _cumSlaves.length; _ress++>>
+				<<set _RESS = $slaveIndices[_cumSlaves[_ress].ID]>>
+				<<set $slaves[_RESS].devotion += 4, $slaves[_RESS].counter.penetrative++>>
+				<<set $penetrativeTotal++, _totalFuckers++>>
+				<<if canImpreg($activeSlave, $slaves[_RESS])>>
+					<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
+						<<= knockMeUp($activeSlave, 5, 2, $slaves[_RESS].ID)>>
+					<<elseif canDoVaginal($activeSlave)>>
+						<<= knockMeUp($activeSlave, 5, 0, $slaves[_RESS].ID)>>
+					<<elseif canDoAnal($activeSlave)>>
+						<<= knockMeUp($activeSlave, 5, 1, $slaves[_RESS].ID)>>
+					<</if>>
+				<</if>>
+			<</for>>
+			<<if $activeSlave.nipples == "fuckable">>
+				<<set $activeSlave.counter.mammary += _totalFuckers*2, $mammaryTotal += _totalFuckers*2>>
+			<</if>>
+			<<if canDoAnal($activeSlave)>>
+				<<set $activeSlave.counter.anal += _totalFuckers, $analTotal += _totalFuckers>>
+			<</if>>
+			<<if canDoVaginal($activeSlave)>>
+				<<set $activeSlave.counter.vaginal += _totalFuckers, $vaginalTotal += _totalFuckers>>
+			<</if>>
+			<<set $activeSlave.counter.oral += _totalFuckers, $oralTotal += _totalFuckers>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 
 <<case "sore ass">>
@@ -7062,823 +7064,831 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 <<link "Punish $his ass for insolence">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You inform $him sternly that you will ensure that $he is not permanently damaged, and that otherwise, $he is to take anal pain like a good buttslave. $He starts to beg and whine as you lean back in your chair and <<if $PC.dick == 0>>hold $him upside down on your chest so $he can lick your pussy while you use a dildo on $his ass.<<else>>set $him on your chest before reaching around to line your cock up with $his sore hole. $He shudders and writhes when you start pushing yourself inside.<</if>> You use hard pinches to $his nipples to punish $his whining, forcing $him to take a long, painful buttfuck in silence. @@.gold;$He has become more afraid of you.@@
-	<<if ($activeSlave.anus < 3)>>$His week of tough anal experience has @@.lime;permanently loosened $his anus.@@<<set $activeSlave.anus += 1>><</if>>
-	<<set $activeSlave.trust -= 5>>
-	<<= AnalVCheck()>>
+		You inform $him sternly that you will ensure that $he is not permanently damaged, and that otherwise, $he is to take anal pain like a good buttslave. $He starts to beg and whine as you lean back in your chair and <<if $PC.dick == 0>>hold $him upside down on your chest so $he can lick your pussy while you use a dildo on $his ass.<<else>>set $him on your chest before reaching around to line your cock up with $his sore hole. $He shudders and writhes when you start pushing yourself inside.<</if>> You use hard pinches to $his nipples to punish $his whining, forcing $him to take a long, painful buttfuck in silence. @@.gold;$He has become more afraid of you.@@
+		<<if ($activeSlave.anus < 3)>>$His week of tough anal experience has @@.lime;permanently loosened $his anus.@@<<set $activeSlave.anus += 1>><</if>>
+		<<set $activeSlave.trust -= 5>>
+		<<= AnalVCheck()>>
 	<</replace>>
 <</link>>
 <br><<link "Give $him some care">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He's filled with anxiety as you
-	<<if $activeSlave.belly < 1500>>
-		lay $him face-down on your desk,
-	<<else>>
-		direct $him to lay on $his side on your desk<<if $activeSlave.belly >= 300000>> with $his _belly belly hanging over the edge<</if>>,
-	<</if>>
-	but is surprised and reassured when $he's penetrated not by a <<if $PC.dick == 0>>strap-on<<else>>turgid<<if $PC.vagina == 1>> futa<</if>> cock<</if>> but by a single gentle finger coated with something healing and cool. The mixed analgesic and anti-inflammatory takes the sharpness off the sore feeling, and will help get $his butt back into fucking shape. @@.mediumaquamarine;$He has become more accepting of anal slavery,@@ and @@.green;$his asshole feels better.@@
-	<<if ($activeSlave.anus > 2)>>Your expert care has @@.orange;allowed $his loose asspussy to recover a little of its natural shape and size.@@<<set $activeSlave.anus -= 1>><</if>>
-	<<set $activeSlave.trust += 4, $activeSlave.minorInjury = 0>>
-	<</replace>>
-<</link>>
-
-<<case "shift doorframe">>
-<<if canDoAnal($activeSlave)>>
-<<link "Make butt love">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	There's a glint <<if canSee($activeSlave)>>in $his eyes as $he sees<<elseif canHear($activeSlave)>>on $his face as $he hears<<else>>on $his face as $he senses<</if>> you stand up from your desk;
-	<<if $activeSlave.height >= 185>>
-		$he's tall enough for standing anal, so as you approach $he just turns $his head back to face the door frame and cocks $his hips.
-	<<elseif $activeSlave.height < 160>>
-		$he's so short standing anal is a stretch, so as you approach $he goes up on tiptoe with one leg and runs the other up the wall, using it as support to hike $his ass as high as $he can manage.
-	<<else>>
-		$he's shorter than you, so as you approach $he goes up on tiptoe to bring $his ass to just the right height for standing anal.
-	<</if>>
-	You don't penetrate $him right away, though; you
-	<<if $activeSlave.butt > 5>>
-		knead $his mass of assflesh,
-	<<elseif $activeSlave.butt > 2>>
-		heft a big buttock in each hand,
-	<<else>>
-		cup $his nice little buttocks,
-	<</if>>
-	briefly tease $his
-	<<if $activeSlave.anus > 2>>
-		gaping asshole
-	<<elseif $activeSlave.anus > 1>>
-		ready asshole
-	<<else>>
-		inexperienced asshole
-	<</if>>
-	with one finger, and then run your hands around $his
-	<<if $activeSlave.waist < -95>>
-		cartoonishly narrow
-	<<elseif $activeSlave.waist < -10>>
-		wasp
-	<<elseif $activeSlave.waist < 10>>
-		pretty
-	<<else>>
-		thick
-	<</if>>
-	waist and up $his
-	<<if ($activeSlave.belly >= 100000)>>
-		_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly
-	<<elseif ($activeSlave.weight > 130)>>
-		fat gut
-	<<elseif ($activeSlave.belly >= 1500)>>
-		_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly
-	<<elseif ($activeSlave.muscles > 30)>>
-		ripped abs
-	<<elseif ($activeSlave.weight > 30)>>
-		fat belly
-	<<elseif ($activeSlave.weight > 10)>>
-		plush stomach
-	<<elseif ($activeSlave.weight >= -10)>>
-		taut stomach
-	<<else>>
-		skinny body
-	<</if>>
-	to rest
-	<<if $activeSlave.boobs > 2000>>
-		buried under $his enormous breasts.
-	<<elseif $activeSlave.boobs > 800>>
-		under $his heavy breasts.
-	<<elseif $activeSlave.boobs > 200>>
-		under the curve of $his breasts.
-	<<else>>
-		against $his trim chest.
-	<</if>>
-	Despite $his poise $he sighs at your impromptu massage, gasps at your
-	<<if $PC.belly >= 5000>>
-		pregnancy pushing
-	<<elseif $PC.boobs != 0>>
-		erect nipples brushing
-	<<elseif $PC.title == 0>>
-		flat chest pressing
-	<<else>>
-		muscular chest pressing
-	<</if>>
-	against $his back, and shudders when your <<if $PC.dick == 0>>strap-on<<else>>stiff prick<</if>> comes to rest between $his legs<<if $PC.vagina == 1>><<if $PC.dick == 1>>, the moist heat of your pussy very obvious at the base of your cock<</if>><</if>>. You bring $him to a fine point of arousal, enjoying $his body, pulling $his $activeSlave.skin chin around to kiss $his
-	<<if $activeSlave.lips > 60>>
-		bimbo
-	<<elseif $activeSlave.lips > 40>>
-		big
-	<<elseif $activeSlave.lips > 20>>
-		soft
-	<</if>>
-	lips. $He's so ready that when you finally penetrate $him, $he orgasms slightly after one thrust,
-	<<if ($activeSlave.dick > 6) && !canAchieveErection($activeSlave)>>
-		releasing a spurt of cum onto the floor
-	<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-		releasing a spurt of cum against the door frame.
-	<<elseif $activeSlave.dick > 0>>
-		spurting cum against the door frame.
-	<<elseif $activeSlave.vagina == -1>>
-		grinding $his featureless crotch against the door frame.
-	<<else>>
-		leaving a little girlcum on the door frame.
-	<</if>>
-	$His
-	<<if $activeSlave.anus > 2>>
-		tired sphincter clenches down to almost virgin tightness
-	<<elseif $activeSlave.anus > 1>>
-		veteran sphincter tightens powerfully
-	<<else>>
-		tight sphincter tightens mercilessly
-	<</if>>
-	with the orgasm, eliciting a sob of overstimulation, which you draw into a series of sobs by slowly assfucking $him despite $his climax. You are gentle with $his butt, and continue teasing $his body, so that $his arousal builds again and $he manages to climax a second time when you do. You let $him out from between you and the door frame to wash, and return to work, but when $he emerges from a quick trip to the bathroom $he
-	<<if $activeSlave.belly >= 300000>>
-		leans against $his _belly stomach,
-	<<else>>
-		kneels on the couch,
-	<</if>>
-	spreads $his buttocks with one hand,
-	<<if !canTalk($activeSlave)>>
-		and @@.mediumaquamarine;earnestly asks@@ for more.
-	<<else>>
-		and @@.mediumaquamarine;asks earnestly,@@ "More plea<<s>>e, <<Master>>."
-	<</if>>
-	<<set $activeSlave.trust += 4>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave))>> //This option will take anal virginity//<</if>>
-<br><<link "Pound that ass">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You choose your moment carefully, waiting until <<if canSee($activeSlave)>>$he turns $his gaze away from you for an instant. When $he looks back, your desk chair is empty<<else>>the ambient sound is loud enough for you to sneak up on $him<</if>>; for all $his sexual poise $he's surprised by the force of your
-	<<if $PC.belly >= 5000>>
-		pregnancy
-	<<elseif $PC.boobs != 0>>
-		tits
-	<<else>>
-		chest
-	<</if>>
-	crashing into $his
-	<<if $activeSlave.weight > 160>>
-		rippling
-	<<elseif $activeSlave.weight > 95>>
-		soft
-	<<elseif ($activeSlave.muscles > 95)>>
-		ripped
-	<<elseif ($activeSlave.muscles > 30)>>
-		muscular
-	<<elseif ($activeSlave.muscles > 5)>>
-		toned
-	<<else>>
-		soft
-	<</if>>
-	back, forcing $him<<if ($activeSlave.belly >= 1500)>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>> against the door frame.
-	<<if $activeSlave.height >= 185>>
-		$He's so tall $his butt is at the perfect height right where it is, so $he relaxes as much as possible, trapped against the door frame.
-	<<elseif $activeSlave.height < 160>>
-		$He's short enough that even tiptoes aren't enough, and you force $him up between you and the door frame, pinning $his little body helplessly in place.
-	<<else>>
-		$He squirms up on tiptoes to get $his butt to the right height, trapped between you and the door frame.
-	<</if>>
-	None too soon, for the next thing $he feels is the discomfort of standing anal penetration,
-	<<if $activeSlave.anus > 2>>
-		though it's nothing new to $him.
-	<<elseif $activeSlave.anus > 1>>
-		veteran asshole notwithstanding.
-	<<else>>
-		worsened by $his tight little sphincter.
-	<</if>>
-	You ravage $his ass hard from the first stroke, making it clear you're taking your pleasure, leaving $him nothing to do but cling to the door frame and try to ride it out. At first $he was squashed painfully against it, but $he manages to <<if ($activeSlave.belly >= 5000)>>shift $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>beside the frame and<</if>> cock $his hips out at enough of an angle that $he can get back to
-	<<if ($activeSlave.dick > 6) && !canAchieveErection($activeSlave)>>
-		rubbing $his oversized cock between it and $his leg
-	<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-		humping $his pathetic limp dick against it
-	<<elseif $activeSlave.dick > 0>>
-		rubbing $his cock against it
-	<<elseif $activeSlave.vagina == -1>>
-		grind $his smooth groin against it instinctively, even though that's not very useful
-	<<else>>
-		humping $his pussy against it
-	<</if>>
-	for stimulation. $His asshole eventually spasms in orgasm, but it's spasmed so frequently during the rough sodomy that you don't realize the slut came to having $his asshole savaged until <<if $activeSlave.dick > 0>>you notice the ejaculate running down $his leg<<else>>an aftershock almost makes $his legs give out<</if>>. You climax in triumph yourself before pulling the bitch off the door frame and flinging $him towards the bathroom to clean $himself up. When $he emerges, $he comes over to sit quietly next to your desk, looking up at you @@.hotpink;obediently,@@ though you do notice $he sits to one side to take a bit of weight off $his poor rear.
-	<<set $activeSlave.devotion += 4>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave))>> //This option will take anal virginity//<</if>>
-<</if>>
-<<if canDoVaginal($activeSlave)>>
-<br><<link "Pound that pussy">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You choose your moment carefully, waiting until <<if canSee($activeSlave)>>$he turns $his gaze away from you for an instant. When $he looks back, your desk chair is empty<<else>>the ambient sound is loud enough for you to sneak up on $his<</if>>; for all $his sexual poise $he's surprised by the force of your
-	<<if $PC.belly >= 5000>>
-		pregnancy
-	<<elseif $PC.boobs != 0>>
-		tits
-	<<else>>
-		chest
-	<</if>>
-	crashing into $his
-	<<if $activeSlave.weight > 160>>
-		rippling
-	<<elseif $activeSlave.weight > 95>>
-		soft
-	<<elseif ($activeSlave.muscles > 95)>>
-		ripped
-	<<elseif ($activeSlave.muscles > 30)>>
-		muscular
-	<<elseif ($activeSlave.muscles > 5)>>
-		toned
-	<<else>>
-		soft
-	<</if>>
-	back, forcing $his<<if ($activeSlave.belly >= 1500)>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>> against the door frame.
-	<<if $activeSlave.height >= 185>>
-		$He's so tall $his butt is at the perfect height right where it is, so $he relaxes as much as possible, trapped against the door frame.
-	<<elseif $activeSlave.height < 160>>
-		$He's short enough that even tiptoes aren't enough, and you force $him up between you and the door frame, pinning $his little body helplessly in place.
-	<<else>>
-		$He squirms up on tiptoes to get $his hips to the right height, trapped between you and the door frame.
-	<</if>>
-	None too soon, for the next thing $he feels is the pleasure of standing vaginal penetration,
-	<<if $activeSlave.vagina > 2>>
-		though it's nothing new to $him.
-	<<elseif $activeSlave.vagina > 1>>
-		veteran pussy notwithstanding.
-	<<else>>
-		inserting slowly into $his still-tight pussy.
-	<</if>>
-	You pump $him hard from the first stroke, making it clear you're taking your pleasure, leaving $him nothing to do but cling to the door frame and try to ride it out. At first $he was squashed painfully against it, but $he manages to <<if ($activeSlave.belly >= 5000)>>shift $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>beside the frame and<</if>> cock $his hips out at enough of an angle that $he can get back to
-	<<if ($activeSlave.dick > 6) && !canAchieveErection($activeSlave)>>
-		rubbing $his oversized cock between it and $his leg.
-	<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-		humping $his pathetic limp dick against it.
-	<<elseif $activeSlave.dick > 0>>
-		rubbing $his cock against it.
-	<<else>>
-		humping $his abdomen against it.
-	<</if>>
-	$He eventually shudders and spasms in orgasm, <<if $activeSlave.dick > 0>>the ejaculate running down $his leg<<else>>$his legs almost give out<</if>> making obvious $his pleasure in getting $his pussy fucked by you. You climax in triumph yourself before pulling the bitch off the door frame and flinging $him towards the bathroom to clean $himself up. When $he emerges, $he comes over to sit quietly next to your desk, looking up at you @@.hotpink;obediently.@@
-	<<set $activeSlave.devotion += 4>>
-	<<= VaginalVCheck()>>
-	<</replace>>
-<</link>><<if ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
-<</if>>
-<<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>>
-<br><<link "Invite $him 'in'">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	There's a glint <<if canSee($activeSlave)>>in $his eyes as $he sees<<elseif canHear($activeSlave)>>on $his face as $he hears<<else>>on $his face as $he senses<</if>> you stand up from your desk and saunter over;
-	<<if $activeSlave.height >= 185>>
-		$he's tall enough for standing <<if $PC.vagina == 1>>sex<<else>>anal<</if>>, so as you approach $he just readies $himself to fuck $his lover.
-	<<elseif $activeSlave.height < 160>>
-		$he's so short standing anal is a stretch, so once you approach you get down on your knees and greet the dick that will soon be in your <<if $PC.vagina == 1>>pussy<<else>>asshole<</if>>.
-	<<else>>
-		$he's shorter than you, so as you approach $he goes up on tiptoe to bring $his dick to just the right height for standing sex.
-	<</if>>
-	$He doesn't penetrate you right away, though; $he
-	<<if $PC.butt == 3>>
-		kneads your mass of assflesh
-	<<elseif $PC.butt == 2>>
-		hefts a huge buttock in each hand
-	<<elseif $PC.butt == 1>>
-		gives your big butt a slap
-	<<else>>
-		cups your nice little buttocks
-	<</if>>
-	before bending you over, bringing $his hands to your
-	<<if $PC.title == 0>>
-		wide hips
-	<<else>>
-		masculine hips
-	<</if>>
-	and mounting you.
-	<<if ($activeSlave.belly >= 100000)>>
-		You grunt as the weight of $his _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly comes to rest on your back<<if $activeSlave.belly >= 300000>>, the sheer gravity of it threatening to force you to the floor<</if>>.
-	<<elseif ($activeSlave.boobs >= 15000)>>
-		You grunt as you feel the weight of $his massive breasts slam into your back<<if $activeSlave.boobs >= 30000>>before falling to your sides<</if>>.
-	<<elseif ($activeSlave.weight > 160)>>
-		You grunt as you feel the weight of $his fat gut settle on your back.
-	<</if>>
-	<<if $activeSlave.dick == 1>>
-		<<if $PC.vagina == 1>>
-			<<if $PC.newVag == 1>>
-				$He slips $his tiny dick into your vagina. Fortunately your custom cunt is capable of making even the most embarrassing of dicks pleasurable; though you wish $he could fill you a little better.
-			<<elseif $PC.career == "escort">>
-				You sigh as $his tiny dick enters your stretched pussy. You're far too traveled to enjoy such a meager offering.
-			<<elseif $PC.births >= 10>>
-				You sigh as $his tiny dick enters your used pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore.
-				<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. Suddenly, the size of $his cock doesn't seem to matter as much anymore.<</if>>
-			<<elseif $PC.career == "servant">>
-				You sigh as $his tiny dick enters your used pussy. $He stands no chance of competing with your old Master.
-				<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. Suddenly, the size of $his cock doesn't seem to matter as much anymore.<</if>>
-			<<elseif $PC.births > 2>>
-				You can barely feel $him slip into your loose cunt, but $he is so small it's not like you're missing much.
-			<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
-				You feel $him slip into your vagina and abruptly stop; you sigh over how unsatisfyingly small $he is.
-			<<else>>
-				You squirm as $he slips into your tight pussy. While $his length may be disappointing, $he stands no chance of stretching you out.
-			<</if>>
-		<<else>>
-			You have to check to see if $he's even in your tight rear, only to find $he is already fully hilted. You sigh as $he thrusts into you; no prostate stimulation today.
-		<</if>>
-	<<elseif $activeSlave.dick == 2>>
-		<<if $PC.vagina == 1>>
-			<<if $PC.newVag == 1>>
-				$He slips $his cute dick into your vagina. Fortunately your custom cunt is capable of making $his embarrassing offering pleasurable; though you wish $he could fill you a little better.
-			<<elseif $PC.career == "escort">>
-				You sigh as $his cute dick enters your stretched pussy. You're far too traveled to enjoy such a meager offering, no matter how pathetically adorable it is.
-			<<elseif $PC.births >= 10>>
-				You sigh as $his cute dick enters your abused pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore.
-				<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. Hopefully such a cute penis puts a cute baby in you.<</if>>
-			<<elseif $PC.career == "servant">>
-				You sigh as $his cute dick enters your used pussy. $He stands no chance of competing with your old Master.
-				<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. You doubt $his children will stand up to his either.<</if>>
-			<<elseif $PC.births > 2>>
-				You can barely feel $him slip into your loose cunt, but $he is so small it's not like you're missing much.
-			<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
-				You feel $him slip into your vagina and sigh over how unsatisfyingly small $he is.
-			<<else>>
-				You squirm as $he slips into your tight pussy. $He should be thankful you're so tight.
-			<</if>>
-		<<else>>
-			You sigh as you feel $him slip $his cute dick into your tight rear; no prostate stimulation today.
-		<</if>>
-	<<elseif $activeSlave.dick == 3>>
-		<<if $PC.vagina == 1>>
-			<<if $PC.newVag == 1>>
-				You shudder as $he slips $his dick into your vagina.
-			<<elseif $PC.career == "escort">>
-				You sigh as $his dick slips into your stretched pussy. You're far too traveled for even average cocks these days.
-			<<elseif $PC.births >= 10>>
-				You sigh as $his dick enters your abused pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore.
-				<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
-			<<elseif $PC.career == "servant">>
-				You sigh as $his dick enters your used pussy. $He stands no chance of competing with your old Master.
-				<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
-			<<elseif $PC.births > 2>>
-				You've gotten rather loose after your multiple children, so $his average cock is somewhat underwhelming.
-			<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
-				You shiver with pleasure as $he slips $his dick into your pussy.
-			<<else>>
-				You squirm as $he slips $his dick into your tight pussy, the sensation making you quiver with pleasure.
-			<</if>>
-		<<else>>
-			You squirm as you feel $him slip $his dick into your tight rear, the sensation making you quiver with pleasure.
-			<<if $PC.dick == 1>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock teasing your prostate.<</if>>
-		<</if>>
-	<<elseif $activeSlave.dick == 4>>
-		<<if $PC.vagina == 1>>
-			<<if $PC.newVag == 1>>
-				You shudder as $he slips $his big dick into your vagina.
-			<<elseif $PC.career == "escort">>
-				You shudder as $his big dick slips into your stretched pussy. $He could use to be a little wider, but at least you can feel $him.
-			<<elseif $PC.births >= 10>>
-				You shudder as $his big dick slips into your stretched pussy. $He could use to be a little wider, but at least you can feel $him after the havoc wreaked by your children.
-				<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
-			<<elseif $PC.career == "servant">>
-				You shudder as $his big dick slips into your used pussy. $He's just the right size for you to remember your Master.
-				<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
-			<<elseif $PC.births > 2>>
-				You've gotten rather loose after your multiple children, so $his big cock is a welcome feeling.
-			<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
-				You moan with pleasure as $he slips $his big dick into your pussy, stretching you to your limit.
-			<<else>>
-				You squirm as $he slips $his big dick into your tight pussy, the sensation making you quiver with pleasure and a little pain. $He gives you a chance to get used to $his size before continuing.
-			<</if>>
-		<<else>>
-			You squirm as you feel $him slip $his big dick into your tight rear, the sensation making you quiver with pleasure and a little pain. $He gives you a chance to get used to $his size before continuing.
-			<<if $PC.dick == 1>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock teasing your prostate.<</if>>
-		<</if>>
-	<<elseif $activeSlave.dick == 5>>
-		<<if $PC.vagina == 1>>
-			<<if $PC.newVag == 1>>
-				You shudder with delight as $his impressive dick stretches you perfectly.
-			<<elseif $PC.career == "escort">>
-				You quiver with pleasure as $his impressive dick slips into your stretched pussy. It takes a lot to satisfy you and $he is not disappointing.
-			<<elseif $PC.births >= 10>>
-				You quiver with pleasure as $his impressive dick slips into your stretched pussy. Even given the state of your pussy, $he fills you completely and perfectly.
-				<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
-			<<elseif $PC.career == "servant">>
-				You quiver with pleasure as $his impressive dick slips into your used pussy. $He's bigger than your Master was and is hitting all the right places.
-				<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
-			<<elseif $PC.births > 2>>
-				You've gotten rather loose after your multiple children, but you still find $his impressive dick almost uncomfortably large.
-			<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
-				You squeal with mixed pleasure and pain as $he pushes $his impressive dick into your pussy, stretching you past your limit. $He gives you a chance to get used to $his size before continuing.
-			<<else>>
-				You grit your teeth as $he slips $his impressive dick into your tight pussy, stretching you considerably. $He gives you a chance to get used to $his size before continuing.
-			<</if>>
-		<<else>>
-			You grit your teeth as you feel $his slip $his impressive dick into your tight rear, stretching you considerably. You bring a hand to your lower belly, feeling the bulge of $his cock deep within you. $He gives you a chance to get used to $his size before continuing, not that it will help much.
-			<<if $PC.dick == 1>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock teasing your prostate.<</if>>
-		<</if>>
-	<<elseif $activeSlave.dick == 6>>
-		<<if $PC.vagina == 1>>
-			<<if $PC.newVag == 1>>
-				You shudder with overwhelming pleasure as $his huge dick fills you completely.
-			<<elseif $PC.career == "escort">>
-				You moan with pleasure as $his huge dick completely fills your stretched pussy. You gently caress $his dick through the bulge in your middle.
-			<<elseif $PC.births >= 10>>
-				You moan with pleasure as $his huge dick completely fills your stretched pussy. You gently caress $his dick through the bulge in your middle.
-				<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
-			<<elseif $PC.career == "servant">>
-				You moan with pleasure as $his huge dick stretches your used pussy. $He's far bigger than your Master ever was.
-				<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
-			<<elseif $PC.births > 2>>
-				You may be rather loose after your multiple children, but $his huge dick is uncomfortably large.
-			<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
-				You grit your teeth as $he pushes $his huge dick into your pussy, trying to bear being so painfully overstretched. $He gives you a chance to get used to $his size before continuing, not that it will help much.
-			<<else>>
-				You cry out as $he forces $his huge dick into your too-tight pussy, nearly breaking you. $He considers pulling back out, but you pat the bulge in your lower belly and urge $him to continue. $He tries $his best to allow you to get comfortable, not that it will help much.
-			<</if>>
-		<<else>>
-			You cry out as $he forces $his huge dick into your too-tight rear, nearly breaking you. $He considers pulling back out, but you pat the bulge in your lower belly and urge $him to continue. $He tries $his best to allow you to get comfortable, not that it will help much.
-			<<if $PC.dick == 1>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock teasing your prostate.<</if>>
-		<</if>>
-	<<elseif $activeSlave.dick == 7>> /* needs to be written */
-		gigantic dick
-	<<elseif $activeSlave.dick == 8>>
-		titanic dick
-	<<elseif $activeSlave.dick == 9>>
-		absurd dick
-	<<elseif $activeSlave.dick == 10>>
-		inhuman dick
-	<<else>>
-		hypertrophied dick
-	<</if>>
-	$He gently fucks you<<if $activeSlave.balls > 8>>, $his oversized balls slapping your thighs with every thrust<</if>>, making sure you're enjoying $his penis as much as physically possible. You climax as $he cums inside eliciting a gasp from the horny $girl<<if $PC.dick == 1>>, as you spurt across the floor<</if>>. $He apologizes profusely for cumming in you, but after $he helps clean you up and back to your desk, all is forgiven. As you work, you can't help but steal glances at $his renewed erection. $He winks
-	<<if !canTalk($activeSlave)>>
-		and @@.mediumaquamarine;earnestly asks@@ for more when you get the chance.
-	<<else>>
-		and @@.mediumaquamarine;asks earnestly,@@ "Want <<s>>ome more, <<Master>>"
-	<</if>>
-	<<set $activeSlave.trust += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-	<<if canImpreg($PC, $activeSlave)>>
-		<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
-	<</if>>
-	<</replace>>
-<</link>> //This option will penetrate you//
-<</if>>
-
-<<case "resistant shower">>
-
-<<link "Enter the shower and quietly comfort $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He starts with surprise <<if canSee($activeSlave)>>as you enter the shower<<elseif canHear($activeSlave)>>as $he hears you enter the shower<<else>>as $he feels the water being disturbed by your body<</if>>, and then <<if canSee($activeSlave)>>looks at<<else>>turns to<</if>> you in shock as you sit down beside $him, ignoring the water soaking your clothes. $He does not resist when you draw $him gently into your lap. $He's stiff and uncomfortable as you hold $him gently, but $he eventually relaxes and allows $his head to rest <<if ($PC.boobs > 0)>>between your breasts<<else>>against your shoulder<</if>>. $He's utterly conflicted; the hateful person who $he is expected to fuck is tenderly comforting $him. $He finally seems to accept the animal comfort, whatever its source, and begins to @@.mediumaquamarine;trust@@ you to do more than just use $him.
-	<<set $activeSlave.trust += 4>>
-	<</replace>>
-<</link>>
-<br><<link "Talk through $his problems with $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You enter the bathroom and quietly wait until $he's done. When the water shuts off, $he stands up absently and spins so the shower's air dry function can blow the water off $him. (You can't help but notice
-	<<if ($activeSlave.weight > 30)>>
-		a lot of motion across $his
-		<<if $activeSlave.weight > 190>>
-			expansive
-		<<elseif $activeSlave.weight > 130>>
-			fat
-		<<elseif $activeSlave.weight > 95>>
-			thick
-		<<else>>
-			chubby
-		<</if>>
-		body when the air jets play across $him.)
-	<<elseif ($activeSlave.belly >= 5000)>>
-		how firm $his _belly belly is.)
-	<<elseif ($activeSlave.dick > 1)>>
-		$his soft cock flop around as one of the air jets strikes it.)
-	<<elseif ($activeSlave.boobs > 800)>>
-		<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
-			how $his fake tits refuse to jiggle under the air jets.)
-		<<else>>
-			how the air jets produce a lot of delectable jiggling when they strike $his boobs.)
-		<</if>>
-	<<elseif ($activeSlave.butt > 4)>>
-		how $he has to spread $his big buttcheeks to let an air jet dry between them.)
-	<<elseif ($activeSlave.labia > 0)>>
-		how one of the air jets creates some motion in $his generous labia.)
-	<<elseif ($activeSlave.muscles > 5)>>
-		how the air jets make $his taut abs look even more impressive.)
-	<<else>>
-		$his nipples <<if $activeSlave.nipples != "fuckable">>stiffen<<else>>engorge<</if>> under the air jets.)
-	<</if>>
-	As $he rotates, <<if canSee($activeSlave)>>$he notices you with a start and looks concerned, but you do your best to look reassuring and beckon<<else>>you gently call $his name. $He jumps at the sound of your voice and looks concerned, but you do your best to calm $him and gingerly coax<</if>> $him out of the shower.
-	<br><br>
-	You ask $him what's troubling $him, and the look of concern returns. Suspecting that $he's afraid of telling the truth, you gently encourage $him to be honest, and assure $him that you're simply taking an interest in $his well-being. $He still hesitates, but eventually sniffles a little and
-<<if !canTalk($activeSlave)>>
-	reluctantly gestures,
-<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>
-	lisps,
-<<else>>
-	admits,
-<</if>>
-<<if ($activeSlave.sexualFlaw == "hates oral") && ($activeSlave.counter.oral > 0)>>
-	"It'<<s>> nothing <<s>>pe<<c>>ial, <<Master>>. I ju<<s>>t h-hate getting fa<<c>>efucked."
-<<elseif ($activeSlave.sexualFlaw == "hates anal") && ($activeSlave.counter.anal > 0)>>
-	"It'<<s>> nothing <<s>>pe<<c>>ial, <<Master>>. I ju<<s>>t h-hate getting a<<ss>>raped."
-<<elseif ($activeSlave.sexualFlaw == "hates penetration") && ($activeSlave.counter.anal > 0)>>
-	"It'<<s>> nothing <<s>>pe<<c>>ial, <<Master>>. I ju<<s>>t h-hate getting fucked."
-<<elseif ($activeSlave.behavioralFlaw == "hates women")>>
-	"<<S>>orry, <<Master>>. I ju<<s>>t h-hate girl<<s>>. They're gro<<ss>>."
-<<elseif ($activeSlave.behavioralFlaw == "hates men")>>
-	"<<S>>orry, <<Master>>. I ju<<s>>t h-hate cock<<s>>. I don't want to <<s>>ee another one, ever again."
-<<elseif ($activeSlave.sexualFlaw == "idealistic") && ($activeSlave.counter.oral > 0 || $activeSlave.counter.anal > 0 || $activeSlave.counter.vaginal > 0 || $activeSlave.counter.mammary > 0)>>
-	"I feel like I'm going cra<<z>>y, <<Master>>. No one here <<s>>eem<<s>> to know that rape i<<s>> wrong. Th-they ju<<s>>t r-rape me."
-<<elseif ($activeSlave.sexualFlaw == "shamefast")>>
-	"I want to cover my<<s>>elf <<s>>o badly, <<Master>>. I'm <<s>>o embarra<<ss>>ed all the time. I'm <<s>>o tired of being embarra<<ss>>ed."
-<<elseif ($activeSlave.sexualFlaw == "repressed") && ($activeSlave.counter.oral > 0 || $activeSlave.counter.anal > 0 || $activeSlave.counter.vaginal > 0 || $activeSlave.counter.mammary > 0)>>
-	"I'm filthy, <<Master>>. I've been u<<s>>ed, and I can't ever be clean again. I'm a d-dirty, <<s>>inful whore."
-<<else>>
-	"<<S>>orry, <<Master>>. I wa<<s>> ju<<s>>t r-remembering, b-before — all thi<<s>>."
-<</if>>
-You tell $him kindly that you understand, and that $he'll be trained to address this. Then, you turn and go. $He's mystified; though $he's not overjoyed by the promise of correction, $he finds $himself @@.hotpink;less resistant@@ to following your plans.
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>>
-<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Use $him when $he gets out">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	Eventually $he finishes and switches the shower to dry. The airflow dries $him and $he steps out, but as $he does, $he's seized and flung over the countertop with a slap as $his naked, $activeSlave.skin <<if $activeSlave.belly >= 5000>> _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>skin<</if>> hits the surface.
-	<<if $activeSlave.vagina > -1 && !canDoVaginal($activeSlave)>>
-		With $his chastity belt protecting $his pussy, you ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass instead, drawing a pained sob.
-	<<elseif $activeSlave.vagina == -1>>
-		You ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass, drawing a pained sob.
-	<<else>>
-		You take $his silly cunt just long enough to force a few gasps out of $him before you pull out and ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass, drawing a pained sob.
-	<</if>>
-	As $he takes the pounding sullenly, <<if canSee($activeSlave)>>$he has a direct view of $his own eyes in the mirror, and clearly @@.gold;is disturbed by what $he sees.@@<<elseif canHear($activeSlave)>>$he can hear nothing but the sound of $his brutal rape, and clearly @@.gold;is disturbed by what $he hears.@@<<else>>$his blindness and deafness mean that one of the few things $he can feel is $his own rape, which @@.gold;disturbs $him to no end.@@<</if>>
-	<<set $activeSlave.trust -= 5>>
-	<<= BothVCheck()>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
-<</if>>
-
-<<case "resistant gelding">>
-
-<<link "Abuse $his ass">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on $his face, but you seize $his shoulder and spin $his back around without a word. You drag $him across the counter until $his face is over the sink, and turn it on. $He struggles in sheer incomprehension as you hold $his head over the filling basin with one hand and roughly grope $his butt with the other. When the sink is full, you tell $him to spread $his buttocks for you like a good butthole bitch. $He hesitates, so you push $his face under the surface of the water and hold it there until $he complies. You shove <<if $PC.dick == 0>>a dildo<<else>>your member<</if>> up $his anus so harshly that $he spasms and reflexively tries to get away, so you push $him under again until $he stops struggling. For the next ten minutes, $he gets shoved under water whenever $he offers the slightest resistance to anal rape. Soon, $his tears are pattering down into the sink. The next time you decide to buttfuck $him, $he's @@.gold;compliant from sheer terror.@@
-	<<set $activeSlave.trust -= 5>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>>
-<br><<link "Reassure $him of $his sexual worth">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on $his face, but is surprised by <<if canSee($activeSlave)>>your gentle expression<<else>>by how calm your steps seem<</if>>. $He's more shocked still when you give $him a reassuring hug and kiss $his unresisting mouth. $He's so unable to figure out what's happening that $he eventually gives up and relaxes into you. You gently turn $him around to face the mirror again, and working from the top of $his head, describe $his body in minute detail, explaining how pretty and valuable a sex slave $he is. When you're about to reach $his butt,
-	<<if canTalk($activeSlave)>>
-		$he uses gestures to beg you not to assrape $him.
-	<<else>>
-		<<if ($activeSlave.lips > 70)>>
-			$he begs meekly through $his massive dick-sucking lips,
-		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-			$he begs meekly through $his mouthful of piercings,
+		$He's filled with anxiety as you
+		<<if $activeSlave.belly < 1500>>
+			lay $him face-down on your desk,
 		<<else>>
-			$he begs meekly,
+			direct $him to lay on $his side on your desk<<if $activeSlave.belly >= 300000>> with $his _belly belly hanging over the edge<</if>>,
 		<</if>>
-		"<<Master>>, plea<<s>>e, plea<<s>>e don't a<<ss>>rape me. I don't think I can take it."
-	<</if>>
-	You patiently explain that taking <<if $PC.dick == 0>>anything you feel like inserting into $his backdoor<<else>>your cock<</if>> is $his duty, and begin to massage $his sphincter open with a single gentle finger. $He doesn't enjoy the ensuing assfuck, but $he doesn't truly hate it either and @@.hotpink;begins to hope@@ that being your butt slave won't be so painful after all.
-	<<set $activeSlave.devotion += 4>>
-	<<= SkillIncrease.Anal($activeSlave, 10)>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>>
-<br><<link "Comfort $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on $his face, but is surprised by <<if canSee($activeSlave)>>your gentle expression<<else>>by how calm your steps seem<</if>>. $He's more shocked still when you give $him a reassuring hug and kiss $his unresisting mouth. $He's so unable to figure out what's happening that $he eventually gives up and relaxes into you. You run your hands along $his body and kiss $his deeply for a long while before reassuring $him of $his value to you. $He looks confused, but goes about $his business with dry eyes. $He hates you a little less, but wonders whether $he can get away with retaining some independence.
+		but is surprised and reassured when $he's penetrated not by a <<if $PC.dick == 0>>strap-on<<else>>turgid<<if $PC.vagina == 1>> futa<</if>> cock<</if>> but by a single gentle finger coated with something healing and cool. The mixed analgesic and anti-inflammatory takes the sharpness off the sore feeling, and will help get $his butt back into fucking shape. @@.mediumaquamarine;$He has become more accepting of anal slavery,@@ and @@.green;$his asshole feels better.@@
+		<<if ($activeSlave.anus > 2)>>Your expert care has @@.orange;allowed $his loose asspussy to recover a little of its natural shape and size.@@<<set $activeSlave.anus -= 1>><</if>>
+		<<set $activeSlave.trust += 4, $activeSlave.minorInjury = 0>>
 	<</replace>>
 <</link>>
 
-<<case "rebellious arrogant">>
+<<case "shift doorframe">>
 
-<<link "Force $him out of bed and humiliate $him publicly">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You drag $him unceremoniously out of bed and straight down into the public areas of $arcologies[0].name. $His struggles and protests grow more frantic as $he <<if canSee($activeSlave)>>sees the first passersby beginning to stare at the little spectacle<<elseif canHear($activeSlave)>>begins to hear the various catcalls and other comments directed at $him<<else>>feels the outdoor air on $his body<</if>>. You force $him right there, thoroughly raping the struggling $girl in public. @@.gold;$He learns the consequences of refusal,@@ 
-	<<if $arcologies[0].FSDegradationist !== "unset">>
-		and @@.green;your citizens certainly enjoy the public spectacle.@@
-		<<run repX(100, "event", $activeSlave)>>
-	<<else>>
-		but @@.red;your reputation has been decreased by the unseemly commotion.@@
-		<<run repX(forceNeg(100), "event", $activeSlave)>>
-	<</if>>
-	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-		<<= BothVCheck()>>
-	<<elseif canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<elseif canDoAnal($activeSlave)>>
-		<<= AnalVCheck()>>
-	<<else>>
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<</if>>
-	<<set $activeSlave.trust -= 5>>
-	<</replace>>
-<</link>><<if (($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave)))>> //This option will take virginity//<</if>>
-<br><<link "Let $him stay in bed">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-		You shrug and walk out of the room and back to your office; you've got more important things to worry about than this drowsy brat. $activeSlave.slaveName, for $his part, gets out of bed not long after you leave, but is surprised at @@.orangered;how easily $he got away with this,@@ and is wondering @@.mediumorchid;what else $he could get away with.@@
-		<<set $activeSlave.trust += 10>>
-		<<set $activeSlave.devotion -= 10>>
-	<</replace>>
-<</link>>
-<<if $seePee == 1>>
-	<br><<link "Let $him stay in bed, but move it to a public restroom">>
+<<if canDoAnal($activeSlave)>>
+	<<link "Make butt love">>
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
-			You quickly pin the blanket to the mattress, securing $him in place. You direct that a urinal in one of $arcologies[0].name's public restrooms be unbolted and replaced by the mattress, slave and all. $He's been swearing and threatening all this time, but the calumny reaches a shrieking crescendo (though muffled by the blanket) when $he feels urine beginning to soak through the blanket. After an hour or so $he's begging to be let out, @@.gold;swearing $he'll improve $his conduct.@@
-			<<set $activeSlave.trust -= 5>>
-		<</replace>>
-	<</link>>
-<</if>>
-<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Let $him stay in bed, but move it to a whorehouse">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You quickly pin the blanket to the mattress, securing $him in place. You direct that $he be brought to an arcology salon that serves as a slave brothel. Once $he's there, you take a pair of scissors and cut a slit through the sheets. $He's been swearing and threatening all this time, but the calumny reaches a shrieking crescendo when $he feels a cock being shoved through the slit and between $his buttocks. Being muffled and held immobile for rape for hire @@.gold;terrifies $him@@ but @@.yellowgreen;earns some cash.@@
-	<<set $activeSlave.trust -= 5>>
-	<<if canDoVaginal($activeSlave)>>
-		<<set $activeSlave.counter.vaginal += 5, $vaginalTotal += 5, $activeSlave.counter.publicUse += 5>>
-		<<if canDoAnal($activeSlave)>>
-			<<set $activeSlave.counter.anal += 5, $analTotal += 5, $activeSlave.counter.publicUse += 5>>
-			<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
-				After the patrons have their way with $him, @@.lime;both $his pussy and asshole have been broken in.@@ $He @@.mediumorchid;hates@@ losing $his virginities in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
-				<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++, $activeSlave.anus++>>
-			<<elseif $activeSlave.vagina == 0>>
-				After the patrons have their way with $him, @@.lime;$he's certainly no longer a virgin.@@ $He @@.mediumorchid;hates@@ losing $his virginity in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
-				<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++>>
-			<<elseif $activeSlave.anus == 0>>
-				After the patrons have their way with $him, @@.lime;$he's certainly no longer an anal virgin.@@ $He @@.mediumorchid;hates@@ losing $his anal virginity in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
-				<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.anus++>>
+			There's a glint <<if canSee($activeSlave)>>in $his eyes as $he sees<<elseif canHear($activeSlave)>>on $his face as $he hears<<else>>on $his face as $he senses<</if>> you stand up from your desk;
+			<<if $activeSlave.height >= 185>>
+				$he's tall enough for standing anal, so as you approach $he just turns $his head back to face the door frame and cocks $his hips.
+			<<elseif $activeSlave.height < 160>>
+				$he's so short standing anal is a stretch, so as you approach $he goes up on tiptoe with one leg and runs the other up the wall, using it as support to hike $his ass as high as $he can manage.
+			<<else>>
+				$he's shorter than you, so as you approach $he goes up on tiptoe to bring $his ass to just the right height for standing anal.
 			<</if>>
-			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
-				<<= knockMeUp($activeSlave, 25, 2, -2, 1)>>
+			You don't penetrate $him right away, though; you
+			<<if $activeSlave.butt > 5>>
+				knead $his mass of assflesh,
+			<<elseif $activeSlave.butt > 2>>
+				heft a big buttock in each hand,
+			<<else>>
+				cup $his nice little buttocks,
 			<</if>>
-		<<else>>
-			<<if $activeSlave.vagina == 0>>
-				After the patrons have their way with $him, @@.lime;$he's certainly no longer a virgin.@@ $He @@.mediumorchid;hates@@ losing $his virginity in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
-				<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++>>
+			briefly tease $his
+			<<if $activeSlave.anus > 2>>
+				gaping asshole
+			<<elseif $activeSlave.anus > 1>>
+				ready asshole
+			<<else>>
+				inexperienced asshole
 			<</if>>
-			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
-				<<= knockMeUp($activeSlave, 25, 0, -2, 1)>>
+			with one finger, and then run your hands around $his
+			<<if $activeSlave.waist < -95>>
+				cartoonishly narrow
+			<<elseif $activeSlave.waist < -10>>
+				wasp
+			<<elseif $activeSlave.waist < 10>>
+				pretty
+			<<else>>
+				thick
 			<</if>>
-		<</if>>
-	<<elseif canDoAnal($activeSlave)>>
-		<<set $activeSlave.counter.anal += 10, $analTotal += 10, $activeSlave.counter.publicUse += 10>>
-		<<if $activeSlave.anus == 0>>
-			After the patrons have their way with $him, @@.lime;$he's certainly no longer an anal virgin.@@ $He @@.mediumorchid;hates@@ losing $his anal virginity in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
-			<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.anus++>>
-			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
-				<<= knockMeUp($activeSlave, 50, 1, -2, 1)>>
+			waist and up $his
+			<<if ($activeSlave.belly >= 100000)>>
+				_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly
+			<<elseif ($activeSlave.weight > 130)>>
+				fat gut
+			<<elseif ($activeSlave.belly >= 1500)>>
+				_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly
+			<<elseif ($activeSlave.muscles > 30)>>
+				ripped abs
+			<<elseif ($activeSlave.weight > 30)>>
+				fat belly
+			<<elseif ($activeSlave.weight > 10)>>
+				plush stomach
+			<<elseif ($activeSlave.weight >= -10)>>
+				taut stomach
+			<<else>>
+				skinny body
 			<</if>>
-		<</if>>
-	<</if>>
-	<<run cashX(100, "event", $activeSlave)>>
-
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
-<</if>>
-<<if $arcade > 0>>
-	<br><<link "Sentence $him to a month in the arcade">>
-		<<EventNameDelink $activeSlave>>
+			to rest
+			<<if $activeSlave.boobs > 2000>>
+				buried under $his enormous breasts.
+			<<elseif $activeSlave.boobs > 800>>
+				under $his heavy breasts.
+			<<elseif $activeSlave.boobs > 200>>
+				under the curve of $his breasts.
+			<<else>>
+				against $his trim chest.
+			<</if>>
+			Despite $his poise $he sighs at your impromptu massage, gasps at your
+			<<if $PC.belly >= 5000>>
+				pregnancy pushing
+			<<elseif $PC.boobs != 0>>
+				erect nipples brushing
+			<<elseif $PC.title == 0>>
+				flat chest pressing
+			<<else>>
+				muscular chest pressing
+			<</if>>
+			against $his back, and shudders when your <<if $PC.dick == 0>>strap-on<<else>>stiff prick<</if>> comes to rest between $his legs<<if $PC.vagina == 1>><<if $PC.dick == 1>>, the moist heat of your pussy very obvious at the base of your cock<</if>><</if>>. You bring $him to a fine point of arousal, enjoying $his body, pulling $his $activeSlave.skin chin around to kiss $his
+			<<if $activeSlave.lips > 60>>
+				bimbo
+			<<elseif $activeSlave.lips > 40>>
+				big
+			<<elseif $activeSlave.lips > 20>>
+				soft
+			<</if>>
+			lips. $He's so ready that when you finally penetrate $him, $he orgasms slightly after one thrust,
+			<<if ($activeSlave.dick > 6) && !canAchieveErection($activeSlave)>>
+				releasing a spurt of cum onto the floor
+			<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
+				releasing a spurt of cum against the door frame.
+			<<elseif $activeSlave.dick > 0>>
+				spurting cum against the door frame.
+			<<elseif $activeSlave.vagina == -1>>
+				grinding $his featureless crotch against the door frame.
+			<<else>>
+				leaving a little girlcum on the door frame.
+			<</if>>
+			$His
+			<<if $activeSlave.anus > 2>>
+				tired sphincter clenches down to almost virgin tightness
+			<<elseif $activeSlave.anus > 1>>
+				veteran sphincter tightens powerfully
+			<<else>>
+				tight sphincter tightens mercilessly
+			<</if>>
+			with the orgasm, eliciting a sob of overstimulation, which you draw into a series of sobs by slowly assfucking $him despite $his climax. You are gentle with $his butt, and continue teasing $his body, so that $his arousal builds again and $he manages to climax a second time when you do. You let $him out from between you and the door frame to wash, and return to work, but when $he emerges from a quick trip to the bathroom $he
+			<<if $activeSlave.belly >= 300000>>
+				leans against $his _belly stomach,
+			<<else>>
+				kneels on the couch,
+			<</if>>
+			spreads $his buttocks with one hand,
+			<<if !canTalk($activeSlave)>>
+				and @@.mediumaquamarine;earnestly asks@@ for more.
+			<<else>>
+				and @@.mediumaquamarine;asks earnestly,@@ "More plea<<s>>e, <<Master>>."
+			<</if>>
+			<<set $activeSlave.trust += 4>>
+			<<= AnalVCheck()>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave))>> //This option will take $his anal virginity//<</if>>
+	<br><<link "Pound that ass">>
+		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
-		$activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate.
-		<<if ($activeSlave.muscles > 30)>>
-			$His powerful form has to be sedated for immurement in the arcade.
-		<<elseif ($activeSlave.weight >= 190)>>
-			$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
-		<<elseif $activeSlave.belly >= 120000>>
-			$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
-		<<elseif ($activeSlave.weight >= -10)>>
-			$His desperate struggles make immuring $him in the arcade difficult.
-		<<elseif $activeSlave.belly >= 1500>>
-			$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
-		<<elseif $activeSlave.muscles < -15>>
-			$His weak body makes immuring $him in the arcade pathetically easy.
-		<<else>>
-			$His thin form makes immuring $him in the arcade pathetically easy.
-		<</if>>
-		After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
-		<<= assignJob($activeSlave, "be confined in the arcade")>>
-		<<set $activeSlave.sentence = 4>>
+			You choose your moment carefully, waiting until <<if canSee($activeSlave)>>$he turns $his gaze away from you for an instant. When $he looks back, your desk chair is empty<<else>>the ambient sound is loud enough for you to sneak up on $him<</if>>; for all $his sexual poise $he's surprised by the force of your
+			<<if $PC.belly >= 5000>>
+				pregnancy
+			<<elseif $PC.boobs != 0>>
+				tits
+			<<else>>
+				chest
+			<</if>>
+			crashing into $his
+			<<if $activeSlave.weight > 160>>
+				rippling
+			<<elseif $activeSlave.weight > 95>>
+				soft
+			<<elseif ($activeSlave.muscles > 95)>>
+				ripped
+			<<elseif ($activeSlave.muscles > 30)>>
+				muscular
+			<<elseif ($activeSlave.muscles > 5)>>
+				toned
+			<<else>>
+				soft
+			<</if>>
+			back, forcing $him<<if ($activeSlave.belly >= 1500)>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>> against the door frame.
+			<<if $activeSlave.height >= 185>>
+				$He's so tall $his butt is at the perfect height right where it is, so $he relaxes as much as possible, trapped against the door frame.
+			<<elseif $activeSlave.height < 160>>
+				$He's short enough that even tiptoes aren't enough, and you force $him up between you and the door frame, pinning $his little body helplessly in place.
+			<<else>>
+				$He squirms up on tiptoes to get $his butt to the right height, trapped between you and the door frame.
+			<</if>>
+			None too soon, for the next thing $he feels is the discomfort of standing anal penetration,
+			<<if $activeSlave.anus > 2>>
+				though it's nothing new to $him.
+			<<elseif $activeSlave.anus > 1>>
+				veteran asshole notwithstanding.
+			<<else>>
+				worsened by $his tight little sphincter.
+			<</if>>
+			You ravage $his ass hard from the first stroke, making it clear you're taking your pleasure, leaving $him nothing to do but cling to the door frame and try to ride it out. At first $he was squashed painfully against it, but $he manages to <<if ($activeSlave.belly >= 5000)>>shift $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>beside the frame and<</if>> cock $his hips out at enough of an angle that $he can get back to
+			<<if ($activeSlave.dick > 6) && !canAchieveErection($activeSlave)>>
+				rubbing $his oversized cock between it and $his leg
+			<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
+				humping $his pathetic limp dick against it
+			<<elseif $activeSlave.dick > 0>>
+				rubbing $his cock against it
+			<<elseif $activeSlave.vagina == -1>>
+				grind $his smooth groin against it instinctively, even though that's not very useful
+			<<else>>
+				humping $his pussy against it
+			<</if>>
+			for stimulation. $His asshole eventually spasms in orgasm, but it's spasmed so frequently during the rough sodomy that you don't realize the slut came to having $his asshole savaged until <<if $activeSlave.dick > 0>>you notice the ejaculate running down $his leg<<else>>an aftershock almost makes $his legs give out<</if>>. You climax in triumph yourself before pulling the bitch off the door frame and flinging $him towards the bathroom to clean $himself up. When $he emerges, $he comes over to sit quietly next to your desk, looking up at you @@.hotpink;obediently,@@ though you do notice $he sits to one side to take a bit of weight off $his poor rear.
+			<<set $activeSlave.devotion += 4>>
+			<<= AnalVCheck()>>
 		<</replace>>
-	<</link>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave))>> //This option will take $his anal virginity//<</if>>
+<</if>>
+<<if canDoVaginal($activeSlave)>>
+	<br><<link "Pound that pussy">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You choose your moment carefully, waiting until <<if canSee($activeSlave)>>$he turns $his gaze away from you for an instant. When $he looks back, your desk chair is empty<<else>>the ambient sound is loud enough for you to sneak up on $his<</if>>; for all $his sexual poise $he's surprised by the force of your
+			<<if $PC.belly >= 5000>>
+				pregnancy
+			<<elseif $PC.boobs != 0>>
+				tits
+			<<else>>
+				chest
+			<</if>>
+			crashing into $his
+			<<if $activeSlave.weight > 160>>
+				rippling
+			<<elseif $activeSlave.weight > 95>>
+				soft
+			<<elseif ($activeSlave.muscles > 95)>>
+				ripped
+			<<elseif ($activeSlave.muscles > 30)>>
+				muscular
+			<<elseif ($activeSlave.muscles > 5)>>
+				toned
+			<<else>>
+				soft
+			<</if>>
+			back, forcing $his<<if ($activeSlave.belly >= 1500)>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>> against the door frame.
+			<<if $activeSlave.height >= 185>>
+				$He's so tall $his butt is at the perfect height right where it is, so $he relaxes as much as possible, trapped against the door frame.
+			<<elseif $activeSlave.height < 160>>
+				$He's short enough that even tiptoes aren't enough, and you force $him up between you and the door frame, pinning $his little body helplessly in place.
+			<<else>>
+				$He squirms up on tiptoes to get $his hips to the right height, trapped between you and the door frame.
+			<</if>>
+			None too soon, for the next thing $he feels is the pleasure of standing vaginal penetration,
+			<<if $activeSlave.vagina > 2>>
+				though it's nothing new to $him.
+			<<elseif $activeSlave.vagina > 1>>
+				veteran pussy notwithstanding.
+			<<else>>
+				inserting slowly into $his still-tight pussy.
+			<</if>>
+			You pump $him hard from the first stroke, making it clear you're taking your pleasure, leaving $him nothing to do but cling to the door frame and try to ride it out. At first $he was squashed painfully against it, but $he manages to <<if ($activeSlave.belly >= 5000)>>shift $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>beside the frame and<</if>> cock $his hips out at enough of an angle that $he can get back to
+			<<if ($activeSlave.dick > 6) && !canAchieveErection($activeSlave)>>
+				rubbing $his oversized cock between it and $his leg.
+			<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
+				humping $his pathetic limp dick against it.
+			<<elseif $activeSlave.dick > 0>>
+				rubbing $his cock against it.
+			<<else>>
+				humping $his abdomen against it.
+			<</if>>
+			$He eventually shudders and spasms in orgasm, <<if $activeSlave.dick > 0>>the ejaculate running down $his leg<<else>>$his legs almost give out<</if>> making obvious $his pleasure in getting $his pussy fucked by you. You climax in triumph yourself before pulling the bitch off the door frame and flinging $him towards the bathroom to clean $himself up. When $he emerges, $he comes over to sit quietly next to your desk, looking up at you @@.hotpink;obediently.@@
+			<<set $activeSlave.devotion += 4>>
+			<<= VaginalVCheck()>>
+		<</replace>>
+	<</link>><<if ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
+<</if>>
+<<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>>
+	<br><<link "Invite $him 'in'">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			There's a glint <<if canSee($activeSlave)>>in $his eyes as $he sees<<elseif canHear($activeSlave)>>on $his face as $he hears<<else>>on $his face as $he senses<</if>> you stand up from your desk and saunter over;
+			<<if $activeSlave.height >= 185>>
+				$he's tall enough for standing <<if $PC.vagina == 1>>sex<<else>>anal<</if>>, so as you approach $he just readies $himself to fuck $his lover.
+			<<elseif $activeSlave.height < 160>>
+				$he's so short standing anal is a stretch, so once you approach you get down on your knees and greet the dick that will soon be in your <<if $PC.vagina == 1>>pussy<<else>>asshole<</if>>.
+			<<else>>
+				$he's shorter than you, so as you approach $he goes up on tiptoe to bring $his dick to just the right height for standing sex.
+			<</if>>
+			$He doesn't penetrate you right away, though; $he
+			<<if $PC.butt == 3>>
+				kneads your mass of assflesh
+			<<elseif $PC.butt == 2>>
+				hefts a huge buttock in each hand
+			<<elseif $PC.butt == 1>>
+				gives your big butt a slap
+			<<else>>
+				cups your nice little buttocks
+			<</if>>
+			before bending you over, bringing $his hands to your
+			<<if $PC.title == 0>>
+				wide hips
+			<<else>>
+				masculine hips
+			<</if>>
+			and mounting you.
+			<<if ($activeSlave.belly >= 100000)>>
+				You grunt as the weight of $his _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly comes to rest on your back<<if $activeSlave.belly >= 300000>>, the sheer gravity of it threatening to force you to the floor<</if>>.
+			<<elseif ($activeSlave.boobs >= 15000)>>
+				You grunt as you feel the weight of $his massive breasts slam into your back<<if $activeSlave.boobs >= 30000>>before falling to your sides<</if>>.
+			<<elseif ($activeSlave.weight > 160)>>
+				You grunt as you feel the weight of $his fat gut settle on your back.
+			<</if>>
+			<<if $activeSlave.dick == 1>>
+				<<if $PC.vagina == 1>>
+					<<if $PC.newVag == 1>>
+						$He slips $his tiny dick into your vagina. Fortunately your custom cunt is capable of making even the most embarrassing of dicks pleasurable; though you wish $he could fill you a little better.
+					<<elseif $PC.career == "escort">>
+						You sigh as $his tiny dick enters your stretched pussy. You're far too traveled to enjoy such a meager offering.
+					<<elseif $PC.births >= 10>>
+						You sigh as $his tiny dick enters your used pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore.
+						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. Suddenly, the size of $his cock doesn't seem to matter as much anymore.<</if>>
+					<<elseif $PC.career == "servant">>
+						You sigh as $his tiny dick enters your used pussy. $He stands no chance of competing with your old Master.
+						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. Suddenly, the size of $his cock doesn't seem to matter as much anymore.<</if>>
+					<<elseif $PC.births > 2>>
+						You can barely feel $him slip into your loose cunt, but $he is so small it's not like you're missing much.
+					<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
+						You feel $him slip into your vagina and abruptly stop; you sigh over how unsatisfyingly small $he is.
+					<<else>>
+						You squirm as $he slips into your tight pussy. While $his length may be disappointing, $he stands no chance of stretching you out.
+					<</if>>
+				<<else>>
+					You have to check to see if $he's even in your tight rear, only to find $he is already fully hilted. You sigh as $he thrusts into you; no prostate stimulation today.
+				<</if>>
+			<<elseif $activeSlave.dick == 2>>
+				<<if $PC.vagina == 1>>
+					<<if $PC.newVag == 1>>
+						$He slips $his cute dick into your vagina. Fortunately your custom cunt is capable of making $his embarrassing offering pleasurable; though you wish $he could fill you a little better.
+					<<elseif $PC.career == "escort">>
+						You sigh as $his cute dick enters your stretched pussy. You're far too traveled to enjoy such a meager offering, no matter how pathetically adorable it is.
+					<<elseif $PC.births >= 10>>
+						You sigh as $his cute dick enters your abused pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore.
+						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. Hopefully such a cute penis puts a cute baby in you.<</if>>
+					<<elseif $PC.career == "servant">>
+						You sigh as $his cute dick enters your used pussy. $He stands no chance of competing with your old Master.
+						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. You doubt $his children will stand up to his either.<</if>>
+					<<elseif $PC.births > 2>>
+						You can barely feel $him slip into your loose cunt, but $he is so small it's not like you're missing much.
+					<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
+						You feel $him slip into your vagina and sigh over how unsatisfyingly small $he is.
+					<<else>>
+						You squirm as $he slips into your tight pussy. $He should be thankful you're so tight.
+					<</if>>
+				<<else>>
+					You sigh as you feel $him slip $his cute dick into your tight rear; no prostate stimulation today.
+				<</if>>
+			<<elseif $activeSlave.dick == 3>>
+				<<if $PC.vagina == 1>>
+					<<if $PC.newVag == 1>>
+						You shudder as $he slips $his dick into your vagina.
+					<<elseif $PC.career == "escort">>
+						You sigh as $his dick slips into your stretched pussy. You're far too traveled for even average cocks these days.
+					<<elseif $PC.births >= 10>>
+						You sigh as $his dick enters your abused pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore.
+						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
+					<<elseif $PC.career == "servant">>
+						You sigh as $his dick enters your used pussy. $He stands no chance of competing with your old Master.
+						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
+					<<elseif $PC.births > 2>>
+						You've gotten rather loose after your multiple children, so $his average cock is somewhat underwhelming.
+					<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
+						You shiver with pleasure as $he slips $his dick into your pussy.
+					<<else>>
+						You squirm as $he slips $his dick into your tight pussy, the sensation making you quiver with pleasure.
+					<</if>>
+				<<else>>
+					You squirm as you feel $him slip $his dick into your tight rear, the sensation making you quiver with pleasure.
+					<<if $PC.dick == 1>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock teasing your prostate.<</if>>
+				<</if>>
+			<<elseif $activeSlave.dick == 4>>
+				<<if $PC.vagina == 1>>
+					<<if $PC.newVag == 1>>
+						You shudder as $he slips $his big dick into your vagina.
+					<<elseif $PC.career == "escort">>
+						You shudder as $his big dick slips into your stretched pussy. $He could use to be a little wider, but at least you can feel $him.
+					<<elseif $PC.births >= 10>>
+						You shudder as $his big dick slips into your stretched pussy. $He could use to be a little wider, but at least you can feel $him after the havoc wreaked by your children.
+						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
+					<<elseif $PC.career == "servant">>
+						You shudder as $his big dick slips into your used pussy. $He's just the right size for you to remember your Master.
+						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
+					<<elseif $PC.births > 2>>
+						You've gotten rather loose after your multiple children, so $his big cock is a welcome feeling.
+					<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
+						You moan with pleasure as $he slips $his big dick into your pussy, stretching you to your limit.
+					<<else>>
+						You squirm as $he slips $his big dick into your tight pussy, the sensation making you quiver with pleasure and a little pain. $He gives you a chance to get used to $his size before continuing.
+					<</if>>
+				<<else>>
+					You squirm as you feel $him slip $his big dick into your tight rear, the sensation making you quiver with pleasure and a little pain. $He gives you a chance to get used to $his size before continuing.
+					<<if $PC.dick == 1>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock teasing your prostate.<</if>>
+				<</if>>
+			<<elseif $activeSlave.dick == 5>>
+				<<if $PC.vagina == 1>>
+					<<if $PC.newVag == 1>>
+						You shudder with delight as $his impressive dick stretches you perfectly.
+					<<elseif $PC.career == "escort">>
+						You quiver with pleasure as $his impressive dick slips into your stretched pussy. It takes a lot to satisfy you and $he is not disappointing.
+					<<elseif $PC.births >= 10>>
+						You quiver with pleasure as $his impressive dick slips into your stretched pussy. Even given the state of your pussy, $he fills you completely and perfectly.
+						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
+					<<elseif $PC.career == "servant">>
+						You quiver with pleasure as $his impressive dick slips into your used pussy. $He's bigger than your Master was and is hitting all the right places.
+						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
+					<<elseif $PC.births > 2>>
+						You've gotten rather loose after your multiple children, but you still find $his impressive dick almost uncomfortably large.
+					<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
+						You squeal with mixed pleasure and pain as $he pushes $his impressive dick into your pussy, stretching you past your limit. $He gives you a chance to get used to $his size before continuing.
+					<<else>>
+						You grit your teeth as $he slips $his impressive dick into your tight pussy, stretching you considerably. $He gives you a chance to get used to $his size before continuing.
+					<</if>>
+				<<else>>
+					You grit your teeth as you feel $his slip $his impressive dick into your tight rear, stretching you considerably. You bring a hand to your lower belly, feeling the bulge of $his cock deep within you. $He gives you a chance to get used to $his size before continuing, not that it will help much.
+					<<if $PC.dick == 1>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock teasing your prostate.<</if>>
+				<</if>>
+			<<elseif $activeSlave.dick == 6>>
+				<<if $PC.vagina == 1>>
+					<<if $PC.newVag == 1>>
+						You shudder with overwhelming pleasure as $his huge dick fills you completely.
+					<<elseif $PC.career == "escort">>
+						You moan with pleasure as $his huge dick completely fills your stretched pussy. You gently caress $his dick through the bulge in your middle.
+					<<elseif $PC.births >= 10>>
+						You moan with pleasure as $his huge dick completely fills your stretched pussy. You gently caress $his dick through the bulge in your middle.
+						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
+					<<elseif $PC.career == "servant">>
+						You moan with pleasure as $his huge dick stretches your used pussy. $He's far bigger than your Master ever was.
+						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
+					<<elseif $PC.births > 2>>
+						You may be rather loose after your multiple children, but $his huge dick is uncomfortably large.
+					<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
+						You grit your teeth as $he pushes $his huge dick into your pussy, trying to bear being so painfully overstretched. $He gives you a chance to get used to $his size before continuing, not that it will help much.
+					<<else>>
+						You cry out as $he forces $his huge dick into your too-tight pussy, nearly breaking you. $He considers pulling back out, but you pat the bulge in your lower belly and urge $him to continue. $He tries $his best to allow you to get comfortable, not that it will help much.
+					<</if>>
+				<<else>>
+					You cry out as $he forces $his huge dick into your too-tight rear, nearly breaking you. $He considers pulling back out, but you pat the bulge in your lower belly and urge $him to continue. $He tries $his best to allow you to get comfortable, not that it will help much.
+					<<if $PC.dick == 1>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock teasing your prostate.<</if>>
+				<</if>>
+			<<elseif $activeSlave.dick == 7>> /* needs to be written */
+				gigantic dick
+			<<elseif $activeSlave.dick == 8>>
+				titanic dick
+			<<elseif $activeSlave.dick == 9>>
+				absurd dick
+			<<elseif $activeSlave.dick == 10>>
+				inhuman dick
+			<<else>>
+				hypertrophied dick
+			<</if>>
+			$He gently fucks you<<if $activeSlave.balls > 8>>, $his oversized balls slapping your thighs with every thrust<</if>>, making sure you're enjoying $his penis as much as physically possible. You climax as $he cums inside eliciting a gasp from the horny $girl<<if $PC.dick == 1>>, as you spurt across the floor<</if>>. $He apologizes profusely for cumming in you, but after $he helps clean you up and back to your desk, all is forgiven. As you work, you can't help but steal glances at $his renewed erection. $He winks
+			<<if !canTalk($activeSlave)>>
+				and @@.mediumaquamarine;earnestly asks@@ for more when you get the chance.
+			<<else>>
+				and @@.mediumaquamarine;asks earnestly,@@ "Want <<s>>ome more, <<Master>>"
+			<</if>>
+			<<set $activeSlave.trust += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+			<<if canImpreg($PC, $activeSlave)>>
+				<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
+			<</if>>
+		<</replace>>
+	<</link>> //This option will penetrate you//
 <</if>>
 
-<<case "escapee">>
+<<case "resistant shower">>
 
-<<link "Just confine would-be escapee to prevent future attempts">>
+<<link "Enter the shower and quietly comfort $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You order $activeSlave.slaveName confined until further notice. $activeSlave.slaveName is @@.hotpink;a little crushed@@ by $his failure to escape. However, every single one of your other slaves not already obedient to you is slightly @@.mediumaquamarine;encouraged in $his trust that you won't hurt $him@@ by this moderate punishment of an escape attempt.
-	<<set $activeSlave.devotion += 4>>
-	<<= assignJob($activeSlave, "stay confined")>>
-	<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust += 4; } })>>
+		$He starts with surprise <<if canSee($activeSlave)>>as you enter the shower<<elseif canHear($activeSlave)>>as $he hears you enter the shower<<else>>as $he feels the water being disturbed by your body<</if>>, and then <<if canSee($activeSlave)>>looks at<<else>>turns to<</if>> you in shock as you sit down beside $him, ignoring the water soaking your clothes. $He does not resist when you draw $him gently into your lap. $He's stiff and uncomfortable as you hold $him gently, but $he eventually relaxes and allows $his head to rest <<if ($PC.boobs > 0)>>between your breasts<<else>>against your shoulder<</if>>. $He's utterly conflicted; the hateful person who $he is expected to fuck is tenderly comforting $him. $He finally seems to accept the animal comfort, whatever its source, and begins to @@.mediumaquamarine;trust@@ you to do more than just use $him.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
-<br><<link "Flog the would-be escapee">>
+<br><<link "Talk through $his problems with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Lesser whippings are usually performed by binding a slave's hands and then securing them to the ceiling so that $he will dance titillatingly when struck. This is not such a beating. You tie $activeSlave.slaveName to a wall by $his wrists and ankles and flog $him with workmanlike thoroughness<<if $activeSlave.pregKnown == 1>>, making sure to avoid accidentally ending $his pregnancy<</if>>. $He passes from angry struggles to agonized sobbing and finally to bloody, exhausted weeping before you untie $his now-limp form and apply first aid. $activeSlave.slaveName's rebelliousness is @@.gold;dulled by the experience,@@ and $his @@.red;health is damaged.@@ Furthermore, every single one of your other slaves not already obedient to you is @@.gold;frightened@@ by the example set.
-	<<set $activeSlave.trust -= 5, $activeSlave.health -= 40>>
-	<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 5; } })>>
+		You enter the bathroom and quietly wait until $he's done. When the water shuts off, $he stands up absently and spins so the shower's air dry function can blow the water off $him. (You can't help but notice
+		<<if ($activeSlave.weight > 30)>>
+			a lot of motion across $his
+			<<if $activeSlave.weight > 190>>
+				expansive
+			<<elseif $activeSlave.weight > 130>>
+				fat
+			<<elseif $activeSlave.weight > 95>>
+				thick
+			<<else>>
+				chubby
+			<</if>>
+			body when the air jets play across $him.)
+		<<elseif ($activeSlave.belly >= 5000)>>
+			how firm $his _belly belly is.)
+		<<elseif ($activeSlave.dick > 1)>>
+			$his soft cock flop around as one of the air jets strikes it.)
+		<<elseif ($activeSlave.boobs > 800)>>
+			<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
+				how $his fake tits refuse to jiggle under the air jets.)
+			<<else>>
+				how the air jets produce a lot of delectable jiggling when they strike $his boobs.)
+			<</if>>
+		<<elseif ($activeSlave.butt > 4)>>
+			how $he has to spread $his big buttcheeks to let an air jet dry between them.)
+		<<elseif ($activeSlave.labia > 0)>>
+			how one of the air jets creates some motion in $his generous labia.)
+		<<elseif ($activeSlave.muscles > 5)>>
+			how the air jets make $his taut abs look even more impressive.)
+		<<else>>
+			$his nipples <<if $activeSlave.nipples != "fuckable">>stiffen<<else>>engorge<</if>> under the air jets.)
+		<</if>>
+		As $he rotates, <<if canSee($activeSlave)>>$he notices you with a start and looks concerned, but you do your best to look reassuring and beckon<<else>>you gently call $his name. $He jumps at the sound of your voice and looks concerned, but you do your best to calm $him and gingerly coax<</if>> $him out of the shower.
+		<br><br>
+		You ask $him what's troubling $him, and the look of concern returns. Suspecting that $he's afraid of telling the truth, you gently encourage $him to be honest, and assure $him that you're simply taking an interest in $his well-being. $He still hesitates, but eventually sniffles a little and
+		<<if !canTalk($activeSlave)>>
+			reluctantly gestures,
+		<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>
+			lisps,
+		<<else>>
+			admits,
+		<</if>>
+		<<if ($activeSlave.sexualFlaw == "hates oral") && ($activeSlave.counter.oral > 0)>>
+			"It'<<s>> nothing <<s>>pe<<c>>ial, <<Master>>. I ju<<s>>t h-hate getting fa<<c>>efucked."
+		<<elseif ($activeSlave.sexualFlaw == "hates anal") && ($activeSlave.counter.anal > 0)>>
+			"It'<<s>> nothing <<s>>pe<<c>>ial, <<Master>>. I ju<<s>>t h-hate getting a<<ss>>raped."
+		<<elseif ($activeSlave.sexualFlaw == "hates penetration") && ($activeSlave.counter.anal > 0)>>
+			"It'<<s>> nothing <<s>>pe<<c>>ial, <<Master>>. I ju<<s>>t h-hate getting fucked."
+		<<elseif ($activeSlave.behavioralFlaw == "hates women")>>
+			"<<S>>orry, <<Master>>. I ju<<s>>t h-hate girl<<s>>. They're gro<<ss>>."
+		<<elseif ($activeSlave.behavioralFlaw == "hates men")>>
+			"<<S>>orry, <<Master>>. I ju<<s>>t h-hate cock<<s>>. I don't want to <<s>>ee another one, ever again."
+		<<elseif ($activeSlave.sexualFlaw == "idealistic") && ($activeSlave.counter.oral > 0 || $activeSlave.counter.anal > 0 || $activeSlave.counter.vaginal > 0 || $activeSlave.counter.mammary > 0)>>
+			"I feel like I'm going cra<<z>>y, <<Master>>. No one here <<s>>eem<<s>> to know that rape i<<s>> wrong. Th-they ju<<s>>t r-rape me."
+		<<elseif ($activeSlave.sexualFlaw == "shamefast")>>
+			"I want to cover my<<s>>elf <<s>>o badly, <<Master>>. I'm <<s>>o embarra<<ss>>ed all the time. I'm <<s>>o tired of being embarra<<ss>>ed."
+		<<elseif ($activeSlave.sexualFlaw == "repressed") && ($activeSlave.counter.oral > 0 || $activeSlave.counter.anal > 0 || $activeSlave.counter.vaginal > 0 || $activeSlave.counter.mammary > 0)>>
+			"I'm filthy, <<Master>>. I've been u<<s>>ed, and I can't ever be clean again. I'm a d-dirty, <<s>>inful whore."
+		<<else>>
+			"<<S>>orry, <<Master>>. I wa<<s>> ju<<s>>t r-remembering, b-before — all thi<<s>>."
+		<</if>>
+		You tell $him kindly that you understand, and that $he'll be trained to address this. Then, you turn and go. $He's mystified; though $he's not overjoyed by the promise of correction, $he finds $himself @@.hotpink;less resistant@@ to following your plans.
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
-<br><<link "Clip the would-be escapee's tendons">>
+<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
+	<br><<link "Use $him when $he gets out">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			Eventually $he finishes and switches the shower to dry. The airflow dries $him and $he steps out, but as $he does, $he's seized and flung over the countertop with a slap as $his naked, $activeSlave.skin <<if $activeSlave.belly >= 5000>> _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>skin<</if>> hits the surface.
+			<<if $activeSlave.vagina > -1 && !canDoVaginal($activeSlave)>>
+				With $his chastity belt protecting $his pussy, you ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass instead, drawing a pained sob.
+			<<elseif $activeSlave.vagina == -1>>
+				You ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass, drawing a pained sob.
+			<<else>>
+				You take $his silly cunt just long enough to force a few gasps out of $him before you pull out and ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass, drawing a pained sob.
+			<</if>>
+			As $he takes the pounding sullenly, <<if canSee($activeSlave)>>$he has a direct view of $his own eyes in the mirror, and clearly @@.gold;is disturbed by what $he sees.@@<<elseif canHear($activeSlave)>>$he can hear nothing but the sound of $his brutal rape, and clearly @@.gold;is disturbed by what $he hears.@@<<else>>$his blindness and deafness mean that one of the few things $he can feel is $his own rape, which @@.gold;disturbs $him to no end.@@<</if>>
+			<<set $activeSlave.trust -= 5>>
+			<<= BothVCheck()>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
+<</if>>
+
+<<case "resistant gelding">>
+
+<<link "Abuse $his ass">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;saddened@@ and @@.gold;frightened@@ by this punishment, and $his @@.red;health is damaged@@ by the surgery. Every single one of your other slaves with any resistance left in them is @@.gold;sensibly restrained@@ from trying such rash acts.
-	<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5, $activeSlave.health -= 10, $activeSlave.heels = 1>>
-	<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 5; } })>>
+		$He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on $his face, but you seize $his shoulder and spin $his back around without a word. You drag $him across the counter until $his face is over the sink, and turn it on. $He struggles in sheer incomprehension as you hold $his head over the filling basin with one hand and roughly grope $his butt with the other. When the sink is full, you tell $him to spread $his buttocks for you like a good butthole bitch. $He hesitates, so you push $his face under the surface of the water and hold it there until $he complies. You shove <<if $PC.dick == 0>>a dildo<<else>>your member<</if>> up $his anus so harshly that $he spasms and reflexively tries to get away, so you push $him under again until $he stops struggling. For the next ten minutes, $he gets shoved under water whenever $he offers the slightest resistance to anal rape. Soon, $his tears are pattering down into the sink. The next time you decide to buttfuck $him, $he's @@.gold;compliant from sheer terror.@@
+		<<set $activeSlave.trust -= 5>>
+		<<= AnalVCheck()>>
 	<</replace>>
 <</link>>
-<<if $activeSlave.indentureRestrictions < 1>>
-<br><<link "Amputate the would-be escapee's limbs">>
+<br><<link "Reassure $him of $his sexual worth">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and $his @@.red;health is damaged@@ by the major surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set.
-	<<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.health -= 40, $activeSlave.amp = 1, $activeSlave.shoes = "none", $activeSlave.diet = "healthy", $activeSlave.heels = 0>>
-	<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 10; } })>>
+		$He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on $his face, but is surprised by <<if canSee($activeSlave)>>your gentle expression<<else>>by how calm your steps seem<</if>>. $He's more shocked still when you give $him a reassuring hug and kiss $his unresisting mouth. $He's so unable to figure out what's happening that $he eventually gives up and relaxes into you. You gently turn $him around to face the mirror again, and working from the top of $his head, describe $his body in minute detail, explaining how pretty and valuable a sex slave $he is. When you're about to reach $his butt,
+		<<if canTalk($activeSlave)>>
+			$he uses gestures to beg you not to assrape $him.
+		<<else>>
+			<<if ($activeSlave.lips > 70)>>
+				$he begs meekly through $his massive dick-sucking lips,
+			<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
+				$he begs meekly through $his mouthful of piercings,
+			<<else>>
+				$he begs meekly,
+			<</if>>
+			"<<Master>>, plea<<s>>e, plea<<s>>e don't a<<ss>>rape me. I don't think I can take it."
+		<</if>>
+		You patiently explain that taking <<if $PC.dick == 0>>anything you feel like inserting into $his backdoor<<else>>your cock<</if>> is $his duty, and begin to massage $his sphincter open with a single gentle finger. $He doesn't enjoy the ensuing assfuck, but $he doesn't truly hate it either and @@.hotpink;begins to hope@@ that being your butt slave won't be so painful after all.
+		<<set $activeSlave.devotion += 4>>
+		<<= SkillIncrease.Anal($activeSlave, 10)>>
+		<<= AnalVCheck()>>
 	<</replace>>
 <</link>>
-<<if $activeSlave.eyes != -2>>
-<br><<link "Blind the would-be escapee">>
+<br><<link "Comfort $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, weeping form through the penthouse to the surgery. You make sure to point out all the things $he'll never get to see again. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and $his @@.red;health is slightly damaged@@ by the surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set.
-	<<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.health -= 20, $activeSlave.eyes = -2, $activeSlave.eyeColor = "dulled " + $activeSlave.eyeColor($activeSlave)>>
-	<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 10; } })>>
+		$He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on $his face, but is surprised by <<if canSee($activeSlave)>>your gentle expression<<else>>by how calm your steps seem<</if>>. $He's more shocked still when you give $him a reassuring hug and kiss $his unresisting mouth. $He's so unable to figure out what's happening that $he eventually gives up and relaxes into you. You run your hands along $his body and kiss $his deeply for a long while before reassuring $him of $his value to you. $He looks confused, but goes about $his business with dry eyes. $He hates you a little less, but wonders whether $he can get away with retaining some independence.
 	<</replace>>
 <</link>>
-<</if>>
-<<if canTalk($activeSlave)>>
-<br><<link "Mute the would-be escapee">>
+
+<<case "rebellious arrogant">>
+
+<<link "Force $him out of bed and humiliate $him publicly">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You drag $him unceremoniously out of bed and straight down into the public areas of $arcologies[0].name. $His struggles and protests grow more frantic as $he <<if canSee($activeSlave)>>sees the first passersby beginning to stare at the little spectacle<<elseif canHear($activeSlave)>>begins to hear the various catcalls and other comments directed at $him<<else>>feels the outdoor air on $his body<</if>>. You force $him right there, thoroughly raping the struggling $girl in public. @@.gold;$He learns the consequences of refusal,@@
+		<<if $arcologies[0].FSDegradationist !== "unset">>
+			and @@.green;your citizens certainly enjoy the public spectacle.@@
+			<<run repX(100, "event", $activeSlave)>>
+		<<else>>
+			but @@.red;your reputation has been decreased by the unseemly commotion.@@
+			<<run repX(forceNeg(100), "event", $activeSlave)>>
+		<</if>>
+		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+			<<= BothVCheck()>>
+		<<elseif canDoVaginal($activeSlave)>>
+			<<= VaginalVCheck()>>
+		<<elseif canDoAnal($activeSlave)>>
+			<<= AnalVCheck()>>
+		<<else>>
+			<<set $activeSlave.counter.oral++, $oralTotal++>>
+		<</if>>
+		<<set $activeSlave.trust -= 5>>
+	<</replace>>
+<</link>><<if (($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave)))>> //This option will take $his virginity//<</if>>
+<br><<link "Let $him stay in bed">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, protesting form through the penthouse to the surgery. $He is allowed one last chance to verbally resist you, plead with you, and finally to beg with you, all in vain. $activeSlave.slaveName is @@.mediumorchid;filled with hatred@@ and @@.gold;terror@@ by this harsh punishment, and $his @@.red;health is slightly damaged@@ by the surgery. However, every single one of your other slaves not already obedient to you is @@.hotpink;terrified@@ by the example set.
-	<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 25, $activeSlave.health -= 10, $activeSlave.voice = 0>>
-	<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 5; } })>>
+		You shrug and walk out of the room and back to your office; you've got more important things to worry about than some drowsy brat. $activeSlave.slaveName, for $his part, gets out of bed not long after you leave, but is surprised at @@.orangered;how easily $he got away with this,@@ and is wondering @@.mediumorchid;what else $he could get away with.@@
+		<<set $activeSlave.trust += 10>>
+		<<set $activeSlave.devotion -= 10>>
 	<</replace>>
 <</link>>
+<<if $seePee == 1>>
+	<br><<link "Let $him stay in bed, but move it to a public restroom">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You quickly pin the blanket to the mattress, securing $him in place. You direct that a urinal in one of $arcologies[0].name's public restrooms be unbolted and replaced by the mattress, slave and all. $He's been swearing and threatening all this time, but the calumny reaches a shrieking crescendo (though muffled by the blanket) when $he feels urine beginning to soak through the blanket. After an hour or so $he's begging to be let out, @@.gold;swearing $he'll improve $his conduct.@@
+			<<set $activeSlave.trust -= 5>>
+		<</replace>>
+	<</link>>
+<</if>>
+<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
+	<br><<link "Let $him stay in bed, but move it to a whorehouse">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You quickly pin the blanket to the mattress, securing $him in place. You direct that $he be brought to an arcology salon that serves as a slave brothel. Once $he's there, you take a pair of scissors and cut a slit through the sheets. $He's been swearing and threatening all this time, but the calumny reaches a shrieking crescendo when $he feels a cock being shoved through the slit and between $his buttocks. Being muffled and held immobile for rape for hire @@.gold;terrifies $him@@ but @@.yellowgreen;earns some cash.@@
+			<<set $activeSlave.trust -= 5>>
+			<<if canDoVaginal($activeSlave)>>
+				<<set $activeSlave.counter.vaginal += 5, $vaginalTotal += 5, $activeSlave.counter.publicUse += 5>>
+				<<if canDoAnal($activeSlave)>>
+					<<set $activeSlave.counter.anal += 5, $analTotal += 5, $activeSlave.counter.publicUse += 5>>
+					<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
+						After the patrons have their way with $him, @@.lime;both $his pussy and asshole have been broken in.@@ $He @@.mediumorchid;hates@@ losing $his virginities in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
+						<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++, $activeSlave.anus++>>
+					<<elseif $activeSlave.vagina == 0>>
+						After the patrons have their way with $him, @@.lime;$he's certainly no longer a virgin.@@ $He @@.mediumorchid;hates@@ losing $his virginity in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
+						<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++>>
+					<<elseif $activeSlave.anus == 0>>
+						After the patrons have their way with $him, @@.lime;$he's certainly no longer an anal virgin.@@ $He @@.mediumorchid;hates@@ losing $his anal virginity in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
+						<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.anus++>>
+					<</if>>
+					<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
+						<<= knockMeUp($activeSlave, 25, 2, -2, 1)>>
+					<</if>>
+				<<else>>
+					<<if $activeSlave.vagina == 0>>
+						After the patrons have their way with $him, @@.lime;$he's certainly no longer a virgin.@@ $He @@.mediumorchid;hates@@ losing $his virginity in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
+						<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++>>
+					<</if>>
+					<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
+						<<= knockMeUp($activeSlave, 25, 0, -2, 1)>>
+					<</if>>
+				<</if>>
+			<<elseif canDoAnal($activeSlave)>>
+				<<set $activeSlave.counter.anal += 10, $analTotal += 10, $activeSlave.counter.publicUse += 10>>
+				<<if $activeSlave.anus == 0>>
+					After the patrons have their way with $him, @@.lime;$he's certainly no longer an anal virgin.@@ $He @@.mediumorchid;hates@@ losing $his anal virginity in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
+					<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.anus++>>
+					<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
+						<<= knockMeUp($activeSlave, 50, 1, -2, 1)>>
+					<</if>>
+				<</if>>
+			<</if>>
+			<<run cashX(100, "event", $activeSlave)>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
+<<if $arcade > 0>>
+	<br><<link "Sentence $him to a month in the arcade">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate.
+			<<if ($activeSlave.muscles > 30)>>
+				$His powerful form has to be sedated for immurement in the arcade.
+			<<elseif ($activeSlave.weight >= 190)>>
+				$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
+			<<elseif $activeSlave.belly >= 120000>>
+				$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
+			<<elseif ($activeSlave.weight >= -10)>>
+				$His desperate struggles make immuring $him in the arcade difficult.
+			<<elseif $activeSlave.belly >= 1500>>
+				$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
+			<<elseif $activeSlave.muscles < -15>>
+				$His weak body makes immuring $him in the arcade pathetically easy.
+			<<else>>
+				$His thin form makes immuring $him in the arcade pathetically easy.
+			<</if>>
+			After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
+			<<= assignJob($activeSlave, "be confined in the arcade")>>
+			<<set $activeSlave.sentence = 4>>
+		<</replace>>
+	<</link>>
 <</if>>
 
-<<case "not my name">>
+<<case "escapee">>
 
-<<link "Extirpate this foolishness with pain">>
+<<link "Do nothing">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You seize $him and begin to bind $him for appropriate punishment. $activeSlave.slaveName does not resist you physically at first. $He finds $himself tied bent over your desk, face-down, with $his arms locked behind $him<<if $activeSlave.belly >= 1500>> and $his _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly hanging off the edge<</if>>. $He struggles a little when you insert your cock into $his <<if ($activeSlave.anus == 1)>>poor little anus<<elseif ($activeSlave.anus == 2)>>whore's butt<<else>>gaping rear end<</if>>, but $his real agony begins when you place $his arms in an inescapable joint lock and apply a little pressure. It doesn't damage $him, but it easily causes more pain than $he is capable of resisting. $He does a little dance within $his bindings, squealing and involuntarily clenching you nicely with $his anal ring. You require $him to recite the litany "My name i<<s>> <<print _slavename>>!", coaching $him with alternate orders and agonizing correction until $he's screaming every word at the top of $his lungs in an endless wail. $His screeching rises and falls as $he feels the burning sensation of your merciless use of $his ass, but $he works $his lungs hard to avoid as much pain as $he can. When you've climaxed and cast off $his bindings, you make $him repeat $his name one last time as $he stiffly rubs $his abused arms and anus. $He does, @@.gold;without hesitation.@@
-	<<set $activeSlave.trust -= 5>>
-	<<= AnalVCheck()>>
+		Considering how easily this attempt was thwarted, you don't see much of a point in wasting your valuable time on punishing $activeSlave.slaveName in the hopes that $he'll learn $his lesson. Your send $him back to $his assigned duties, warning $him that you may not be so lenient in the future. $activeSlave.slaveName proclaims $his obedience, but, privately, it's clear that $he views your decision as @.mediumorchid;an act of weakness@@ rather than kindness. In addition, every single one of your other slaves not already obedient to you is @@.orangered;encouraged in their trust that you won't hurt them@@ by this minuscule punishment of an escape attempt.
+		<<set $activeSlave.devotion -= 10, $activeSlave.trust += 2>>
+		<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust += 8; } })>>
 	<</replace>>
 <</link>>
-<br><<link "Allow $him to resume $his birth name">>
+<br><<link "Just confine would-be escapee to prevent future attempts">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You calmly and charitably tell $him that that's acceptable; $he can be $activeSlave.birthName again. $He has the wit to be worried, but $he soon finds that $his fears are unjustified. You offer no condition or "catch" with this bit of generosity; it seems all $he really had to do was ask. You usher the stunned $desc out of your office and on to $his duties before $he can even offer a perfunctory "thanks". Over the next week, it's clear that while $activeSlave.slaveName — no, $activeSlave.birthName — is @@.mediumorchid;not sure what to think of you now,@@ it's clear that $he is at least @@.orangered;less afraid of you.@@
-	<<set $activeSlave.trust += 25, $activeSlave.devotion -= 15, $activeSlave.slaveName = $activeSlave.birthName>>
+		You order $activeSlave.slaveName confined until further notice. $activeSlave.slaveName is @@.hotpink;a little crushed@@ by $his failure to escape. However, every single one of your other slaves not already obedient to you is slightly @@.orangered;encouraged in their trust that you won't hurt them@@ by this moderate punishment of an escape attempt.
+		<<set $activeSlave.devotion += 4>>
+		<<= assignJob($activeSlave, "stay confined")>>
+		<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust += 4; } })>>
 	<</replace>>
 <</link>>
-<br><<link "Allow $him to resume $his birth name, but make it publicly humiliating">>
+<br><<link "Flog the would-be escapee">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You calmly and charitably tell $him that that's acceptable; $he can be $activeSlave.birthName again. $He has the wit to be worried, and $he soon finds that $his fears are not unjustified. You bring $him out to <<if $club>>$clubName<<else>>a public club<</if>>, and explain with equanimity that $he has two choices: $he can either introduce $himself to strangers by name and offer them free oral sex, or $he can be whipped until $he introduces $himself to strangers by name and offers them free oral sex. $His lip quivers a little, but $he stumbles over to a nearby group of local worthies and whimpers hesitantly, "H-hi, my name i<<s>> <<print _name>>, can I <<s>>uck you off, plea<<s>>e?" They laugh, and understanding the situation perfectly, give you a @@.green;grateful wave@@ even as their leader pushes $him to $his knees. For the rest of the week, $he's seeing to $his duties, sleeping, or blowing strangers after telling them $his name. Though $he has reassumed $his birth name, it is @@.gold;no longer any source of independence to $him.@@
-	<<run repX(500, "event", $activeSlave)>>
-	<<set $activeSlave.trust -= 5, $activeSlave.counter.oral += 50, $activeSlave.counter.publicUse += 50, $activeSlave.slaveName = $activeSlave.birthName>>
-	<<set $oralTotal += 50>>
-	<<if random(1,100) > 50>>The experience has given $him an @@.lightcoral;interest in humiliation.@@<<set $activeSlave.fetishStrength = 10>><<set $activeSlave.fetish = "humiliation">><<set $activeSlave.fetishKnown = 1>><</if>>
+		Lesser whippings are usually performed by binding a slave's hands and then securing them to the ceiling so that $he will dance titillatingly when struck. This is not such a beating. You tie $activeSlave.slaveName to a wall by $his wrists and ankles and flog $him with workmanlike thoroughness<<if $activeSlave.pregKnown == 1>>, making sure to avoid accidentally ending $his pregnancy<</if>>. $He passes from angry struggles to agonized sobbing and finally to bloody, exhausted weeping before you untie $his now-limp form and apply first aid. $activeSlave.slaveName's rebelliousness is @@.gold;dulled by the experience,@@ and $his @@.red;health is damaged.@@ Furthermore, every single one of your other slaves not already obedient to you is @@.gold;frightened@@ by the example set.
+		<<set $activeSlave.trust -= 5, $activeSlave.health -= 40>>
+		<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 5; } })>>
 	<</replace>>
-<</link>> //This may impact $his sexuality.//
-<<if $arcade > 0>>
-<br><<link "Sentence $him to a month in the arcade">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate.
-	<<if ($activeSlave.muscles > 30)>>
-		$His powerful form has to be sedated for immurement in the arcade.
-	<<elseif ($activeSlave.weight >= 190)>>
-		$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
-	<<elseif $activeSlave.belly >= 120000>>
-		$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
-	<<elseif ($activeSlave.weight >= -10)>>
-		$His desperate struggles make immuring $him in the arcade difficult.
-	<<elseif $activeSlave.belly >= 1500>>
-		$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
-	<<elseif $activeSlave.muscles < -15>>
-		$His weak body makes immuring $him in the arcade pathetically easy.
-	<<else>>
-		$His thin form makes immuring $him in the arcade pathetically easy.
-	<</if>>
-	After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
-	<<= assignJob($activeSlave, "be confined in the arcade")>>
-	<<set $activeSlave.sentence = 4>>
+<</link>>
+<br><<link "Clip the would-be escapee's tendons">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;saddened@@ and @@.gold;frightened@@ by this punishment, and $his @@.red;health is damaged@@ by the surgery. Every single one of your other slaves with any resistance left in them is @@.gold;sensibly restrained@@ from trying such rash acts.
+		<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5, $activeSlave.health -= 10, $activeSlave.heels = 1>>
+		<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 5; } })>>
 	<</replace>>
 <</link>>
+<<if $activeSlave.indentureRestrictions < 1>>
+	<br><<link "Amputate the would-be escapee's limbs">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and $his @@.red;health is damaged@@ by the major surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set.
+			<<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.health -= 40, $activeSlave.amp = 1, $activeSlave.shoes = "none", $activeSlave.diet = "healthy", $activeSlave.heels = 0>>
+			<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 10; } })>>
+		<</replace>>
+	<</link>>
+	<<if $activeSlave.eyes != -2>>
+		<br><<link "Blind the would-be escapee">>
+			<<EventNameDelink $activeSlave>>
+			<<replace "#result">>
+				The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, weeping form through the penthouse to the surgery. You make sure to point out all the things $he'll never get to see again. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and $his @@.red;health is slightly damaged@@ by the surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set.
+				<<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.health -= 20, $activeSlave.eyes = -2, $activeSlave.eyeColor = "dulled " + $activeSlave.eyeColor($activeSlave)>>
+				<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 10; } })>>
+			<</replace>>
+		<</link>>
+	<</if>>
+	<<if canTalk($activeSlave)>>
+		<br><<link "Mute the would-be escapee">>
+			<<EventNameDelink $activeSlave>>
+			<<replace "#result">>
+				The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, protesting form through the penthouse to the surgery. $He is allowed one last chance to verbally resist you, plead with you, and finally to beg with you, all in vain. $activeSlave.slaveName is @@.mediumorchid;filled with hatred@@ and @@.gold;terror@@ by this harsh punishment, and $his @@.red;health is slightly damaged@@ by the surgery. However, every single one of your other slaves not already obedient to you is @@.hotpink;terrified@@ by the example set.
+				<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 25, $activeSlave.health -= 10, $activeSlave.voice = 0>>
+				<<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 5; } })>>
+			<</replace>>
+		<</link>>
+	<</if>>
+<</if>>
+
+<<case "not my name">>
+
+<<link "Extirpate this foolishness with pain">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You seize $him and begin to bind $him for appropriate punishment. $activeSlave.slaveName does not resist you physically at first. $He finds $himself tied bent over your desk, face-down, with $his arms locked behind $him<<if $activeSlave.belly >= 1500>> and $his _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly hanging off the edge<</if>>. $He struggles a little when you insert your cock into $his <<if ($activeSlave.anus == 1)>>poor little anus<<elseif ($activeSlave.anus == 2)>>whore's butt<<else>>gaping rear end<</if>>, but $his real agony begins when you place $his arms in an inescapable joint lock and apply a little pressure. It doesn't damage $him, but it easily causes more pain than $he is capable of resisting. $He does a little dance within $his bindings, squealing and involuntarily clenching you nicely with $his anal ring. You require $him to recite the litany "My name i<<s>> <<print _slavename>>!", coaching $him with alternate orders and agonizing correction until $he's screaming every word at the top of $his lungs in an endless wail. $His screeching rises and falls as $he feels the burning sensation of your merciless use of $his ass, but $he works $his lungs hard to avoid as much pain as $he can. When you've climaxed and cast off $his bindings, you make $him repeat $his name one last time as $he stiffly rubs $his abused arms and anus. $He does, @@.gold;without hesitation.@@
+		<<set $activeSlave.trust -= 5>>
+		<<= AnalVCheck()>>
+	<</replace>>
+<</link>>
+<br><<link "Allow $him to resume $his birth name">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You calmly and charitably tell $him that that's acceptable; $he can be $activeSlave.birthName again. $He has the wit to be worried, but $he soon finds that $his fears are unjustified. You offer no condition or "catch" with this bit of generosity; it seems all $he really had to do was ask. You usher the stunned $desc out of your office and on to $his duties before $he can even offer a perfunctory "thanks". Over the next week, it's clear that while $activeSlave.slaveName — no, $activeSlave.birthName — is @@.mediumorchid;not sure what to think of you now,@@ it's clear that $he is at least @@.orangered;less afraid of you.@@
+		<<set $activeSlave.trust += 15, $activeSlave.devotion -= 5, $activeSlave.slaveName = $activeSlave.birthName>>
+	<</replace>>
+<</link>>
+<br><<link "Allow $him to resume $his birth name, but make it publicly humiliating">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You calmly and charitably tell $him that that's acceptable; $he can be $activeSlave.birthName again. $He has the wit to be worried, and $he soon finds that $his fears are not unjustified. You bring $him out to <<if $club>>$clubName<<else>>a public club<</if>>, and explain with equanimity that $he has two choices: $he can either introduce $himself to strangers by name and offer them free oral sex, or $he can be whipped until $he introduces $himself to strangers by name and offers them free oral sex. $His lip quivers a little, but $he stumbles over to a nearby group of local worthies and whimpers hesitantly, "H-hi, my name i<<s>> <<print _name>>, can I <<s>>uck you off, plea<<s>>e?" They laugh, and understanding the situation perfectly, give you a @@.green;grateful wave@@ even as their leader pushes $him to $his knees. For the rest of the week, $he's seeing to $his duties, sleeping, or blowing strangers after telling them $his name. Though $he has reassumed $his birth name, it is @@.gold;no longer any source of independence to $him.@@
+		<<run repX(500, "event", $activeSlave)>>
+		<<set $activeSlave.trust -= 5, $activeSlave.counter.oral += 50, $activeSlave.counter.publicUse += 50, $activeSlave.slaveName = $activeSlave.birthName>>
+		<<set $oralTotal += 50>>
+		<<if random(1,100) > 50>>The experience has given $him an @@.lightcoral;interest in humiliation.@@<<set $activeSlave.fetishStrength = 10>><<set $activeSlave.fetish = "humiliation">><<set $activeSlave.fetishKnown = 1>><</if>>
+	<</replace>>
+<</link>> //This may impact $his sexuality.//
+<<if $arcade > 0>>
+	<br><<link "Sentence $him to a month in the arcade">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate.
+			<<if ($activeSlave.muscles > 30)>>
+				$His powerful form has to be sedated for immurement in the arcade.
+			<<elseif ($activeSlave.weight >= 190)>>
+				$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
+			<<elseif $activeSlave.belly >= 120000>>
+				$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
+			<<elseif ($activeSlave.weight >= -10)>>
+				$His desperate struggles make immuring $him in the arcade difficult.
+			<<elseif $activeSlave.belly >= 1500>>
+				$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
+			<<elseif $activeSlave.muscles < -15>>
+				$His weak body makes immuring $him in the arcade pathetically easy.
+			<<else>>
+				$His thin form makes immuring $him in the arcade pathetically easy.
+			<</if>>
+			After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
+			<<= assignJob($activeSlave, "be confined in the arcade")>>
+			<<set $activeSlave.sentence = 4>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "bondage gear">>
@@ -7886,82 +7896,82 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Let $him go naked">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	<<if $activeSlave.amp != 1>>$He skips away happily,<<else>>$He wriggles $his stumps with pleasure,<</if>> overjoyed to be free of the clothing you ordered $him to wear. $His obedience to you @@.mediumorchid;has decreased,@@ as has @@.mediumaquamarine;$his fear@@ of you.
-	<<set $activeSlave.devotion -= 5, $activeSlave.trust += 4>>
+		<<if $activeSlave.amp != 1>>$He skips away happily,<<else>>$He wriggles $his stumps with pleasure,<</if>> overjoyed to be free of the clothing you ordered $him to wear. $His obedience to you @@.mediumorchid;has decreased,@@ as has @@.mediumaquamarine;$his fear@@ of you.
+		<<set $activeSlave.devotion -= 5, $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Force $him to choose between $his straps and public nudity">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him that you understand, and that $he can go naked; $he looks thrilled until you tell $him $he'll be walking every hallway in $arcologies[0].name today, nude. Before $he can protest, you add that $his only other option is to put $his proper clothes back on and be a good little bitch.
-	<<if $activeSlave.fetish == "humiliation">>
-		$He @@.hotpink;happily accepts the alternative,@@
-		<<if canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-			$his dick hardening
-		<<elseif $activeSlave.dick > 0>>
-			$his dick leaking precum
-		<<elseif $activeSlave.vagina > 0>>
-			$his pussy moistening
+		You tell $him that you understand, and that $he can go naked; $he looks thrilled until you tell $him $he'll be walking every hallway in $arcologies[0].name today, nude. Before $he can protest, you add that $his only other option is to put $his proper clothes back on and be a good little bitch.
+		<<if $activeSlave.fetish == "humiliation">>
+			$He @@.hotpink;happily accepts the alternative,@@
+			<<if canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+				$his dick hardening
+			<<elseif $activeSlave.dick > 0>>
+				$his dick leaking precum
+			<<elseif $activeSlave.vagina > 0>>
+				$his pussy moistening
+			<<else>>
+				$his nipples <<if $activeSlave.nipples != "fuckable">>hardening<<else>>swelling<</if>>
+			<</if>>
+			with anticipation.
+			<<set $activeSlave.devotion += 4, $activeSlave.clothes = "no clothing">>
+			<<if $activeSlave.fetishKnown == 0>>
+				That was not the response you expected; turns out $he has a @@.lightcoral;humiliation fetish.@@
+				<<set $activeSlave.fetishKnown = 1>>
+			<</if>>
 		<<else>>
-			$his nipples <<if $activeSlave.nipples != "fuckable">>hardening<<else>>swelling<</if>>
-		<</if>>
-		with anticipation.
-		<<set $activeSlave.devotion += 4, $activeSlave.clothes = "no clothing">>
-		<<if $activeSlave.fetishKnown == 0>>
-			That was not the response you expected; turns out $he has a @@.lightcoral;humiliation fetish.@@
-			<<set $activeSlave.fetishKnown = 1>>
+			$He shudders and @@.gold;hurries to get $his straps back on.@@
+			<<set $activeSlave.trust -= 5>>
 		<</if>>
-	<<else>>
-		$He shudders and @@.gold;hurries to get $his straps back on.@@
-		<<set $activeSlave.trust -= 5>>
-	<</if>>
 	<</replace>>
 <</link>>
 <<if $activeSlave.buttPlug == "none" && ($activeSlave.vagina < 0 || ($activeSlave.vaginalAccessory == "none" && $activeSlave.vaginalAttachment == "none"))>>
-<br><<link "Add dildos to $his gear">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that you understand, and that you will get $him some new clothing. $He is thrilled, but $his pleasure turns to horror when $he sees that the new clothes are a version of the same slave bondage gear, just with inward-facing dildos for $his <<if $activeSlave.vagina > -1>>pussy and <</if>> asshole.
-	<<if $activeSlave.anus == 0 || $activeSlave.vagina == 0>>
-		You pause before getting $him dressed; there's little reason to waste virginities on plugs. You <<if $PC.dick == 1>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over, opting to start with $his tight pussy.
-		<<= BothVCheck()>>
-	<<elseif $activeSlave.anus == 0>>
-		You pause before getting $him dressed; there's little reason to waste $his anal virginity on a plug. You <<if $PC.dick == 1>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over before working your way into $his tight anus.
-		<<= AnalVCheck()>>
-	<<elseif $activeSlave.vagina == 0>>
-		You pause before getting $him dressed; there's little reason to waste $his virginity on a plug. You <<if $PC.dick == 1>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over before working your way into $his tight pussy.
-		<<= VaginalVCheck()>>
-	<</if>>
-	For the rest of the week, $he walks around awkwardly, unable to find a comfortable position <<if $activeSlave.belly >= 1500>>between<<else>>since<</if>> $his <<if $seeRace == 1>>$activeSlave.race <</if>>body <<if $activeSlave.belly >= 1500>>is<</if>> being penetrated by $his own clothing<<if $activeSlave.belly >= 1500>> and the straps digging into $his _belly rounded belly<</if>>. @@.hotpink;$He has become more submissive.@@
-	<</replace>>
-	<<set $activeSlave.devotion += 4>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+	<br><<link "Add dildos to $his gear">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him that you understand, and that you will get $him some new clothing. $He is thrilled, but $his pleasure turns to horror when $he sees that the new clothes are a version of the same slave bondage gear, just with inward-facing dildos for $his <<if $activeSlave.vagina > -1>>pussy and <</if>> asshole.
+			<<if $activeSlave.anus == 0 || $activeSlave.vagina == 0>>
+				You pause before getting $him dressed; there's little reason to waste virginities on plugs. You <<if $PC.dick == 1>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over, opting to start with $his tight pussy.
+				<<= BothVCheck()>>
+			<<elseif $activeSlave.anus == 0>>
+				You pause before getting $him dressed; there's little reason to waste $his anal virginity on a plug. You <<if $PC.dick == 1>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over before working your way into $his tight anus.
+				<<= AnalVCheck()>>
+			<<elseif $activeSlave.vagina == 0>>
+				You pause before getting $him dressed; there's little reason to waste $his virginity on a plug. You <<if $PC.dick == 1>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over before working your way into $his tight pussy.
+				<<= VaginalVCheck()>>
+			<</if>>
+			For the rest of the week, $he walks around awkwardly, unable to find a comfortable position <<if $activeSlave.belly >= 1500>>between<<else>>since<</if>> $his <<if $seeRace == 1>>$activeSlave.race <</if>>body <<if $activeSlave.belly >= 1500>>is<</if>> being penetrated by $his own clothing<<if $activeSlave.belly >= 1500>> and the straps digging into $his _belly rounded belly<</if>>. @@.hotpink;$He has become more submissive.@@
+		<</replace>>
+		<<set $activeSlave.devotion += 4>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 <<if $arcade > 0>>
-<br><<link "Sentence $him to a month in the arcade">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate.
-	<<if ($activeSlave.muscles > 30)>>
-		$His powerful form has to be sedated for immurement in the arcade.
-	<<elseif ($activeSlave.weight >= 190)>>
-		$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
-	<<elseif $activeSlave.belly >= 120000>>
-		$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
-	<<elseif ($activeSlave.weight >= -10)>>
-		$His desperate struggles make immuring $him in the arcade difficult.
-	<<elseif $activeSlave.belly >= 1500>>
-		$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
-	<<elseif $activeSlave.muscles < -15>>
-		$His weak body makes immuring $him in the arcade pathetically easy.
-	<<else>>
-		$His thin form makes immuring $him in the arcade pathetically easy.
-	<</if>>
-	After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
-	<<= assignJob($activeSlave, "be confined in the arcade")>>
-	<<set $activeSlave.sentence = 4>>
-	<</replace>>
-<</link>>
+	<br><<link "Sentence $him to a month in the arcade">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate.
+			<<if ($activeSlave.muscles > 30)>>
+				$His powerful form has to be sedated for immurement in the arcade.
+			<<elseif ($activeSlave.weight >= 190)>>
+				$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
+			<<elseif $activeSlave.belly >= 120000>>
+				$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
+			<<elseif ($activeSlave.weight >= -10)>>
+				$His desperate struggles make immuring $him in the arcade difficult.
+			<<elseif $activeSlave.belly >= 1500>>
+				$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
+			<<elseif $activeSlave.muscles < -15>>
+				$His weak body makes immuring $him in the arcade pathetically easy.
+			<<else>>
+				$His thin form makes immuring $him in the arcade pathetically easy.
+			<</if>>
+			After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
+			<<= assignJob($activeSlave, "be confined in the arcade")>>
+			<<set $activeSlave.sentence = 4>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "vocal disobedience">>
@@ -7969,111 +7979,111 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Give $him a rough spanking">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	<<if ($activeSlave.amp != 1)>>
-		You tie the protesting slave to your desk
-		<<if $activeSlave.belly >= 5000>>
-			with $his chest against the top of the desk with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly hanging of the side, so that
+		<<if ($activeSlave.amp != 1)>>
+			You tie the protesting slave to your desk
+			<<if $activeSlave.belly >= 5000>>
+				with $his chest against the top of the desk with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly hanging of the side, so that
+			<<else>>
+				so that $his chest is against the top of the desk and
+			<</if>>
+			$he's standing upright with $his ass in the air.
 		<<else>>
-			so that $his chest is against the top of the desk and
+			<<if $activeSlave.belly >= 300000>>
+				You carefully balance the protesting, defenseless torso atop $his own _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>.
+			<<elseif $activeSlave.belly >= 5000>>
+				You place the protesting, defenseless torso on your lap, face-down with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly between your legs.
+			<<else>>
+				You place the protesting, defenseless torso on your desk, face-down.
+			<</if>>
 		<</if>>
-		$he's standing upright with $his ass in the air.
-	<<else>>
-		<<if $activeSlave.belly >= 300000>>
-			You carefully balance the protesting, defenseless torso atop $his own _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>.
-		<<elseif $activeSlave.belly >= 5000>>
-			You place the protesting, defenseless torso on your lap, face-down with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly between your legs.
+		You spank $him severely, leaving $his buttocks bright pink. $He must count the strokes or have $his punishment start over. Sobbing, $he counts
+		<<if ($activeSlave.lips > 70)>>
+			through $his massive dick-sucking lips,
+		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
+			through $his inconvenient oral piercings
+		<</if>>
+		"<<S>>ix, AAGHHH, <<S>>even, AAGHHH, <<S>>even"
+		and then realizes $his mistake and begs for mercy — in vain, of course. You finish $him off with a rough
+		<<if canDoVaginal($activeSlave)>>
+			fuck, with $him jerking against $his restraints every time you stroke into $his sore buttocks.
+			<<= VaginalVCheck()>>
+		<<elseif canDoAnal($activeSlave)>>
+			assfuck, with $him jerking against $his restraints every time you stroke into $his sore buttocks.
+			<<= AnalVCheck()>>
 		<<else>>
-			You place the protesting, defenseless torso on your desk, face-down.
+			throatfuck, with $him jerking against $his restraints every time you hilt yourself and slap $his ass.
+			<<set $activeSlave.counter.oral++, $oralTotal++>>
 		<</if>>
-	<</if>>
-	You spank $him severely, leaving $his buttocks bright pink. $He must count the strokes or have $his punishment start over. Sobbing, $he counts
-	<<if ($activeSlave.lips > 70)>>
-		through $his massive dick-sucking lips,
-	<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-		through $his inconvenient oral piercings
-	<</if>>
-	"<<S>>ix, AAGHHH, <<S>>even, AAGHHH, <<S>>even"
-	and then realizes $his mistake and begs for mercy — in vain, of course. You finish $him off with a rough
-	<<if canDoVaginal($activeSlave)>>
-		fuck, with $him jerking against $his restraints every time you stroke into $his sore buttocks.
-		<<= VaginalVCheck()>>
-	<<elseif canDoAnal($activeSlave)>>
-		assfuck, with $him jerking against $his restraints every time you stroke into $his sore buttocks.
-		<<= AnalVCheck()>>
-	<<else>>
-		throatfuck, with $him jerking against $his restraints every time you hilt yourself and slap $his ass.
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<</if>>
-	@@.gold;$He learns from the experience.@@
-	<<set $activeSlave.trust -= 5>>
+		@@.gold;$He learns from the experience.@@
+		<<set $activeSlave.trust -= 5>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Sentence $him to public use">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	When $he <<if canSee($activeSlave)>>sees $he's being taken to a sex booth<<elseif canHear($activeSlave)>>hears the sounds of a public sex parlor<<else>>finally figures out $his destination<</if>>, $he begins to cry. $He begs
-	<<if ($activeSlave.lips > 70)>>
-		through $his massive dick-sucking lips,
-	<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-		through $his inconvenient oral piercings,
-	<<else>>
-		through $his tears,
-	<</if>>
-	"Plea<<s>>e, no, <<Master>>, I'll be good —" but is cut off when the machine closes around $his head. It will offer $his
-	<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
-		ass and pussy
-	<<elseif canDoAnal($activeSlave)>>
-		ass
-	<<else>>
-		pussy
-	<</if>>
-	to anyone who pays for the rest of the week, and keep $his fed and cleaned. $His world will become nothing but silent, featureless darkness and dick. You earn some money off $him, and by the end of the night $his
-	<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
-		holes get
-	<<else>>
-		hole gets
-	<</if>>
-	well stretched. @@.hotpink;$He learns from the experience.@@
-	<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
-		<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
-			@@.lime;$He's lost both $his virginity and anal cherry.@@
-		<<elseif $activeSlave.vagina == 0>>
-			@@.lime;$He's lost $his virginity.@@
-		<<elseif $activeSlave.anus == 0>>
-			@@.lime; $He's lost $his anal cherry.@@
-		<</if>>
-		<<set $activeSlave.vagina++, $activeSlave.anus++, $activeSlave.counter.vaginal += 10, $vaginalTotal += 10, $activeSlave.counter.anal += 10, $analTotal += 10>>
-		<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-			<<= knockMeUp($activeSlave, 25, 2, -2)>>
-		<</if>>
-	<<elseif canDoAnal($activeSlave)>>
-		<<if $activeSlave.anus == 0>>
-			@@.lime; $He's lost $his anal cherry.@@
-		<</if>>
-		<<set $activeSlave.anus++, $activeSlave.counter.anal += 20, $analTotal += 20>>
-		<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-			<<= knockMeUp($activeSlave, 50, 1, -2)>>
-		<</if>>
-	<<else>>
-		<<if $activeSlave.vagina == 0>>
-			@@.lime;$He's lost $his virginity.@@
-		<</if>>
-		<<set $activeSlave.vagina++, $activeSlave.counter.vaginal += 20, $vaginalTotal += 20>>
-		<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-			<<= knockMeUp($activeSlave, 50, 0, -2)>>
-		<</if>>
-	<</if>>
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.publicUse += 20>>
-	<<run cashX(50, "event", $activeSlave)>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+	<br><<link "Sentence $him to public use">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			When $he <<if canSee($activeSlave)>>sees $he's being taken to a sex booth<<elseif canHear($activeSlave)>>hears the sounds of a public sex parlor<<else>>finally figures out $his destination<</if>>, $he begins to cry. $He begs
+			<<if ($activeSlave.lips > 70)>>
+				through $his massive dick-sucking lips,
+			<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
+				through $his inconvenient oral piercings,
+			<<else>>
+				through $his tears,
+			<</if>>
+			"Plea<<s>>e, no, <<Master>>, I'll be good —" but is cut off when the machine closes around $his head. It will offer $his
+			<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
+				ass and pussy
+			<<elseif canDoAnal($activeSlave)>>
+				ass
+			<<else>>
+				pussy
+			<</if>>
+			to anyone who pays for the rest of the week, and keep $his fed and cleaned. $His world will become nothing but silent, featureless darkness and dick. You earn some money off $him, and by the end of the night $his
+			<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
+				holes get
+			<<else>>
+				hole gets
+			<</if>>
+			well stretched. @@.hotpink;$He learns from the experience.@@
+			<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
+				<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
+					@@.lime;$He's lost both $his virginity and anal cherry.@@
+				<<elseif $activeSlave.vagina == 0>>
+					@@.lime;$He's lost $his virginity.@@
+				<<elseif $activeSlave.anus == 0>>
+					@@.lime; $He's lost $his anal cherry.@@
+				<</if>>
+				<<set $activeSlave.vagina++, $activeSlave.anus++, $activeSlave.counter.vaginal += 10, $vaginalTotal += 10, $activeSlave.counter.anal += 10, $analTotal += 10>>
+				<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+					<<= knockMeUp($activeSlave, 25, 2, -2)>>
+				<</if>>
+			<<elseif canDoAnal($activeSlave)>>
+				<<if $activeSlave.anus == 0>>
+					@@.lime; $He's lost $his anal cherry.@@
+				<</if>>
+				<<set $activeSlave.anus++, $activeSlave.counter.anal += 20, $analTotal += 20>>
+				<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+					<<= knockMeUp($activeSlave, 50, 1, -2)>>
+				<</if>>
+			<<else>>
+				<<if $activeSlave.vagina == 0>>
+					@@.lime;$He's lost $his virginity.@@
+				<</if>>
+				<<set $activeSlave.vagina++, $activeSlave.counter.vaginal += 20, $vaginalTotal += 20>>
+				<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+					<<= knockMeUp($activeSlave, 50, 0, -2)>>
+				<</if>>
+			<</if>>
+			<<set $activeSlave.devotion += 4, $activeSlave.counter.publicUse += 20>>
+			<<run cashX(50, "event", $activeSlave)>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 <br><<link "Give $him the day off">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He skips away happily and spends the rest of the day lounging around. $His obedience to you @@.mediumorchid;has decreased.@@
-	<<set $activeSlave.devotion -= 5>>
+		$He skips away happily and spends the rest of the day lounging around. $His obedience to you @@.mediumorchid;has decreased.@@
+		<<set $activeSlave.devotion -= 5>>
 	<</replace>>
 <</link>>
 
@@ -8082,56 +8092,56 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Publicly prove the depths of $his humiliation to $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You drag a fearful, embarrassed<<if $activeSlave.belly >= 1500>>, <<if $activeSlave.bellyPreg >= 0>>pregnant<<else>>swollen<</if>><</if>> and totally naked $activeSlave.slaveName out into a public hall. A small knot of passersby gather around grinning, enjoying the sight of $his nakedness and anticipating a show. To $his surprise, you order $him to take a few minutes to recount $his life story. $He's hesitant at first, but obeys, only realizing as $he nears the present day what an abject story of degradation and humiliation $his life truly is. $He continues shakily, describing in brief $his current life, crying a little and trembling with arousal. At a whispered command from you, $he concludes
-	<<if !canTalk($activeSlave)>>
-		in embarrassed gestures, "and now my <<= WrittenMaster()>> is going to fuck my worthless body in public."
-	<<else>>
-		"and now my <<Master>> i<<s>> going to fuck my worthle<<ss>> body in public."
-	<</if>>
-	You take $him standing there, as $he cries with mixed shame and sexual pleasure.
-	<<if !canDoVaginal($activeSlave)>>
-		$He <<if ($activeSlave.dick > 0)>>cums even though $he's soft<<else>>climaxes even though $he's filled<</if>> with the shame, <<if $PC.dick == 0>>$his anus clenching around the strap-on you're pumping in and out of it<<else>>adding a sad little dribble to the load dripping out of $his asshole<</if>>.
-	<<else>>
-		<<if $PC.dick == 0>>You make $him clean $his pussyjuice off your strap-on with $his bitch mouth before you take it off.<<else>>As you pull out of $his clenching pussy, cum runs down $his quavering thighs.<</if>>
-	<</if>>
-	@@.hotpink;$He has become more submissive to you,@@ and @@.green;your reputation has increased.@@
-	<<set $activeSlave.devotion += 4>>
-	<<run repX(500, "event", $activeSlave)>>
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
+		You drag a fearful, embarrassed<<if $activeSlave.belly >= 1500>>, <<if $activeSlave.bellyPreg >= 0>>pregnant<<else>>swollen<</if>><</if>> and totally naked $activeSlave.slaveName out into a public hall. A small knot of passersby gather around grinning, enjoying the sight of $his nakedness and anticipating a show. To $his surprise, you order $him to take a few minutes to recount $his life story. $He's hesitant at first, but obeys, only realizing as $he nears the present day what an abject story of degradation and humiliation $his life truly is. $He continues shakily, describing in brief $his current life, crying a little and trembling with arousal. At a whispered command from you, $he concludes
+		<<if !canTalk($activeSlave)>>
+			in embarrassed gestures, "and now my <<= WrittenMaster()>> is going to fuck my worthless body in public."
+		<<else>>
+			"and now my <<Master>> i<<s>> going to fuck my worthle<<ss>> body in public."
+		<</if>>
+		You take $him standing there, as $he cries with mixed shame and sexual pleasure.
+		<<if !canDoVaginal($activeSlave)>>
+			$He <<if ($activeSlave.dick > 0)>>cums even though $he's soft<<else>>climaxes even though $he's filled<</if>> with the shame, <<if $PC.dick == 0>>$his anus clenching around the strap-on you're pumping in and out of it<<else>>adding a sad little dribble to the load dripping out of $his asshole<</if>>.
+		<<else>>
+			<<if $PC.dick == 0>>You make $him clean $his pussyjuice off your strap-on with $his bitch mouth before you take it off.<<else>>As you pull out of $his clenching pussy, cum runs down $his quavering thighs.<</if>>
+		<</if>>
+		@@.hotpink;$He has become more submissive to you,@@ and @@.green;your reputation has increased.@@
+		<<set $activeSlave.devotion += 4>>
+		<<run repX(500, "event", $activeSlave)>>
+		<<if canDoVaginal($activeSlave)>>
+			<<= VaginalVCheck()>>
+		<<else>>
+			<<= AnalVCheck()>>
+		<</if>>
 	<</replace>>
 <</link>>
 <br><<link "Use a bait and switch tactic on $him, before public use">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You instruct $him to get cleaned up and get dressed in $his nicest clothing. $He obeys, mystified, and is further puzzled to find that you're taking $him out for a nice evening at a small bar. You share a tasty meal and listen to good music played on the little stage by an older slave. As the set concludes, you lean over and give $activeSlave.slaveName $his real orders for the evening. $He freezes in terror but eventually makes $his way up to the stage, strips in front of all the patrons, and says
-	<<if !canTalk($activeSlave)>>
-		in embarrassed gestures, "please use me, I'm cheap."
-	<<else>>
-		"One credit per fuck, if you'll do my worthle<<ss>> body on <<s>>tage."
-	<</if>>
-	By the end of the night, $he's been fucked by almost everyone in the bar, and $his itch for humiliation has been well and truly scratched. As you collect $his earnings from the thoroughly pleased bartender, $he lies quiescent in a puddle of cum and exhaustion. @@.yellowgreen;You've collected a decent fee,@@ and @@.green;your reputation has increased.@@
-	<<run repX(500, "event", $activeSlave)>>
-	<<run cashX(100, "event", $activeSlave)>>
-	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-		<<set $activeSlave.counter.vaginal += 10, $vaginalTotal += 10, $activeSlave.counter.anal += 10, $analTotal += 10>>
-		<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-			<<= knockMeUp($activeSlave, 25, 2, -2)>>
-		<</if>>
-	<<elseif canDoVaginal($activeSlave)>>
-		<<set $activeSlave.counter.vaginal += 20, $vaginalTotal += 20>>
-		<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-			<<= knockMeUp($activeSlave, 50, 0, -2)>>
+		You instruct $him to get cleaned up and get dressed in $his nicest clothing. $He obeys, mystified, and is further puzzled to find that you're taking $him out for a nice evening at a small bar. You share a tasty meal and listen to good music played on the little stage by an older slave. As the set concludes, you lean over and give $activeSlave.slaveName $his real orders for the evening. $He freezes in terror but eventually makes $his way up to the stage, strips in front of all the patrons, and says
+		<<if !canTalk($activeSlave)>>
+			in embarrassed gestures, "please use me, I'm cheap."
+		<<else>>
+			"One credit per fuck, if you'll do my worthle<<ss>> body on <<s>>tage."
 		<</if>>
-	<<else>>
-		<<set $activeSlave.counter.anal += 20, $analTotal += 20>>
-		<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-			<<= knockMeUp($activeSlave, 50, 1, -2)>>
+		By the end of the night, $he's been fucked by almost everyone in the bar, and $his itch for humiliation has been well and truly scratched. As you collect $his earnings from the thoroughly pleased bartender, $he lies quiescent in a puddle of cum and exhaustion. @@.yellowgreen;You've collected a decent fee,@@ and @@.green;your reputation has increased.@@
+		<<run repX(500, "event", $activeSlave)>>
+		<<run cashX(100, "event", $activeSlave)>>
+		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+			<<set $activeSlave.counter.vaginal += 10, $vaginalTotal += 10, $activeSlave.counter.anal += 10, $analTotal += 10>>
+			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+				<<= knockMeUp($activeSlave, 25, 2, -2)>>
+			<</if>>
+		<<elseif canDoVaginal($activeSlave)>>
+			<<set $activeSlave.counter.vaginal += 20, $vaginalTotal += 20>>
+			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+				<<= knockMeUp($activeSlave, 50, 0, -2)>>
+			<</if>>
+		<<else>>
+			<<set $activeSlave.counter.anal += 20, $analTotal += 20>>
+			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+				<<= knockMeUp($activeSlave, 50, 1, -2)>>
+			<</if>>
 		<</if>>
-	<</if>>
 	<</replace>>
 <</link>>
 
@@ -8140,46 +8150,46 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Nothing, $he'll crawl for the rest of the week">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He is surprised <<if canSee($activeSlave)>>to see the box is empty<<else>>when $he reaches into the and finds nothing<</if>>. By the time $he realizes what this means, you've confiscated $his old heels and seated yourself at your desk. Ordered to suck, $he comes gingerly over on all fours<<if $activeSlave.belly >= 100000>>, $his belly dragging along the floor,<<elseif $activeSlave.belly >= 10000>>, $his swollen belly getting in $his way,<</if>> and gets you off with $his whore's mouth. The rest of the week is a trying experience for $him. The most comfortable posture for $him to walk along in on all fours displays $his
-	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-		holes nicely and you frequently avail yourself to which ever is more tempting at the time.
-		<<= BothVCheck(5, 5)>>
-	<<elseif canDoVaginal($activeSlave)>>
-		pussy nicely, so $he gets it in $his feminine fold a lot.
-		<<= VaginalVCheck(10)>>
-	<<else>>
-		anus nicely, so $he gets it up $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass a lot.
-		<<= AnalVCheck(10)>>
-	<</if>>
-	<<if $activeSlave.dick != 0>>The effort it takes to move usually keeps $his dick soft as $he does, so it flops around beneath $him all week.<</if>>
-	@@.hotpink;$He has become more submissive to you.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.shoes = "none">>
+		$He is surprised <<if canSee($activeSlave)>>to see the box is empty<<else>>when $he reaches into the box and finds nothing<</if>>. By the time $he realizes what this means, you've already confiscated $his old heels and seated yourself at your desk. Ordered to suck, $he comes gingerly over on all fours<<if $activeSlave.belly >= 100000>>, $his belly dragging along the floor,<<elseif $activeSlave.belly >= 10000>>, $his swollen belly getting in $his way,<</if>> and gets you off with $his whore's mouth. The rest of the week is a trying experience for $him. The most comfortable posture for $him to walk along in on all fours displays $his
+		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+			holes nicely and you frequently avail yourself to which ever is more tempting at the time.
+			<<= BothVCheck(5, 5)>>
+		<<elseif canDoVaginal($activeSlave)>>
+			pussy nicely, so $he gets it in $his feminine fold a lot.
+			<<= VaginalVCheck(10)>>
+		<<else>>
+			anus nicely, so $he gets it up $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass a lot.
+			<<= AnalVCheck(10)>>
+		<</if>>
+		<<if $activeSlave.dick != 0>>The effort it takes to move usually keeps $his dick soft as $he does, so it flops around beneath $him all week.<</if>>
+		@@.hotpink;$He has become more submissive to you.@@
+		<<set $activeSlave.devotion += 4, $activeSlave.shoes = "none">>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <br><<link "Pretty heels, we're going out">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You have an appointment, and $activeSlave.slaveName gets to be your arm candy. $He's almost beside $himself with pride when you leave the penthouse and head out into the warm sun. You have to walk slowly so $he can keep $his feet and still keep up, since you've taken the unusual step of rewarding $him by letting $him walk under your arm. To avoid giving the impression that the $girl on your arm isn't a slave, $he's naked except for $his lovely heels. As $he minces along $his breasts
-	<<if $activeSlave.bellyFluid >= 5000>>
-		jiggle delightfully alongside $his <<print $activeSlave.inflationType>>-filled belly
-	<<elseif $activeSlave.belly >= 5000>>
-		jiggle delightfully atop $his gravid belly
-	<<else>>
-		sway freely
-	<</if>>
-	and draw the respectful admiration of onlookers. <<if $activeSlave.dick != 0>>Most of the female onlookers and some of the men also spare an eye for $his swinging dick. <</if>>@@.mediumaquamarine;$His trust in you has increased.@@
-	<<set $activeSlave.trust += 4>>
+		You have an appointment, and $activeSlave.slaveName gets to be your arm candy. $He's almost beside $himself with pride when you leave the penthouse and head out into the warm sun. You have to walk slowly so $he can keep $his feet and still keep up, since you've taken the unusual step of rewarding $him by letting $him walk under your arm. To avoid giving the impression that the $girl on your arm isn't a slave, $he's naked except for $his lovely heels. As $he minces along $his breasts
+		<<if $activeSlave.bellyFluid >= 5000>>
+			jiggle delightfully alongside $his <<print $activeSlave.inflationType>>-filled belly
+		<<elseif $activeSlave.belly >= 5000>>
+			jiggle delightfully atop $his gravid belly
+		<<else>>
+			sway freely
+		<</if>>
+		and draw the respectful admiration of onlookers. <<if $activeSlave.dick != 0>>Most of the female onlookers and some of the men also spare an eye for $his swinging dick. <</if>>@@.mediumaquamarine;$His trust in you has increased.@@
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "Heels for an anal slut">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$activeSlave.slaveName is a little perplexed to find that the heels look quite normal, though they're very tall. When $he tries them on, however, standing requires $him to splay $his hips slightly so that $his <<if $seeRace == 1>>$activeSlave.race <</if>>butt is a little spread even when $he stands upright. What's more, the heels are tall to raise $his butt to the exact level <<if $PC.dick == 0>>a strap-on is at when you wear one and<<else>>your cock is at<</if>> when you stand behind $him. When you start demonstrating the advantages of this to $him, the heels detect that the wearer is being fucked, begin to play a light show, and start playing a heavy beat in time with your thrusts. $He would laugh if $he weren't concentrating on the buttsex. @@.hotpink;$His submission to you has increased.@@
-	<<set $activeSlave.devotion += 4>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave))>> //This option will take virginity//<</if>>
+	<br><<link "Heels for an anal slut">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$activeSlave.slaveName is a little perplexed to find that the heels look quite normal, though they're very tall. When $he tries them on, however, standing requires $him to splay $his hips slightly so that $his <<if $seeRace == 1>>$activeSlave.race <</if>>butt is a little spread even when $he stands upright. What's more, the heels are tall to raise $his butt to the exact level <<if $PC.dick == 0>>a strap-on is at when you wear one and<<else>>your cock is at<</if>> when you stand behind $him. When you start demonstrating the advantages of this to $him, the heels detect that the wearer is being fucked, begin to play a light show, and start playing a heavy beat in time with your thrusts. $He would laugh if $he weren't concentrating on the buttsex. @@.hotpink;$His submission to you has increased.@@
+			<<set $activeSlave.devotion += 4>>
+			<<= AnalVCheck()>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 
 <<case "heavy piercing">>
@@ -8187,123 +8197,123 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Weight $his piercings and fuck $him so they swing">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You order $him to make sure all of $his piercings have rings in them, and then come join you when $he's done. $He enters your office with a mixture of fear and curiosity on $his face. You put $him down on all fours with $his legs spread<<if $activeSlave.belly >= 50000>>, belly brushing the floor<</if>>, <<if canSee($activeSlave)>>blindfold $him, <</if>>and then start clipping little metal weights on short chains to each of $his piercings. Before long, $his nipples are painfully stretched under the tugging, <<if ($activeSlave.dick > 0)>>and the weights up and down $his cock are causing $his considerable discomfort.<<elseif $activeSlave.vagina == -1>>and though $he lacks any external genitalia to weight, you make sure $his ass feels the burn.<<else>>$his pussylips are being pulled downward, and even $his clit is agonizingly tortured.<</if>> You fuck $him thoroughly, pounding $him so the weights swing. $He sobs and begs. @@.hotpink;$He has become more submissive to you.@@
-	<<set $activeSlave.devotion += 4>>
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
+		You order $him to make sure all of $his piercings have rings in them, and then come join you when $he's done. $He enters your office with a mixture of fear and curiosity on $his face. You put $him down on all fours with $his legs spread<<if $activeSlave.belly >= 50000>>, belly brushing the floor<</if>>, <<if canSee($activeSlave)>>blindfold $him, <</if>>and then start clipping little metal weights on short chains to each of $his piercings. Before long, $his nipples are painfully stretched under the tugging, <<if ($activeSlave.dick > 0)>>and the weights up and down $his cock are causing $his considerable discomfort.<<elseif $activeSlave.vagina == -1>>and though $he lacks any external genitalia to weight, you make sure $his ass feels the burn.<<else>>$his pussylips are being pulled downward, and even $his clit is agonizingly tortured.<</if>> You fuck $him thoroughly, pounding $him so the weights swing. $He sobs and begs. @@.hotpink;$He has become more submissive to you.@@
+		<<set $activeSlave.devotion += 4>>
+		<<if canDoVaginal($activeSlave)>>
+			<<= VaginalVCheck()>>
+		<<else>>
+			<<= AnalVCheck()>>
+		<</if>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <br><<link "Secure $him by $his piercings for public use">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You order $him to make sure all of $his piercings have rings in them, and then come to you when $he's done. $He enters your office with a mixture of fear and curiosity on $his face. You lead $him outside and secure $him in a side hall so that $his ass is presented to anyone who takes interest. $He's forced to maintain this exact posture by a light chain between <<if $activeSlave.belly > 10000>>$his popped navel and a ring on the ground.<<elseif ($activeSlave.dick > 0)>>$his dickhead and a ring on the ground.<<elseif $activeSlave.vagina == -1>>$his nipples and a ring on the ground.<<else>>$his pussy and a ring on the ground.<</if>> You fuck $his ass to check the bondage; it's good. The chain is out of the way, and $he jerks and struggles amusingly to keep it from tugging $him painfully. You pull out to leave $his fucked butt with cum dribbling out of it, and leave $him to the tender mercies of the growing crowd. @@.green;The sadists among the public are duly grateful.@@
-	<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
-		<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
-			They take pleasure in claiming @@.lime;both $his virginity and anal cherry.@@
-		<<elseif $activeSlave.vagina == 0>>
-			They take pleasure in claiming @@.lime;$his virginity.@@
-		<<elseif $activeSlave.anus == 0>>
-			They take pleasure in claiming @@.lime;$his anal cherry.@@
-		<</if>>
-		<<set $activeSlave.vagina++, $activeSlave.anus++, $activeSlave.counter.publicUse += 10, $activeSlave.counter.vaginal += 5, $vaginalTotal += 5, $activeSlave.counter.anal += 5, $analTotal += 5>>
-		<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-			<<= knockMeUp($activeSlave, 10, 2, -2)>>
-		<</if>>
-	<<elseif canDoAnal($activeSlave)>>
-		<<if $activeSlave.anus == 0>>
-			They take pleasure in claiming @@.lime;$his anal cherry.@@
-		<</if>>
-		<<set $activeSlave.anus++, $activeSlave.counter.publicUse += 10, $activeSlave.counter.anal += 10, $analTotal += 10>>
-		<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-			<<= knockMeUp($activeSlave, 25, 1, -2)>>
-		<</if>>
-	<<else>>
-		<<if $activeSlave.vagina == 0>>
-			They take pleasure in claiming @@.lime;$his virginity.@@
-		<</if>>
-		<<set $activeSlave.vagina++, $activeSlave.counter.publicUse += 10, $activeSlave.counter.vaginal += 10, $vaginalTotal += 10>>
-		<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-			<<= knockMeUp($activeSlave, 25, 0, -2)>>
+		You order $him to make sure all of $his piercings have rings in them, and then come to you when $he's done. $He enters your office with a mixture of fear and curiosity on $his face. You lead $him outside and secure $him in a side hall so that $his ass is presented to anyone who takes interest. $He's forced to maintain this exact posture by a light chain between <<if $activeSlave.belly > 10000>>$his popped navel and a ring on the ground.<<elseif ($activeSlave.dick > 0)>>$his dickhead and a ring on the ground.<<elseif $activeSlave.vagina == -1>>$his nipples and a ring on the ground.<<else>>$his pussy and a ring on the ground.<</if>> You fuck $his ass to check the bondage; it's good. The chain is out of the way, and $he jerks and struggles amusingly to keep it from tugging $him painfully. You pull out to leave $his fucked butt with cum dribbling out of it, and leave $him to the tender mercies of the growing crowd. @@.green;The sadists among the public are duly grateful.@@
+		<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
+			<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
+				They take pleasure in claiming @@.lime;both $his virginity and anal cherry.@@
+			<<elseif $activeSlave.vagina == 0>>
+				They take pleasure in claiming @@.lime;$his virginity.@@
+			<<elseif $activeSlave.anus == 0>>
+				They take pleasure in claiming @@.lime;$his anal cherry.@@
+			<</if>>
+			<<set $activeSlave.vagina++, $activeSlave.anus++, $activeSlave.counter.publicUse += 10, $activeSlave.counter.vaginal += 5, $vaginalTotal += 5, $activeSlave.counter.anal += 5, $analTotal += 5>>
+			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+				<<= knockMeUp($activeSlave, 10, 2, -2)>>
+			<</if>>
+		<<elseif canDoAnal($activeSlave)>>
+			<<if $activeSlave.anus == 0>>
+				They take pleasure in claiming @@.lime;$his anal cherry.@@
+			<</if>>
+			<<set $activeSlave.anus++, $activeSlave.counter.publicUse += 10, $activeSlave.counter.anal += 10, $analTotal += 10>>
+			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+				<<= knockMeUp($activeSlave, 25, 1, -2)>>
+			<</if>>
+		<<else>>
+			<<if $activeSlave.vagina == 0>>
+				They take pleasure in claiming @@.lime;$his virginity.@@
+			<</if>>
+			<<set $activeSlave.vagina++, $activeSlave.counter.publicUse += 10, $activeSlave.counter.vaginal += 10, $vaginalTotal += 10>>
+			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+				<<= knockMeUp($activeSlave, 25, 0, -2)>>
+			<</if>>
 		<</if>>
-	<</if>>
-	<<run repX(2500, "event", $activeSlave)>>
+		<<run repX(2500, "event", $activeSlave)>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 
 <<case "cumslut whore">>
 
 <<link "$He must have at least a little room left">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You call $activeSlave.slaveName in and ask how full $he is. $He looks confused for a moment but soon figures out what you mean.
-	<<if !canTalk($activeSlave) && ($activeSlave.amp == 1)>>
-		As a mute amputee $he communicates poorly,
-		<<if $activeSlave.inflationType == "cum">>
-			<<if $activeSlave.bellyFluid >= 10000>>
-				but $he sticks out $his hugely bloated cum-belly and opens wide, $his intent clear.
-			<<elseif $activeSlave.bellyFluid >= 5000>>
-				but $he wiggles around so $his cum-filled belly sloshes audibly before opening wide.
+		You call $activeSlave.slaveName in and ask how full $he is. $He looks confused for a moment but soon figures out what you mean.
+		<<if !canTalk($activeSlave) && ($activeSlave.amp == 1)>>
+			As a mute amputee $he communicates poorly,
+			<<if $activeSlave.inflationType == "cum">>
+				<<if $activeSlave.bellyFluid >= 10000>>
+					but $he sticks out $his hugely bloated cum-belly and opens wide, $his intent clear.
+				<<elseif $activeSlave.bellyFluid >= 5000>>
+					but $he wiggles around so $his cum-filled belly sloshes audibly before opening wide.
+				<<else>>
+					but $he sticks out $his cum-swollen belly and opens wide, $his intent clear.
+				<</if>>
 			<<else>>
-				but $he sticks out $his cum-swollen belly and opens wide, $his intent clear.
+				but $he does manage to look hungry.
 			<</if>>
-		<<else>>
-			but $he does manage to look hungry.
-		<</if>>
-	<<elseif !canTalk($activeSlave)>>
-		<<if $activeSlave.inflationType == "cum">>
-			<<if $activeSlave.bellyFluid >= 10000>>
-				$He strokes $his hugely bloated cum-belly, makes a sign for "never," and then makes a sign for "enough."
-			<<elseif $activeSlave.bellyFluid >= 5000>>
-				$He jiggles $his cum-filled belly lewdly, makes a sign for "need," and then makes a sign for "more."
+		<<elseif !canTalk($activeSlave)>>
+			<<if $activeSlave.inflationType == "cum">>
+				<<if $activeSlave.bellyFluid >= 10000>>
+					$He strokes $his hugely bloated cum-belly, makes a sign for "never," and then makes a sign for "enough."
+				<<elseif $activeSlave.bellyFluid >= 5000>>
+					$He jiggles $his cum-filled belly lewdly, makes a sign for "need," and then makes a sign for "more."
+				<<else>>
+					$He pats $his cum-swollen belly, makes a sign for "much," and then makes a sign for "room."
+				<</if>>
 			<<else>>
-				$He pats $his cum-swollen belly, makes a sign for "much," and then makes a sign for "room."
+				$He gestures at $his<<if $activeSlave.belly >= 1500>> _belly<</if>> stomach, makes a sign for "full," and then makes a sign for "never."
 			<</if>>
 		<<else>>
-			$He gestures at $his<<if $activeSlave.belly >= 1500>> _belly<</if>> stomach, makes a sign for "full," and then makes a sign for "never."
-		<</if>>
-	<<else>>
-		<<if $activeSlave.inflationType == "cum">>
-			<<if $activeSlave.bellyFluid >= 10000>>
-				$He strokes $his hugely bloated cum-belly, "Oh <<Master>>, I've had <<s>>o much cum already today, but I can't help my<<s>>elf if you're offering me even more. I'll find <<s>>ome room in there,"
-			<<elseif $activeSlave.bellyFluid >= 5000>>
-				$He jiggles $his cum-filled belly lewdly, "Oh <<Master>>, there'<<s>> <<s>>o much already in me, but I feel <<s>>o empty <<s>>till."
+			<<if $activeSlave.inflationType == "cum">>
+				<<if $activeSlave.bellyFluid >= 10000>>
+					$He strokes $his hugely bloated cum-belly, "Oh <<Master>>, I've had <<s>>o much cum already today, but I can't help my<<s>>elf if you're offering me even more. I'll find <<s>>ome room in there,"
+				<<elseif $activeSlave.bellyFluid >= 5000>>
+					$He jiggles $his cum-filled belly lewdly, "Oh <<Master>>, there'<<s>> <<s>>o much already in me, but I feel <<s>>o empty <<s>>till."
+				<<else>>
+					$He pats $his cum-swollen stomach, "Oh <<Master>>, thi<<s>> little belly i<<s>> nothing, I alway<<s>> have room for more,"
+				<</if>>
 			<<else>>
-				$He pats $his cum-swollen stomach, "Oh <<Master>>, thi<<s>> little belly i<<s>> nothing, I alway<<s>> have room for more,"
+				"Oh <<Master>>, I'll never be full again,"
 			<</if>>
+			$he <<say>>s<<if $activeSlave.lips > 70>> past $his enormous lips<<elseif $activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2>> past $his mouthful of piercings<</if>>.
+		<</if>>
+		$He comes eagerly over and sucks you off with enthusiasm. As you cum, $he orgasms quickly at the <<if canTaste($activeSlave)>>taste<<else>>feeling<</if>> of the stuff hitting $his mouth<<if $PC.balls > 2>>, even as your load keeps flowing into $his gullet<<if $PC.balls > 3>> steadily bloated the poor $girl<</if>><</if>>.
+		<<if !canTalk($activeSlave)>>
+			$He <<if !canTaste($activeSlave)>>(rather ironically) <</if>>signs that you taste great.
 		<<else>>
-			"Oh <<Master>>, I'll never be full again,"
+			"<<Master>>, you ta<<s>>te great," $he <<if !canTaste($activeSlave)>>(rather ironically) <</if>>purrs.
 		<</if>>
-		$he <<say>>s<<if $activeSlave.lips > 70>> past $his enormous lips<<elseif $activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2>> past $his mouthful of piercings<</if>>.
-	<</if>>
-	$He comes eagerly over and sucks you off with enthusiasm. As you cum, $he orgasms quickly at the <<if canTaste($activeSlave)>>taste<<else>>feeling<</if>> of the stuff hitting $his mouth<<if $PC.balls > 2>>, even as your load keeps flowing into $his gullet<<if $PC.balls > 3>> steadily bloated the poor $girl<</if>><</if>>.
-	<<if !canTalk($activeSlave)>>
-		$He <<if !canTaste($activeSlave)>>(rather ironically) <</if>>signs that you taste great.
-	<<else>>
-		"<<Master>>, you ta<<s>>te great," $he <<if !canTaste($activeSlave)>>(rather ironically) <</if>>purrs.
-	<</if>>
-	@@.mediumaquamarine;$He has become more trusting@@ in your willingness to give $him what $he wants.
-	<<set $activeSlave.trust += 4, $activeSlave.counter.oral++, $oralTotal++>>
+		@@.mediumaquamarine;$He has become more trusting@@ in your willingness to give $him what $he wants.
+		<<set $activeSlave.trust += 4, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
 <br><<link "Cum in $his mouth all night">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You've had a busy day, so you've been unusually remiss in fucking your slaves. Naturally, this means you'll be spending the evening wandering around your home using your living sexual appliances. $activeSlave.slaveName is instructed to follow you and assist. $He's tired, so <<if ($activeSlave.amp == 1)>>you bring $his limbless torso along as a cum receptacle. Whenever you're about to finish in another slave, you pull out and fill $his mouth instead.<<else>>you let $him tag meekly along, masturbating gently as you use other slaves or just watching lazily. But whenever you're on the point of coming, you switch to $his mouth and let $him finish you with a few sucks and pumps of $his fatigued hands.<</if>> By the time you put the exhausted $activeSlave.slaveName to bed $he's in a haze of cum-induced pleasure. @@.hotpink;$He has become more submissive to you.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.oral += 5, $oralTotal += 5>>
+		You've had a busy day, so you've been unusually remiss in fucking your slaves. Naturally, this means you'll be spending the evening wandering around your home using your living sexual appliances. $activeSlave.slaveName is instructed to follow you and assist. $He's tired, so <<if ($activeSlave.amp == 1)>>you bring $his limbless torso along as a cum receptacle. Whenever you're about to finish in another slave, you pull out and fill $his mouth instead.<<else>>you let $him tag meekly along, masturbating gently as you use other slaves or just watching lazily. But whenever you're on the point of coming, you switch to $his mouth and let $him finish you with a few sucks and pumps of $his fatigued hands.<</if>> By the time you put the exhausted $activeSlave.slaveName to bed $he's in a haze of cum-induced pleasure. @@.hotpink;$He has become more submissive to you.@@
+		<<set $activeSlave.devotion += 4, $activeSlave.counter.oral += 5, $oralTotal += 5>>
 	<</replace>>
 <</link>>
 <<if ($cumSlaves >= 5)>>
-<br><<link "Give $him access to the Dairy's cockmilk">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-		You let $him know you have a sexual accessory for $him to use. This isn't too unusual, so $he comes to your office without much anticipation. $He doesn't understand why you have an enormous sealed canister of fresh cum on your desk, but when you explain that it's $hers to play with on the job, $he starts to bounce with excitement. Not all of $his customers are interested in cum play, but quite a few are, and $he spends almost as much time cleaning up the gorgeous messes that get made as $he does making them. It's a valuable and @@.yellowgreen;profitable@@ whore who @@.hotpink;looks forward@@ to $his next customer.
-		<<set $activeSlave.devotion += 10>>
-		<<run cashX(random(500,1000), "event", $activeSlave)>>
+	<br><<link "Give $him access to the Dairy's cockmilk">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You let $him know you have a sexual accessory for $him to use. This isn't too unusual, so $he comes to your office without much anticipation. $He doesn't understand why you have an enormous sealed canister of fresh cum on your desk, but when you explain that it's $hers to play with on the job, $he starts to bounce with excitement. Not all of $his customers are interested in cum play, but quite a few are, and $he spends almost as much time cleaning up the gorgeous messes that get made as $he does making them. It's a valuable and @@.yellowgreen;profitable@@ whore who @@.hotpink;looks forward@@ to $his next customer.
+			<<set $activeSlave.devotion += 10>>
+			<<run cashX(random(500,1000), "event", $activeSlave)>>
 		<</replace>>
-<</link>>
+	<</link>>
 <</if>>
 
 <<case "loose buttslut">>
@@ -8311,95 +8321,95 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Add something to fill $him completely">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He's so occupied that $he doesn't <<if canHear($activeSlave)>>hear you<<else>>sense your presence<</if>> until you<<if $PC.dick == 0>> don a strap-on and<</if>> tip $him over face forward. With $him on $his knees, $his dildo-stuffed ass is in the air; $he's still masturbating between $his legs. After a moment's consideration, you slide two exploratory fingers in alongside the dildo. $He gasps and masturbates harder. Thus encouraged, you shove <<if $PC.dick == 0>>the strap-on<<else>>your member<</if>> in alongside the dildo. <<if $activeSlave.voice != 0>>$He screams at the surprise double anal, sobbing and begging,<<else>>$He screams noiselessly at the surprise double anal, waving $his hands in distress,<</if>> but $he doesn't try to stop you and doggedly keeps rubbing. By the time you're finished $his asshole is a gaping hole much bigger than the average pussy. @@.hotpink;$He has become more submissive to you.@@
-	<<set $activeSlave.devotion += 4>>
-	<<= AnalVCheck()>>
+		$He's so occupied that $he doesn't <<if canHear($activeSlave)>>hear you<<else>>sense your presence<</if>> until you<<if $PC.dick == 0>> don a strap-on and<</if>> tip $him over face forward. With $him on $his knees, $his dildo-stuffed ass is in the air; $he's still masturbating between $his legs. After a moment's consideration, you slide two exploratory fingers in alongside the dildo. $He gasps and masturbates harder. Thus encouraged, you shove <<if $PC.dick == 0>>the strap-on<<else>>your member<</if>> in alongside the dildo. <<if $activeSlave.voice != 0>>$He screams at the surprise double anal, sobbing and begging,<<else>>$He screams noiselessly at the surprise double anal, waving $his hands in distress,<</if>> but $he doesn't try to stop you and doggedly keeps rubbing. By the time you're finished $his asshole is a gaping hole much bigger than the average pussy. @@.hotpink;$He has become more submissive to you.@@
+		<<set $activeSlave.devotion += 4>>
+		<<= AnalVCheck()>>
 	<</replace>>
 <</link>>
 <br><<link "Let $him use a machine">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	There's no reason for $him to do that in a quiet corner. You interrupt $him and bring $him into your office, setting $him up on a machine so $he can have that dildo rammed up $his ass for as long as $he likes. Your office is filled with the rhythmic sounds of a sloppy anus being pounded for a good long while.
-	<<if $assistant > 0>>
-		The
-		<<switch $assistantAppearance>>
-		<<case "monstergirl">>
-			monstrous voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "take my cocks, slave."
-		<<case "shemale">>
-			sultry voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "take my dick, bitch."
-		<<case "amazon">>
-			aggressive voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "be a warrior."
-		<<case "businesswoman">>
-			dominant voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "stop struggling and be a good $girl."
-		<<case "goddess" "hypergoddess">>
-			calming voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax and accept what you deserve, $girl."
-		<<case "loli">>
-			young, naïve voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax, it'll get better."
-		<<case "preggololi">>
-			young voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax, you know it'll be fun!"
-		<<case "angel">>
-			harmonous voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax, it'll be over soon."
-		<<case "cherub">>
-			cheerful voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax, it'll feel better if you do!"
-		<<case "incubus">>
-			forceful voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "take my dick, cocksleeve, take it till you split!"
-		<<case "succubus">>
-			sultry voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "enjoy the pounding while it lasts."
-		<<case "imp">>
-			mischievous voice of your assistant's avatar can also be heard, mocking $activeSlave.slaveName, "your butthole is going to be so loose after this! You'll be nothing more than a used up whore!"
-		<<case "witch">>
-			uncertain voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName, "just relax and get it over with."
-		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-			unclear voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName, "scream louder and let it fill your body completely."
-		<<case "schoolgirl">>
-			girly voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "be quiet, or Teacher will hear us."
-		<<default>>
-			poor slave is taken to the very limit by your assistant.
-		<</switch>>
-	<</if>>
-	By the time $he's climaxed out, $he's so tired and apathetic that $he can't bring $himself to get off it or ask for help, so $he just relaxes and enjoys the internal massage<<if $activeSlave.dick != 0>> while $his flaccid dick twitches weakly<</if>>. @@.mediumaquamarine;$He has become more trusting of you,@@ since you knew just what $he needed.
-	<<set $activeSlave.trust += 4, $activeSlave.counter.anal++, $analTotal++>>
+		There's no reason for $him to do that in a quiet corner. You interrupt $him and bring $him into your office, setting $him up on a machine so $he can have that dildo rammed up $his ass for as long as $he likes. Your office is filled with the rhythmic sounds of a sloppy anus being pounded for a good long while.
+		<<if $assistant > 0>>
+			The
+			<<switch $assistantAppearance>>
+			<<case "monstergirl">>
+				monstrous voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "take my cocks, slave."
+			<<case "shemale">>
+				sultry voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "take my dick, bitch."
+			<<case "amazon">>
+				aggressive voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "be a warrior."
+			<<case "businesswoman">>
+				dominant voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "stop struggling and be a good $girl."
+			<<case "goddess" "hypergoddess">>
+				calming voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax and accept what you deserve, $girl."
+			<<case "loli">>
+				young, naïve voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax, it'll get better."
+			<<case "preggololi">>
+				young voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax, you know it'll be fun!"
+			<<case "angel">>
+				harmonous voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax, it'll be over soon."
+			<<case "cherub">>
+				cheerful voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax, it'll feel better if you do!"
+			<<case "incubus">>
+				forceful voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "take my dick, cocksleeve, take it till you split!"
+			<<case "succubus">>
+				sultry voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "enjoy the pounding while it lasts."
+			<<case "imp">>
+				mischievous voice of your assistant's avatar can also be heard, mocking $activeSlave.slaveName, "your butthole is going to be so loose after this! You'll be nothing more than a used up whore!"
+			<<case "witch">>
+				uncertain voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName, "just relax and get it over with."
+			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+				unclear voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName, "scream louder and let it fill your body completely."
+			<<case "schoolgirl">>
+				girly voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "be quiet, or Teacher will hear us."
+			<<default>>
+				poor slave is taken to the very limit by your assistant.
+			<</switch>>
+		<</if>>
+		By the time $he's climaxed out, $he's so tired and apathetic that $he can't bring $himself to get off it or ask for help, so $he just relaxes and enjoys the internal massage<<if $activeSlave.dick != 0>> while $his flaccid dick twitches weakly<</if>>. @@.mediumaquamarine;$He has become more trusting of you,@@ since you knew just what $he needed.
+		<<set $activeSlave.trust += 4, $activeSlave.counter.anal++, $analTotal++>>
 	<</replace>>
 <</link>>
 <<if ($HeadGirl != 0) && ($HeadGirl.ID != $activeSlave.ID)>>
-<br><<link "Call your Head Girl in for double anal">>
-	<<setLocalPronouns $HeadGirl 2>>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	When $HeadGirl.slaveName comes into your office in response to your summons, _he2 finds $activeSlave.slaveName sitting in your lap with your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his gaping butt<<if $PC.vagina == 1>><<if $PC.dick == 1>>, your bare pussy very visible at the base of your working cock<</if>><</if>>. $HeadGirl.slaveName's expression softens when _he2 realizes _he2's here for pleasure, not business. $activeSlave.slaveName gasps a little when $he <<if canHear($activeSlave)>>hears you tell $HeadGirl.slaveName to join you up $his asshole,<<else>>feels you pull apart $his asscheeks to make some room for $HeadGirl.slaveName,<</if>> but $he doesn't protest.
-	<<if ($activeSlave.chastityPenis == 1)>>
-		Since your poor Head Girl can't use _his2 caged cock, _he2 takes a dildo and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
-	<<elseif canAchieveErection() && $HeadGirl.dick > 7>>
-		Even though your Head Girl is rock-hard and ready to fuck, _his2 cock is far too large to fit into even the most stretched slave's holes. Sighing, _he2 takes a dildo and shoves it up $activeSlave.slaveName's already-filled butt instead.
-	<<elseif canAchieveErection() && $HeadGirl.dick > 6>>
-		Your lusty Head Girl is already hard and forces _his2 oversized cock up $activeSlave.slaveName's already-filled butt while <<if $activeSlave.nipples != "fuckable">>tweaking<<else>>fingering<</if>> the moaning slave's nipples.
-	<<elseif ($HeadGirl.dick > 0) && ($HeadGirl.hormoneBalance >= 100)>>
-		Since your poor Head Girl can't get hard due to _his2 hormone therapy, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
-	<<elseif ($HeadGirl.dick > 0) && ($HeadGirl.balls > 0) && ($HeadGirl.ballType == "sterile")>>
-		Since your poor Head Girl can't get hard due to _his2 chemical castration, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado
-	<<elseif ($HeadGirl.dick > 0) && ($HeadGirl.balls == 0)>>
-		Since your poor Head Girl can't get hard due to _his2 orchiectomy, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
-	<<elseif !canAchieveErection($HeadGirl) && $HeadGirl.dick > 6>>
-		Since your poor Head Girl is far too big to get hard, much to $activeSlave.slaveName's disappointment, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
-	<<elseif !canAchieveErection($HeadGirl) && $HeadGirl.dick > 0>>
-		Since your poor Head Girl can't get it up for one reason or another, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
-	<<elseif $HeadGirl.dick > 0>>
-		Your lusty Head Girl is already hard and shoves _himself2 up $activeSlave.slaveName's already-filled butt while <<if $activeSlave.nipples != "fuckable">>tweaking<<else>>fingering<</if>> the writhing slave's nipples.
-	<<else>>
-		_He2 dons a strap-on and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
-	<</if>>
-	The two of you jackhammer in and out of $activeSlave.slaveName's ass without mercy; the poor anal whore does $his best to relax, but two phalli at once is a lot, even for $him. $He's only allowed an anal respite when $his sphincter is really fucked out and there's little butthole fun to be had from $him any longer. $He has become @@.hotpink;more submissive to you,@@ and $HeadGirl.slaveName @@.hotpink;enjoyed@@ taking a break to fuck $him with you.
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.anal += 2, $analTotal += 2>>
-	<<set $HeadGirl.devotion += 4, $HeadGirl.counter.penetrative++, $penetrativeTotal++>>
-	<<if canImpreg($activeSlave, $PC)>>
-		<<= knockMeUp($activeSlave, 5, 0, -1, 1)>>
-	<</if>>
-	<<if canImpreg($activeSlave, $HeadGirl)>>
-		<<= knockMeUp($activeSlave, 5, 0, $HeadGirl.ID, 1)>>
-	<</if>>
-	<<set $slaves[$slaveIndices[$HeadGirl.ID]] = $HeadGirl>>
-	<</replace>>
-<</link>>
+	<br><<link "Call your Head Girl in for double anal">>
+		<<setLocalPronouns $HeadGirl 2>>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			When $HeadGirl.slaveName comes into your office in response to your summons, _he2 finds $activeSlave.slaveName sitting in your lap with your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his gaping butt<<if $PC.vagina == 1>><<if $PC.dick == 1>>, your bare pussy very visible at the base of your working cock<</if>><</if>>. $HeadGirl.slaveName's expression softens when _he2 realizes _he2's here for pleasure, not business. $activeSlave.slaveName gasps a little when $he <<if canHear($activeSlave)>>hears you tell $HeadGirl.slaveName to join you up $his asshole,<<else>>feels you pull apart $his asscheeks to make some room for $HeadGirl.slaveName,<</if>> but $he doesn't protest.
+			<<if ($activeSlave.chastityPenis == 1)>>
+				Since your poor Head Girl can't use _his2 caged cock, _he2 takes a dildo and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
+			<<elseif canAchieveErection() && $HeadGirl.dick > 7>>
+				Even though your Head Girl is rock-hard and ready to fuck, _his2 cock is far too large to fit into even the most stretched slave's holes. Sighing, _he2 takes a dildo and shoves it up $activeSlave.slaveName's already-filled butt instead.
+			<<elseif canAchieveErection() && $HeadGirl.dick > 6>>
+				Your lusty Head Girl is already hard and forces _his2 oversized cock up $activeSlave.slaveName's already-filled butt while <<if $activeSlave.nipples != "fuckable">>tweaking<<else>>fingering<</if>> the moaning slave's nipples.
+			<<elseif ($HeadGirl.dick > 0) && ($HeadGirl.hormoneBalance >= 100)>>
+				Since your poor Head Girl can't get hard due to _his2 hormone therapy, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
+			<<elseif ($HeadGirl.dick > 0) && ($HeadGirl.balls > 0) && ($HeadGirl.ballType == "sterile")>>
+				Since your poor Head Girl can't get hard due to _his2 chemical castration, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado
+			<<elseif ($HeadGirl.dick > 0) && ($HeadGirl.balls == 0)>>
+				Since your poor Head Girl can't get hard due to _his2 orchiectomy, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
+			<<elseif !canAchieveErection($HeadGirl) && $HeadGirl.dick > 6>>
+				Since your poor Head Girl is far too big to get hard, much to $activeSlave.slaveName's disappointment, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
+			<<elseif !canAchieveErection($HeadGirl) && $HeadGirl.dick > 0>>
+				Since your poor Head Girl can't get it up for one reason or another, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
+			<<elseif $HeadGirl.dick > 0>>
+				Your lusty Head Girl is already hard and shoves _himself2 up $activeSlave.slaveName's already-filled butt while <<if $activeSlave.nipples != "fuckable">>tweaking<<else>>fingering<</if>> the writhing slave's nipples.
+			<<else>>
+				_He2 dons a strap-on and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
+			<</if>>
+			The two of you jackhammer in and out of $activeSlave.slaveName's ass without mercy; the poor anal whore does $his best to relax, but two phalli at once is a lot, even for $him. $He's only allowed an anal respite when $his sphincter is really fucked out and there's little butthole fun to be had from $him any longer. $He has become @@.hotpink;more submissive to you,@@ and $HeadGirl.slaveName @@.hotpink;enjoyed@@ taking a break to fuck $him with you.
+			<<set $activeSlave.devotion += 4, $activeSlave.counter.anal += 2, $analTotal += 2>>
+			<<set $HeadGirl.devotion += 4, $HeadGirl.counter.penetrative++, $penetrativeTotal++>>
+			<<if canImpreg($activeSlave, $PC)>>
+				<<= knockMeUp($activeSlave, 5, 0, -1, 1)>>
+			<</if>>
+			<<if canImpreg($activeSlave, $HeadGirl)>>
+				<<= knockMeUp($activeSlave, 5, 0, $HeadGirl.ID, 1)>>
+			<</if>>
+			<<set $slaves[$slaveIndices[$HeadGirl.ID]] = $HeadGirl>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "solitary desperation">>
@@ -8407,267 +8417,270 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Keep walking">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	As you walk away from the cell door, the pleas become a desperate, hopeless sobbing. In the coming days, it becomes apparent that $activeSlave.slaveName was right at the edge of a mental precipice when $he pled with you. @@.red;$He has sunk into mental incompetence.@@ $He's just a <<if $activeSlave.pregKnown == 1>>pregnant <</if>> piece of meat, now.
+		As you walk away from the cell door, the pleas become a desperate, hopeless sobbing. In the coming days, it becomes apparent that $activeSlave.slaveName was right at the edge of a mental precipice when $he pled with you. @@.red;$He has sunk into mental incompetence.@@ $He's just a <<if $activeSlave.pregKnown == 1>>pregnant <</if>> piece of meat, now.
 	<</replace>>
 	<<set $activeSlave.fetish = "mindbroken">>
 <</link>>
 <br><<link "Impersonate a slave and manipulate $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Kneeling next to the port in the cell door, you <<if $PC.title == 1>>set up a voice filter through the arcology systems to make your voice sound feminine.<<else>>abandon your usual commanding woman's tone of voice and adopt the inflections of a slave.<</if>> You sympathize with $activeSlave.slaveName, listening to $him pour out $his heart. $He despairs of being able to avoid punishment, and is afraid that you will hurt $him or sell $him to a cheap brothel<<if $activeSlave.pregKnown == 1>> or harm $his baby<</if>>. In your <<if $PC.title == 1>>fake female<<else>>slave's<</if>> voice, you encourage $him to keep trying, and you even give $him some useful advice about how to address $his faults. $He gathers $himself together and thanks you. Just then, you pop the door open, <<if canSee($activeSlave)>>revealing who you actually are and letting<<else>>and let<</if>> your voice return to <<if $PC.title == 1>>its masculine harshness<<else>>that of a confident and powerful woman<</if>>. When $he realizes the terrible truth, $he wordlessly prostrates $himself, trembling with terror. @@.gold;$His fear of you has increased.@@
+		Kneeling next to the port in the cell door, you <<if $PC.title == 1>>set up a voice filter through the arcology systems to make your voice sound feminine.<<else>>abandon your usual commanding woman's tone of voice and adopt the inflections of a slave.<</if>> You sympathize with $activeSlave.slaveName, listening to $him pour out $his heart. $He despairs of being able to avoid punishment, and is afraid that you will hurt $him or sell $him to a cheap brothel<<if $activeSlave.pregKnown == 1>> or harm $his baby<</if>>. In your <<if $PC.title == 1>>fake female<<else>>slave's<</if>> voice, you encourage $him to keep trying, and you even give $him some useful advice about how to address $his faults. $He gathers $himself together and thanks you. Just then, you pop the door open, <<if canSee($activeSlave)>>revealing who you actually are and letting<<else>>and let<</if>> your voice return to <<if $PC.title == 1>>its masculine harshness<<else>>that of a confident and powerful woman<</if>>. When $he realizes the terrible truth, $he wordlessly prostrates $himself, trembling with terror. @@.gold;$His fear of you has increased.@@
 	<</replace>>
 	<<set $activeSlave.trust -= 5>>
 <</link>>
 <<if $PC.belly < 5000>>
 	<<if $PC.dick == 1 && (canDoAnal($activeSlave) || canDoVaginal($activeSlave)) && canWalk($activeSlave)>>
-	<br><<link "Exploit $his need for personal contact">>
-		<<EventNameDelink $activeSlave>>
-		<<replace "#result">>
-		Without a word, you push your erect member through the hole and into the cell. After a moment's pause, you feel $him begin to orally service you with almost desperate concentration. You climax quickly to $his manic efforts, and begin to pull out. As you do, $he tearfully begs you not to go. $He promises something better, anything better, so you reinsert yourself, only to find that $he has $his
-		<<if canDoVaginal($activeSlave)>>
-			pussy
-		<<else>>
-			ass
-		<</if>>
-		pressed against the slot. You can't fuck $him all that hard through the door, so $he has to do the work. You begin to withdraw whenever $he shows $himself any mercy, so $he pounds $himself against you so hard that $he sobs a little even as you talk to $him, the lifeline $he so needs.
-		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>In $his desperation $he even guides your cock into $his butt, too, and without prompting.<</if>>
-		@@.hotpink;$His submission to you has increased.@@
-		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-			<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
-				It was thoughtful of $him to yield @@.lime;both $his virginity and anal cherry,@@ but it won't get $him out of there sooner.
-				<<set $activeSlave.vagina++, $activeSlave.anus++>>
-			<<elseif $activeSlave.vagina == 0>>
-				It was thoughtful of $him to yield @@.lime;$his virginity,@@ but it won't get $him out of there sooner.
-				<<set $activeSlave.vagina++>>
-			<<elseif $activeSlave.anus == 0>>
-				It was thoughtful of $him to yield @@.lime;$his anal cherry,@@ but it won't get $him out of there sooner.
-				<<set $activeSlave.anus++>>
-			<</if>>
-			<<set $activeSlave.counter.vaginal++, $vaginalTotal++, $activeSlave.counter.anal++, $analTotal++, $activeSlave.counter.oral++, $oralTotal++>>
-			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-				<<= knockMeUp($activeSlave, 10, 2, -1)>>
-			<</if>>
-		<<elseif canDoAnal($activeSlave)>>
-			<<if $activeSlave.anus == 0>>
-				It was thoughtful of $him to yield @@.lime;$his anal cherry,@@ but it won't get $him out of there sooner.
-				<<set $activeSlave.anus++>>
-			<</if>>
-			<<set $activeSlave.counter.anal++, $analTotal++, $activeSlave.counter.oral++, $oralTotal++>>
-			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-				<<= knockMeUp($activeSlave, 15, 1, -1)>>
-			<</if>>
-		<<else>>
-			<<if $activeSlave.vagina == 0>>
-				It was thoughtful of $him to yield @@.lime;$his virginity,@@ but it won't get $him out of there sooner.
-				<<set $activeSlave.vagina++>>
-			<</if>>
-			<<set $activeSlave.counter.vaginal++, $vaginalTotal++, $activeSlave.counter.oral++, $oralTotal++>>
-			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-				<<= knockMeUp($activeSlave, 15, 0, -1)>>
-			<</if>>
-		<</if>>
-		<<set $activeSlave.devotion += 10>>
-		<</replace>>
-	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+		<br><<link "Exploit $his need for personal contact">>
+			<<EventNameDelink $activeSlave>>
+			<<replace "#result">>
+				Without a word, you push your erect member through the hole and into the cell. After a moment's pause, you feel $him begin to orally service you with almost desperate concentration. You climax quickly to $his manic efforts, and begin to pull out. As you do, $he tearfully begs you not to go. $He promises something better, anything better, so you reinsert yourself, only to find that $he has $his
+				<<if canDoVaginal($activeSlave)>>
+					pussy
+				<<else>>
+					ass
+				<</if>>
+				pressed against the slot. You can't fuck $him all that hard through the door, so $he has to do the work. You begin to withdraw whenever $he shows $himself any mercy, so $he pounds $himself against you so hard that $he sobs a little even as you talk to $him, the lifeline $he so needs.
+				<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>In $his desperation $he even guides your cock into $his butt, too, and without prompting.<</if>>
+				@@.hotpink;$His submission to you has increased.@@
+				<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+					<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
+						It was thoughtful of $him to yield @@.lime;both $his virginity and anal cherry,@@ but it won't get $him out of there sooner.
+						<<set $activeSlave.vagina++, $activeSlave.anus++>>
+					<<elseif $activeSlave.vagina == 0>>
+						It was thoughtful of $him to yield @@.lime;$his virginity,@@ but it won't get $him out of there sooner.
+						<<set $activeSlave.vagina++>>
+					<<elseif $activeSlave.anus == 0>>
+						It was thoughtful of $him to yield @@.lime;$his anal cherry,@@ but it won't get $him out of there sooner.
+						<<set $activeSlave.anus++>>
+					<</if>>
+					<<set $activeSlave.counter.vaginal++, $vaginalTotal++, $activeSlave.counter.anal++, $analTotal++, $activeSlave.counter.oral++, $oralTotal++>>
+					<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+						<<= knockMeUp($activeSlave, 10, 2, -1)>>
+					<</if>>
+				<<elseif canDoAnal($activeSlave)>>
+					<<if $activeSlave.anus == 0>>
+						It was thoughtful of $him to yield @@.lime;$his anal cherry,@@ but it won't get $him out of there sooner.
+						<<set $activeSlave.anus++>>
+					<</if>>
+					<<set $activeSlave.counter.anal++, $analTotal++, $activeSlave.counter.oral++, $oralTotal++>>
+					<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+						<<= knockMeUp($activeSlave, 15, 1, -1)>>
+					<</if>>
+				<<else>>
+					<<if $activeSlave.vagina == 0>>
+						It was thoughtful of $him to yield @@.lime;$his virginity,@@ but it won't get $him out of there sooner.
+						<<set $activeSlave.vagina++>>
+					<</if>>
+					<<set $activeSlave.counter.vaginal++, $vaginalTotal++, $activeSlave.counter.oral++, $oralTotal++>>
+					<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+						<<= knockMeUp($activeSlave, 15, 0, -1)>>
+					<</if>>
+				<</if>>
+				<<set $activeSlave.devotion += 10>>
+			<</replace>>
+		<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 	<</if>>
 	<<if $PC.vagina == 1>>
 		<br><<link "Exploit $his need for personal contact by giving $him a pussy to lick">>
 			<<EventNameDelink $activeSlave>>
 			<<replace "#result">>
-			Without a word, you push your eager pussy up against the hole. After a moment's pause, you feel $him begin to orally service you with almost desperate concentration. You climax quickly to $his manic efforts, and begin to rise. As you do, $he tearfully begs you not to go. $He promises to do better, to try to get you off harder, so you lower yourself back into position. You have to exert yourself to hold this position, so it better be worth it. You begin to back off whenever $he shows $himself any mercy, so $he eats you out so zealously that $he sobs a little when $he tries to catch $his breath. With $his mouth so busy, $he doesn't even have the time to talk to you, the lifeline $he so needs, but $he doesn't seem to notice. @@.hotpink;$His submission to you has increased.@@
-			<<set $activeSlave.devotion += 10>>
+				Without a word, you push your eager pussy up against the hole. After a moment's pause, you feel $him begin to orally service you with almost desperate concentration. You climax quickly to $his manic efforts, and begin to rise. As you do, $he tearfully begs you not to go. $He promises to do better, to try to get you off harder, so you lower yourself back into position. You have to exert yourself to hold this position, so it better be worth it. You begin to back off whenever $he shows $himself any mercy, so $he eats you out so zealously that $he sobs a little when $he tries to catch $his breath. With $his mouth so busy, $he doesn't even have the time to talk to you, the lifeline $he so needs, but $he doesn't seem to notice. @@.hotpink;$His submission to you has increased.@@
+				<<set $activeSlave.devotion += 10>>
 			<</replace>>
 		<</link>>
 	<</if>>
 <</if>>
 <<if $PC.preg > 30 && $PC.pregMood == 1 && $PC.boobs == 1 && $PC.boobsImplant == 0 && $PC.boobsBonus >= 0>>
-	<br><<link "$He just needs a mother's touch">> <<EventNameDelink $activeSlave>> <<replace "#result">>
-		You reassure the frightened $desc and beckon $him to return to the hole before settling your gravid body before the door and pushing a fat, milk-laden breast through the gap. You coax the nervous $girl to drink $his fill; $he must be starving in there, after all. After some hesitation, you finally feel a pair of lips wrap themselves around your erect nipple and begin to drink deep. You talk to the suckling slave, explaining to $him just what $he needs to do to thrive in $his new life, shushing $him whenever $he tries to object and asking $him to just listen. Before long, your teat is drained of all its mother's milk, and as you move to shift to the other closer to the door, the desperate slave begs you not to go. You slip a hand through the slat, caressing $his face as you let $him know you're just turning around. As $he suckles your remaining milk, you feel $him @@.mediumaquamarine;relax and lower $his guard.@@ $He needed to connect to someone and $he didn't expect it to be you, especially like not this. @@.hotpink;$His willingness to listen to you has increased.@@
-		<<set $activeSlave.devotion += 15, $activeSlave.trust += 5>>
-	<</replace>> <</link>>
+	<br><<link "$He just needs a mother's touch">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You reassure the frightened $desc and beckon $him to return to the hole before settling your gravid body before the door and pushing a fat, milk-laden breast through the gap. You coax the nervous $girl to drink $his fill; $he must be starving in there, after all. After some hesitation, you finally feel a pair of lips wrap themselves around your erect nipple and begin to drink deep. You talk to the suckling slave, explaining to $him just what $he needs to do to thrive in $his new life, shushing $him whenever $he tries to object and asking $him to just listen. Before long, your teat is drained of all its mother's milk, and as you move to shift to the other closer to the door, the desperate slave begs you not to go. You slip a hand through the slat, caressing $his face as you let $him know you're just turning around. As $he suckles your remaining milk, you feel $him @@.mediumaquamarine;relax and lower $his guard.@@ $He needed to connect to someone and $he didn't expect it to be you, especially like not this. @@.hotpink;$His willingness to listen to you has increased.@@
+			<<set $activeSlave.devotion += 15, $activeSlave.trust += 5>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "scrubbing">>
 
 <<if canDoAnal($activeSlave)>>
-<<link "Use $his butt to help $him scrub">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	In accordance with the rules, $he
-	<<if $activeSlave.weight > 190 || $activeSlave.belly >= 100000>>
-		struggles
-	<<else>>
-		scrambles hurriedly
-	<</if>>
-	to $his feet when you enter and asks
-	<<if !canTalk($activeSlave)>>
-		in gestures how $he can serve you.
-	<<else>>
-		<<if ($activeSlave.lips > 70)>>
-			meekly through $his massive dick-sucking lips,
-		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-			meekly through $his inconvenient oral piercings,
-		<<else>>
-			meekly,
-		<</if>>
-		"<<Master>>, how may I <<s>>erve you?"
-	<</if>>
-	You instruct $him to go back to what $he was doing.
-	<<if $activeSlave.belly >= 150000>>
-		$He leans back over $his _belly stomach,
-	<<else>>
-		$He gets back to $his $activeSlave.skin knees,
-	<</if>>
-	puzzled, and then gasps when $he finds <<if $PC.dick == 0>>your fingers<<else>>your cockhead<</if>> pressing against $his rosebud. You instruct $his imperiously to get on with it, and $he soon understands your intent. $He scrubs back and forth, panting and moaning, as you buttfuck $him in time with $his labors<<if $PC.dick == 0>>, using your other hand to look after yourself<<elseif $PC.vagina == 1>>, using your other hand to schlick your pussy while you pound $him<</if>>. You even carefully scoot along with $him when $he needs to reach new spots. By the time $he's done $his arms and $his anus are very tired. $His submission to you @@.hotpink;has increased.@@
-	<<= AnalVCheck()>>
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<<link "Use $his butt to help $him scrub">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			In accordance with the rules, $he
+			<<if $activeSlave.weight > 190 || $activeSlave.belly >= 100000>>
+				struggles
+			<<else>>
+				scrambles hurriedly
+			<</if>>
+			to $his feet when you enter and asks
+			<<if !canTalk($activeSlave)>>
+				in gestures how $he can serve you.
+			<<else>>
+				<<if ($activeSlave.lips > 70)>>
+					meekly through $his massive dick-sucking lips,
+				<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
+					meekly through $his inconvenient oral piercings,
+				<<else>>
+					meekly,
+				<</if>>
+				"<<Master>>, how may I <<s>>erve you?"
+			<</if>>
+			You instruct $him to go back to what $he was doing.
+			<<if $activeSlave.belly >= 150000>>
+				$He leans back over $his _belly stomach,
+			<<else>>
+				$He gets back to $his $activeSlave.skin knees,
+			<</if>>
+			puzzled, and then gasps when $he finds <<if $PC.dick == 0>>your fingers<<else>>your cockhead<</if>> pressing against $his rosebud. You instruct $his imperiously to get on with it, and $he soon understands your intent. $He scrubs back and forth, panting and moaning, as you buttfuck $him in time with $his labors<<if $PC.dick == 0>>, using your other hand to look after yourself<<elseif $PC.vagina == 1>>, using your other hand to schlick your pussy while you pound $him<</if>>. You even carefully scoot along with $him when $he needs to reach new spots. By the time $he's done $his arms and $his anus are very tired. $His submission to you @@.hotpink;has increased.@@
+			<<= AnalVCheck()>>
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 <<if canDoVaginal($activeSlave)>>
-<br><<link "Avail yourself to $his pussy">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	In accordance with the rules, $he
-	<<if $activeSlave.weight > 190 || $activeSlave.belly >= 100000>>
-		struggles
-	<<else>>
-		scrambles hurriedly
-	<</if>>
-	to $his feet when you enter and asks
-	<<if !canTalk($activeSlave)>>
-		in gestures how $he can serve you.
-	<<else>>
-		<<if ($activeSlave.lips > 70)>>
-			meekly through $his massive dick-sucking lips,
-		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-			meekly through $his inconvenient oral piercings,
-		<<else>>
-			meekly,
-		<</if>>
-		"<<Master>>, how may I <<s>>erve you?"
-	<</if>>
-	You instruct $him to go back to what $he was doing.
-	<<if $activeSlave.belly >= 150000>>
-		$He leans back over $his _belly stomach,
-	<<else>>
-		$He gets back to $his $activeSlave.skin knees,
-	<</if>>
-	puzzled, and then gasps when $he finds <<if $PC.dick == 0>>your fingers<<else>>your cockhead<</if>> tracing $his pussy lips. You instruct $him imperiously to get on with it, and $he soon understands your intent. $He scrubs back and forth, panting and moaning, as you fuck $him in time with $his labors<<if $PC.dick == 0>>, using your other hand to look after yourself<<elseif $PC.vagina == 1>>, using your other hand to schlick your pussy while you pound $him<</if>>. You even carefully scoot along with $him when $he needs to reach new spots. By the time $he's done $his arms are very tired and $his legs struggling to hold $him. $His submission to you @@.hotpink;has increased.@@
-	<<= VaginalVCheck()>>
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>>
+	<br><<link "Avail yourself to $his pussy">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			In accordance with the rules, $he
+			<<if $activeSlave.weight > 190 || $activeSlave.belly >= 100000>>
+				struggles
+			<<else>>
+				scrambles hurriedly
+			<</if>>
+			to $his feet when you enter and asks
+			<<if !canTalk($activeSlave)>>
+				in gestures how $he can serve you.
+			<<else>>
+				<<if ($activeSlave.lips > 70)>>
+					meekly through $his massive dick-sucking lips,
+				<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
+					meekly through $his inconvenient oral piercings,
+				<<else>>
+					meekly,
+				<</if>>
+				"<<Master>>, how may I <<s>>erve you?"
+			<</if>>
+			You instruct $him to go back to what $he was doing.
+			<<if $activeSlave.belly >= 150000>>
+				$He leans back over $his _belly stomach,
+			<<else>>
+				$He gets back to $his $activeSlave.skin knees,
+			<</if>>
+			puzzled, and then gasps when $he finds <<if $PC.dick == 0>>your fingers<<else>>your cockhead<</if>> tracing $his pussy lips. You instruct $him imperiously to get on with it, and $he soon understands your intent. $He scrubs back and forth, panting and moaning, as you fuck $him in time with $his labors<<if $PC.dick == 0>>, using your other hand to look after yourself<<elseif $PC.vagina == 1>>, using your other hand to schlick your pussy while you pound $him<</if>>. You even carefully scoot along with $him when $he needs to reach new spots. By the time $he's done $his arms are very tired and $his legs struggling to hold $him. $His submission to you @@.hotpink;has increased.@@
+			<<= VaginalVCheck()>>
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
 <</if>>
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Give $him a bigger mess to deal with">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	In accordance with the rules, $he
-	<<if $activeSlave.weight > 190 || $activeSlave.belly >= 100000>>
-		struggles
-	<<else>>
-		scrambles hurriedly
-	<</if>>
-	to $his feet when you enter and asks
-	<<if !canTalk($activeSlave)>>
-		in gestures how $he can serve you.
-	<<else>>
-		<<if ($activeSlave.lips > 70)>>
-			meekly through $his massive dick-sucking lips,
-		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-			meekly through $his inconvenient oral piercings,
-		<<else>>
-			meekly,
-		<</if>>
-		"<<Master>>, how may I <<s>>erve you?"
-	<</if>>
-	You instruct $him to strip off $his apron and lay $his $activeSlave.skin back against the ground. $He does, and you empty a bottle of lubricant across $his entire body. $He gasps from the cold fluid. You slide around on the floor with $him, playfully scrubbing $his <<if $seeRace == 1>>$activeSlave.race <</if>>body around in the pool of lube, playing with $his wet breasts<<if ($activeSlave.belly >= 5000)>>, $his rounded <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>,<</if>> and $his lubricated thighs before
-	<<if $PC.dick == 0>>
-		wrestling the slick slave onto $his back so you can ride $his face while reaching down to spread $his legs and molest $his
-		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-			pussy and ass.
-		<<elseif canDoVaginal($activeSlave)>>
-			pussy.
-		<<else>>
-			ass.
-		<</if>>
-	<<else>>
-		sinking your cock into $his
-		<<if !canDoVaginal($activeSlave)>>now-slick butthole<<else>>now-slick pussy<<if canDoAnal($activeSlave)>> and then $his relaxing butthole<</if>><</if>><<if $PC.vagina == 1>>, followed by some grinding to coat $his face in your pussyjuice<</if>>.
-	<</if>>
-	$He had fun, though, and $his @@.hotpink;trust in you has increased.@@
-	<<= BothVCheck()>>
-	<<set $activeSlave.trust += 4>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>>
+	<br><<link "Give $him a bigger mess to deal with">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			In accordance with the rules, $he
+			<<if $activeSlave.weight > 190 || $activeSlave.belly >= 100000>>
+				struggles
+			<<else>>
+				scrambles hurriedly
+			<</if>>
+			to $his feet when you enter and asks
+			<<if !canTalk($activeSlave)>>
+				in gestures how $he can serve you.
+			<<else>>
+				<<if ($activeSlave.lips > 70)>>
+					meekly through $his massive dick-sucking lips,
+				<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
+					meekly through $his inconvenient oral piercings,
+				<<else>>
+					meekly,
+				<</if>>
+				"<<Master>>, how may I <<s>>erve you?"
+			<</if>>
+			You instruct $him to strip off $his apron and lay $his $activeSlave.skin back against the ground. $He does, and you empty a bottle of lubricant across $his entire body. $He gasps from the cold fluid. You slide around on the floor with $him, playfully scrubbing $his <<if $seeRace == 1>>$activeSlave.race <</if>>body around in the pool of lube, playing with $his wet breasts<<if ($activeSlave.belly >= 5000)>>, $his rounded <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>,<</if>> and $his lubricated thighs before
+			<<if $PC.dick == 0>>
+				wrestling the slick slave onto $his back so you can ride $his face while reaching down to spread $his legs and molest $his
+				<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+					pussy and ass.
+				<<elseif canDoVaginal($activeSlave)>>
+					pussy.
+				<<else>>
+					ass.
+				<</if>>
+			<<else>>
+				sinking your cock into $his
+				<<if !canDoVaginal($activeSlave)>>now-slick butthole<<else>>now-slick pussy<<if canDoAnal($activeSlave)>> and then $his relaxing butthole<</if>><</if>><<if $PC.vagina == 1>>, followed by some grinding to coat $his face in your pussyjuice<</if>>.
+			<</if>>
+			$He had fun, though, and $his @@.hotpink;trust in you has increased.@@
+			<<= BothVCheck()>>
+			<<set $activeSlave.trust += 4>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
 <</if>>
 <br><<link "Enjoy the view">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	In accordance with the rules, $he
-	<<if $activeSlave.weight > 190 || $activeSlave.belly >= 100000>>
-		struggles
-	<<else>>
-		scrambles hurriedly
-	<</if>>
-	to $his feet when you enter and asks
-	<<if !canTalk($activeSlave)>>
-		in gestures how $he can serve you.
-	<<else>>
-		<<if ($activeSlave.lips > 70)>>
-			meekly through $his massive dick-sucking lips,
-		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-			meekly through $his inconvenient oral piercings,
+		In accordance with the rules, $he
+		<<if $activeSlave.weight > 190 || $activeSlave.belly >= 100000>>
+			struggles
 		<<else>>
-			meekly,
+			scrambles hurriedly
 		<</if>>
-		"<<Master>>, how may I <<s>>erve you?"
-	<</if>>
-	You instruct $him to return to work as you pull up a seat to enjoy the view of $his
-	<<if $activeSlave.butt > 6>>
-		ridiculous
-	<<elseif $activeSlave.butt > 5>>
-		gigantic
-	<<elseif $activeSlave.butt > 4>>
-		enormous
-	<<elseif $activeSlave.butt > 3>>
-		huge
-	<<elseif $activeSlave.butt > 2>>
-		big
-	<<elseif $activeSlave.butt > 1>>
-		plump
-	<<elseif $activeSlave.butt > 0>>
-		small
-	<<else>>
-		flat
-	<</if>>
-	ass wiggling as $he cleans. It doesn't take long for the sight to leave you eager for some sexual attention, so you call the uncomfortable slave over to service you.
-	<<if !canTalk($activeSlave)>>
-		$He begins to sign but is cut short by you
-	<<else>>
-		"<<Master>>, what would you —" $he begins to <<say>> but is cut short by you gesturing to
-	<</if>>
-	<<if $PC.belly >= 10000>>
-		your swollen belly and commenting on how its ever growing surface could use a good polishing.
-		<<if $activeSlave.fetish == "pregnancy">>
-			<<if $activeSlave.fetishKnown == 1>>
-				$He wastes no time in rushing over to your firm dome and bringing $his tongue to your navel. $He happily massages your middle with surprising gusto, becoming intensely aroused as your child<<if $PC.pregType > 1>>ren begin<<else>> begins<</if>> to kick with excitement and even reaching orgasm just by being allowed to touch your belly. $He @@.mediumaquamarine;feels closer@@ to $his lovely, gravid, owner after being permitted to shower attention on the thing $he loves most.
-				<<set $activeSlave.trust += 5>>
+		to $his feet when you enter and asks
+		<<if !canTalk($activeSlave)>>
+			in gestures how $he can serve you.
+		<<else>>
+			<<if ($activeSlave.lips > 70)>>
+				meekly through $his massive dick-sucking lips,
+			<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
+				meekly through $his inconvenient oral piercings,
 			<<else>>
-				$He wastes no time in rushing over to your firm dome and bringing $his tongue to your navel. $He happily massages your middle with surprising gusto, becoming visibly aroused as your child<<if $PC.pregType > 1>>ren begin<<else>> begins<</if>> to kick with excitement. Once $he finishes $his first lap and returns to your belly button, $he spasms with an intense orgasm. @@.lightcoral;$He clearly adores pregnant women.@@
-				<<set $activeSlave.fetishKnown = 1>>
+				meekly,
 			<</if>>
+			"<<Master>>, how may I <<s>>erve you?"
+		<</if>>
+		You instruct $him to return to work as you pull up a seat to enjoy the view of $his
+		<<if $activeSlave.butt > 6>>
+			ridiculous
+		<<elseif $activeSlave.butt > 5>>
+			gigantic
+		<<elseif $activeSlave.butt > 4>>
+			enormous
+		<<elseif $activeSlave.butt > 3>>
+			huge
+		<<elseif $activeSlave.butt > 2>>
+			big
+		<<elseif $activeSlave.butt > 1>>
+			plump
+		<<elseif $activeSlave.butt > 0>>
+			small
 		<<else>>
-			$He does so diligently, making sure to not miss <<if $showInches == 2>>an inch<<else>>a centimeter<</if>> while keeping your enjoyment above all else.
+			flat
 		<</if>>
-	<<elseif $PC.dick == 1>>
-		your erect dick and commenting on how it could use a good cleaning. $He carefully takes your cock into $his mouth, doing $his best to bring you to a quick orgasm so $he can escape your gaze. After downing your cum, $he attempts to pull back, but you hold $him down, clearly $he has more work to do here.
-	<<elseif $PC.vagina == 1>>
-		your soaked pussy and commenting on how someone needs to clean up after it, preferably with their tongue. $He carefully $his tongue to your clit, doing $his best to bring you to a quick orgasm so $he can escape your gaze. After bring you to a rather unsatisfying climax, $he attempts to pull back, but you grab $him and force $him to lick the depths of your pussy.
-	<</if>>
-	By the time you are satisfied with $his efforts, $he @@.hotpink;has become more submissive to you.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
+		ass wiggling as $he cleans. It doesn't take long for the sight to leave you eager for some sexual attention, so you call the uncomfortable slave over to service you.
+		<<if !canTalk($activeSlave)>>
+			$He begins to sign but is cut short by you
+		<<else>>
+			"<<Master>>, what would you —" $he begins to <<say>> but is cut short by you gesturing to
+		<</if>>
+		<<if $PC.belly >= 10000>>
+			your swollen belly and commenting on how its ever growing surface could use a good polishing.
+			<<if $activeSlave.fetish == "pregnancy">>
+				<<if $activeSlave.fetishKnown == 1>>
+					$He wastes no time in rushing over to your firm dome and bringing $his tongue to your navel. $He happily massages your middle with surprising gusto, becoming intensely aroused as your child<<if $PC.pregType > 1>>ren begin<<else>> begins<</if>> to kick with excitement and even reaching orgasm just by being allowed to touch your belly. $He @@.mediumaquamarine;feels closer@@ to $his lovely, gravid, owner after being permitted to shower attention on the thing $he loves most.
+					<<set $activeSlave.trust += 5>>
+				<<else>>
+					$He wastes no time in rushing over to your firm dome and bringing $his tongue to your navel. $He happily massages your middle with surprising gusto, becoming visibly aroused as your child<<if $PC.pregType > 1>>ren begin<<else>> begins<</if>> to kick with excitement. Once $he finishes $his first lap and returns to your belly button, $he spasms with an intense orgasm. @@.lightcoral;$He clearly adores pregnant women.@@
+					<<set $activeSlave.fetishKnown = 1>>
+				<</if>>
+			<<else>>
+				$He does so diligently, making sure to not miss <<if $showInches == 2>>an inch<<else>>a centimeter<</if>> while keeping your enjoyment above all else.
+			<</if>>
+		<<elseif $PC.dick == 1>>
+			your erect dick and commenting on how it could use a good cleaning. $He carefully takes your cock into $his mouth, doing $his best to bring you to a quick orgasm so $he can escape your gaze. After downing your cum, $he attempts to pull back, but you hold $him down, clearly $he has more work to do here.
+		<<elseif $PC.vagina == 1>>
+			your soaked pussy and commenting on how someone needs to clean up after it, preferably with their tongue. $He carefully $his tongue to your clit, doing $his best to bring you to a quick orgasm so $he can escape your gaze. After bring you to a rather unsatisfying climax, $he attempts to pull back, but you grab $him and force $him to lick the depths of your pussy.
+		<</if>>
+		By the time you are satisfied with $his efforts, $he @@.hotpink;has become more submissive to you.@@
+		<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
 
@@ -8676,35 +8689,35 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Give $him some vasodilators so $he can get relief">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You give $him a shot and send $him on $his way. Within a few minutes it gives $him a raging hard-on that lasts for hours. $He spends every spare moment masturbating furiously. Of course, this is a temporary solution, and will just make the eventual return of $his problem more disappointing. @@.mediumorchid;$He is bitterly frustrated.@@
-	<<set $activeSlave.devotion -= 5>>
+		You give $him a shot and send $him on $his way. Within a few minutes it gives $him a raging hard-on that lasts for hours. $He spends every spare moment masturbating furiously. Of course, this is a temporary solution, and will just make the eventual return of $his problem more disappointing. @@.mediumorchid;$He is bitterly frustrated.@@
+		<<set $activeSlave.devotion -= 5>>
 	<</replace>>
 <</link>>
 <br><<link "Sissy slave <<= $girl>>s don't need to climax to serve">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You explain patiently that $he needs to stop focusing on getting off. $He's a sex slave, and what matters is that $he pleasures others. If $he doesn't climax $himself, that's unfortunate but not really significant. $He looks terribly forlorn, so to drive home the point you push $him down to the floor, give $him a rough facefuck, and send $him away with tousled hair, <<if $PC.dick == 0>>a tired tongue<<else>>a mouthful of ejaculate<</if>>, and the same limp dick as before. @@.mediumorchid;It's frustrating for $him.@@
-	<<set $activeSlave.devotion -= 2>>
-	<<if ($activeSlave.clitSetting != $activeSlave.fetish)>>
-		But, $he slowly @@.lightcoral;accepts $his new role as a submissive little sex toy.@@
-		<<set $activeSlave.fetishStrength = 65, $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.fetish = "submissive">>
-	<</if>>
-	<<set $activeSlave.counter.oral++, $oralTotal++>>
+		You explain patiently that $he needs to stop focusing on getting off. $He's a sex slave, and what matters is that $he pleasures others. If $he doesn't climax $himself, that's unfortunate but not really significant. $He looks terribly forlorn, so to drive home the point you push $him down to the floor, give $him a rough facefuck, and send $him away with tousled hair, <<if $PC.dick == 0>>a tired tongue<<else>>a mouthful of ejaculate<</if>>, and the same limp dick as before. @@.mediumorchid;It's frustrating for $him.@@
+		<<set $activeSlave.devotion -= 2>>
+		<<if ($activeSlave.clitSetting != $activeSlave.fetish)>>
+			But, $he slowly @@.lightcoral;accepts $his new role as a submissive little sex toy.@@
+			<<set $activeSlave.fetishStrength = 65, $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.fetish = "submissive">>
+		<</if>>
+		<<set $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
 <<if $activeSlave.prostate != 0 && canDoAnal($activeSlave)>>
-<br><<link "Prostate stimulation ought to do the trick">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You explain that $he will have to find a new way to climax to be a happy little shemale slut. As you do, you push $him against a wall and force $him up on tiptoe so that $his butt is conveniently positioned, and then ram <<if $PC.dick == 0>>a vibrating strap-on<<else>>yourself<</if>> up $his ass. $He squeals and dances against the wall on tiptoe, impaled on your <<if $PC.dick == 0>>fake cock<<else>>member<</if>>. $He doesn't climax to anal then, or the next time you assfuck $him, or the time after that; but some time later a long buttsex session ends when $he gives a little shake and a whimper and dribbles a pathetic squirt of cum from $his still-limp dick. By the end of the week @@.mediumaquamarine;$he's smiling trustingly@@ and offering you $his butt every chance $he gets.
-	<<= AnalVCheck(10)>>
-	<<set $activeSlave.trust += 4>>
-	<<if ($activeSlave.clitSetting != $activeSlave.fetish)>>
-		@@.lightcoral;$He's become a confirmed anal addict.@@
-		<<set $activeSlave.fetishStrength = 65, $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.fetish = "buttslut">>
-	<</if>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave))>> //This option will take virginity//<</if>>
+	<br><<link "Prostate stimulation ought to do the trick">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You explain that $he will have to find a new way to climax to be a happy little shemale slut. As you do, you push $him against a wall and force $him up on tiptoe so that $his butt is conveniently positioned, and then ram <<if $PC.dick == 0>>a vibrating strap-on<<else>>yourself<</if>> up $his ass. $He squeals and dances against the wall on tiptoe, impaled on your <<if $PC.dick == 0>>fake cock<<else>>member<</if>>. $He doesn't climax to anal then, or the next time you assfuck $him, or the time after that; but some time later a long buttsex session ends when $he gives a little shake and a whimper and dribbles a pathetic squirt of cum from $his still-limp dick. By the end of the week @@.mediumaquamarine;$he's smiling trustingly@@ and offering you $his butt every chance $he gets.
+			<<= AnalVCheck(10)>>
+			<<set $activeSlave.trust += 4>>
+			<<if ($activeSlave.clitSetting != $activeSlave.fetish)>>
+				@@.lightcoral;$He's become a confirmed anal addict.@@
+				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.fetish = "buttslut">>
+			<</if>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 
 <<case "resting amp">>
@@ -8712,22 +8725,22 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Check on $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Since $he's limbless<<if $activeSlave.pregKnown == 1>> and pregnant<</if>>, $his health is more fragile than most slaves'. You look in on $him, and when $he continues to shiver, you pull the sheets back around $him, tucking $him in in such a way that $he can lie comfortably. In the morning $he doesn't understand why $he's so snug and well-rested, but @@.green;$his health improves with decent sleep.@@
-	<<set $activeSlave.health += 10>>
+		Since $he's limbless<<if $activeSlave.pregKnown == 1>> and pregnant<</if>>, $his health is more fragile than most slaves'. You look in on $him, and when $he continues to shiver, you pull the sheets back around $him, tucking $him in in such a way that $he can lie comfortably. In the morning $he doesn't understand why $he's so snug and well-rested, but @@.green;$his health improves with decent sleep.@@
+		<<set $activeSlave.health += 10>>
 	<</replace>>
 <</link>>
 <br><<link "Keep $him warm">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You spoon $him gently from behind, spending the night sleeping with $his <<if $activeSlave.bellyPreg >= 5000>>pregnant<<else>>limbless<</if>> torso cradled in your arms. $He snuggles against you in $his sleep, enjoying the animal warmth. When $he wakes in the morning, $he is surprised to <<if canSee($activeSlave)>>see<<else>>find<</if>> that it's you keeping $him company, but after a few moments' confusion $he accepts the unlooked-for comfort and goes back to sleep. @@.mediumaquamarine;$He has become more trusting of you.@@
-	<<set $activeSlave.trust += 4>>
+		You spoon $him gently from behind, spending the night sleeping with $his <<if $activeSlave.bellyPreg >= 5000>>pregnant<<else>>limbless<</if>> torso cradled in your arms. $He snuggles against you in $his sleep, enjoying the animal warmth. When $he wakes in the morning, $he is surprised to <<if canSee($activeSlave)>>see<<else>>find<</if>> that it's you keeping $him company, but after a few moments' confusion $he accepts the unlooked-for comfort and goes back to sleep. @@.mediumaquamarine;$He has become more trusting of you.@@
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Leave $him be">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	In the morning, $his lips are blue and $he's nearly unresponsive. Your other slaves get $him working again, but @@.red;$his health has been damaged.@@
-	<<set $activeSlave.health -= 10>>
+		In the morning, $his lips are blue and $he's nearly unresponsive. Your other slaves get $him working again, but @@.red;$his health has been damaged.@@
+		<<set $activeSlave.health -= 10>>
 	<</replace>>
 <</link>>
 
@@ -8737,74 +8750,74 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 	<<link "Carry $him over to your work">>
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
-		Since you're so busy, you find a way of working and seeing to your sex toy both. You scoop $him up, eliciting whimpers of joy at the impending relief,
-		<<if $PC.dick == 0>>
-			and move over to the couch so you can work lying down. You sit $him on top of you, reversed so $his head is between your legs for a little oral service, and slide a dildo
+			Since you're so busy, you find a way of working and seeing to your sex toy both. You scoop $him up, eliciting whimpers of joy at the impending relief,
+			<<if $PC.dick == 0>>
+				and move over to the couch so you can work lying down. You sit $him on top of you, reversed so $his head is between your legs for a little oral service, and slide a dildo
+				<<if canDoVaginal($activeSlave)>>
+					into $his pussy so you can tease $him at leisure when you have a spare moment.
+					<<= VaginalVCheck()>>
+				<<else>>
+					up $his butt so you can sodomize $him at leisure when you have a spare moment.
+					<<= AnalVCheck()>>
+				<</if>>
+			<<else>>
+				and sit back down at your desk. You slide $him onto your erect member and carefully secure $him with a few straps so $he can serve as your living cocksleeve as you see to your business.
+			<</if>>
+			There isn't much thrusting as you continue with your affairs, but $he's so horny $he doesn't need it. @@.hotpink;$He has become more submissive to you.@@ There's no telling what the day's faceless business interlocutors would think if they knew the person on the other side of their communications had <<if $PC.dick == 0>>a limbless slave gently sucking _hisP clit while they spoke with _himP<<else>>_hisP cock inside a limbless slave as _heP dealt with them<</if>>.
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
+<</if>>
+<<if ($PC.dick == 1) && (canDoAnal($activeSlave) || canDoVaginal($activeSlave)) && $PC.belly < 100>>
+	<br><<link "Carry $him outside">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			<<if $activeSlave.belly >= 600000>>
+				You struggle to heft $his overfilled body up, eliciting whimpers of joy at the impending relief and the pressure removed from $his body, and carefully secure $him with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> forcing you to experience what it is like to carry $activeSlave.pregType children,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<elseif canHear($activeSlave)>>explaining the sights as $activeSlave.slaveName soaks in the sounds <<if canSmell($activeSlave)>>and smells <</if>>$he now requires assistance to experience<<else>>explaining everything around $him as $he basks in the feeling of the fresh air on $his $activeSlave.skin skin<</if>> and leaving a large wake as people make room for your gravid mass. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything,@@ once they figure out that the belly attached to you is, in fact, owned by a barely visible slave<<= $girl>>.
+			<<elseif $activeSlave.belly >= 300000>>
+				You heft $his heavy body $him up, eliciting whimpers of joy at the impending relief, and carefully secure $him with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> massively jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<elseif canHear($activeSlave)>>explaining the sights as $activeSlave.slaveName soaks in the sounds <<if canSmell($activeSlave)>>and smells <</if>>$he now requires assistance to experience<<else>>explaining everything around $him as $he basks in the feeling of the fresh air on $his $activeSlave.skin skin<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@
+			<<else>>
+				You scoop $him up, eliciting whimpers of joy at the impending relief, and carefully secure $him with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you walk outside brings $him to climax within a few steps. You take your time and stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<elseif canHear($activeSlave)>>explaining the sights as $activeSlave.slaveName soaks in the sounds <<if canSmell($activeSlave)>>and smells <</if>>$he now requires assistance to experience<<else>>explaining everything around $him as $he basks in the feeling of the fresh air on $his $activeSlave.skin skin<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you walking around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@
+			<</if>>
+			<<set $activeSlave.devotion += 4>>
+			<<run repX(500, "event", $activeSlave)>>
 			<<if canDoVaginal($activeSlave)>>
-				into $his pussy so you can tease $him at leisure when you have a spare moment.
 				<<= VaginalVCheck()>>
 			<<else>>
-				up $his butt so you can sodomize $him at leisure when you have a spare moment.
 				<<= AnalVCheck()>>
 			<</if>>
-		<<else>>
-			and sit back down at your desk. You slide $him onto your erect member and carefully secure $him with a few straps so $he can serve as your living cocksleeve as you see to your business.
-		<</if>>
-		There isn't much thrusting as you continue with your affairs, but $he's so horny $he doesn't need it. @@.hotpink;$He has become more submissive to you.@@ There's no telling what the day's faceless business interlocutors would think if they knew the person on the other side of their communications had <<if $PC.dick == 0>>a limbless slave gently sucking _hisP clit while they spoke with _himP<<else>>_hisP cock inside a limbless slave as _heP dealt with them<</if>>.
-		<<set $activeSlave.devotion += 4>>
 		<</replace>>
-	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
-<</if>>
-<<if ($PC.dick == 1) && (canDoAnal($activeSlave) || canDoVaginal($activeSlave)) && $PC.belly < 100>>
-<br><<link "Carry $him outside">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	<<if $activeSlave.belly >= 600000>>
-		You struggle to heft $his overfilled body up, eliciting whimpers of joy at the impending relief and the pressure removed from $his body, and carefully secure $him with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> forcing you to experience what it is like to carry $activeSlave.pregType children,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<elseif canHear($activeSlave)>>explaining the sights as $activeSlave.slaveName soaks in the sounds <<if canSmell($activeSlave)>>and smells <</if>>$he now requires assistance to experience<<else>>explaining everything around $him as $he basks in the feeling of the fresh air on $his $activeSlave.skin skin<</if>> and leaving a large wake as people make room for your gravid mass. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything,@@ once they figure out that the belly attached to you is, in fact, owned by a barely visible slave<<= $girl>>.
-	<<elseif $activeSlave.belly >= 300000>>
-		You heft $his heavy body $him up, eliciting whimpers of joy at the impending relief, and carefully secure $him with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> massively jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<elseif canHear($activeSlave)>>explaining the sights as $activeSlave.slaveName soaks in the sounds <<if canSmell($activeSlave)>>and smells <</if>>$he now requires assistance to experience<<else>>explaining everything around $him as $he basks in the feeling of the fresh air on $his $activeSlave.skin skin<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@
-	<<else>>
-		You scoop $him up, eliciting whimpers of joy at the impending relief, and carefully secure $him with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you walk outside brings $him to climax within a few steps. You take your time and stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<elseif canHear($activeSlave)>>explaining the sights as $activeSlave.slaveName soaks in the sounds <<if canSmell($activeSlave)>>and smells <</if>>$he now requires assistance to experience<<else>>explaining everything around $him as $he basks in the feeling of the fresh air on $his $activeSlave.skin skin<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you walking around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@
-	<</if>>
-	<<set $activeSlave.devotion += 4>>
-	<<run repX(500, "event", $activeSlave)>>
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 <br><<link "See how high $his arousal will go">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You scoop $him up, eliciting whimpers of joy at the impending relief. $He moans with disappointment, however, to find $himself laid unceremoniously across your desk as you return to your work. You surreptitiously set your desk to monitor $his vital signs and gauge $his closeness to orgasm. Whenever you can do so without tipping $his over, you gently run your fingers across a helpless nipple, across $his <<if $activeSlave.vagina == -1>>groin<<else>>moist lips<</if>>,<<if $activeSlave.belly >= 10000>> around the edge of $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly,<<elseif $activeSlave.belly >= 1500>> over the peak of $his <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly,<</if>> or along $his surgical scars.
-	<<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
-		After so much of this that $he's clearly ready to orgasm at the slightest further touch, you gently massage $his nether lips with a single finger and $he comes spastically, abdominal muscles quivering. $His pussy relaxes and opens naturally; taking the cue, you pick $him up and lower $him, <<if $showInches == 2>>inch<<else>>centimeter<</if>> by moaning <<if $showInches == 2>>inch<<else>>centimeter<</if>>, onto <<if $PC.dick == 0>>a strap-on you put on while playing with $his<<else>>your cock<</if>>.
-		<<= VaginalVCheck()>>
-		After pumping $his helpless torso up and down with your arms, a parody of masturbation with $his helpless body,
-	<<elseif canDoAnal($activeSlave) && $activeSlave.anus > 0>>
-		After so much of this that $he's clearly ready to orgasm at the slightest further touch, you gently massage $his anus with a single finger and $he comes spastically, abdominal muscles quivering. $His sphincter relaxes and opens naturally; taking the cue, you pick $him up and lower $his rectum, <<if $showInches == 2>>inch<<else>>centimeter<</if>> by sobbing <<if $showInches == 2>>inch<<else>>centimeter<</if>>, onto <<if $PC.dick == 0>>a strap-on you put on while playing with $his<<else>>your cock<</if>>.
-		<<= AnalVCheck()>>
-		After pumping $his helpless torso up and down with your arms, a parody of masturbation with $his helpless body,
-	<<else>>
-		After so much of this that $he's clearly ready to orgasm at the slightest further touch, you grab $his
-		<<if $activeSlave.boobs > 8000>>
-			massive tits
-		<<elseif ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
-			fake tits
-		<<elseif $activeSlave.boobs > 2000>>
-			huge boobs
-		<<elseif $activeSlave.boobs > 400>>
-			boobs
-		<<else>>
-			petite chest
+		You scoop $him up, eliciting whimpers of joy at the impending relief. $He moans with disappointment, however, to find $himself laid unceremoniously across your desk as you return to your work. You surreptitiously set your desk to monitor $his vital signs and gauge $his closeness to orgasm. Whenever you can do so without tipping $his over, you gently run your fingers across a helpless nipple, across $his <<if $activeSlave.vagina == -1>>groin<<else>>moist lips<</if>>,<<if $activeSlave.belly >= 10000>> around the edge of $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly,<<elseif $activeSlave.belly >= 1500>> over the peak of $his <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly,<</if>> or along $his surgical scars.
+		<<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
+			After so much of this that $he's clearly ready to orgasm at the slightest further touch, you gently massage $his nether lips with a single finger and $he comes spastically, abdominal muscles quivering. $His pussy relaxes and opens naturally; taking the cue, you pick $him up and lower $him, <<if $showInches == 2>>inch<<else>>centimeter<</if>> by moaning <<if $showInches == 2>>inch<<else>>centimeter<</if>>, onto <<if $PC.dick == 0>>a strap-on you put on while playing with $his<<else>>your cock<</if>>.
+			<<= VaginalVCheck()>>
+			After pumping $his helpless torso up and down with your arms, a parody of masturbation with $his helpless body,
+		<<elseif canDoAnal($activeSlave) && $activeSlave.anus > 0>>
+			After so much of this that $he's clearly ready to orgasm at the slightest further touch, you gently massage $his anus with a single finger and $he comes spastically, abdominal muscles quivering. $His sphincter relaxes and opens naturally; taking the cue, you pick $him up and lower $his rectum, <<if $showInches == 2>>inch<<else>>centimeter<</if>> by sobbing <<if $showInches == 2>>inch<<else>>centimeter<</if>>, onto <<if $PC.dick == 0>>a strap-on you put on while playing with $his<<else>>your cock<</if>>.
+			<<= AnalVCheck()>>
+			After pumping $his helpless torso up and down with your arms, a parody of masturbation with $his helpless body,
+		<<else>>
+			After so much of this that $he's clearly ready to orgasm at the slightest further touch, you grab $his
+			<<if $activeSlave.boobs > 8000>>
+				massive tits
+			<<elseif ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
+				fake tits
+			<<elseif $activeSlave.boobs > 2000>>
+				huge boobs
+			<<elseif $activeSlave.boobs > 400>>
+				boobs
+			<<else>>
+				petite chest
+			<</if>>
+			and $he comes spastically, soaking $himself and your desk with fluids. Once you tire of vigorously groping $him,
 		<</if>>
-		and $he comes spastically, soaking $himself and your desk with fluids. Once you tire of vigorously groping $him,
-	<</if>>
-	you carry your toy to the shower to wash $him. @@.mediumaquamarine;$He has become more trusting of you.@@
-	<<set $activeSlave.trust += 4>>
+		you carry your toy to the shower to wash $him. @@.mediumaquamarine;$He has become more trusting of you.@@
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 
@@ -8813,22 +8826,22 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "It's $his role to hurt">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Without a word, you<<if $PC.dick == 0>> don a cruelly knobby strap-on,<</if>> throw $him onto the couch, take both $his ankles in one hand, and force them back over $his head so $his poor, doomed asshole is completely defenseless. You then spit on $his hole, seize your <<if $PC.dick == 0>>instrument<<else>>rock-hard dick<<if $PC.vagina == 1>>, gather a little of your own pussyjuice and rub it on your cockhead<</if>><</if>>, and shove it up the wriggling slave $girl's spasming rectum. You've got the necessary skill to judge exactly where the line between anal pain and anal injury is, and you take $his right up to it. Halfway through the long anal rape $he gives up struggling and just goes limp, sobbing. $He @@.hotpink;fears you,@@ and has also begun to @@.red;hate buttsex.@@
-	<<set $activeSlave.trust -= 5, $activeSlave.sexualFlaw = "hates anal", $activeSlave.counter.anal++, $analTotal++>>
+		Without a word, you<<if $PC.dick == 0>> don a cruelly knobby strap-on,<</if>> throw $him onto the couch, take both $his ankles in one hand, and force them back over $his head so $his poor, doomed asshole is completely defenseless. You then spit on $his hole, seize your <<if $PC.dick == 0>>instrument<<else>>rock-hard dick<<if $PC.vagina == 1>>, gather a little of your own pussyjuice and rub it on your cockhead<</if>><</if>>, and shove it up the wriggling slave $girl's spasming rectum. You've got the necessary skill to judge exactly where the line between anal pain and anal injury is, and you take $his right up to it. Halfway through the long anal rape $he gives up struggling and just goes limp, sobbing. $He @@.hotpink;fears you,@@ and has also begun to @@.red;hate buttsex.@@
+		<<set $activeSlave.trust -= 5, $activeSlave.sexualFlaw = "hates anal", $activeSlave.counter.anal++, $analTotal++>>
 	<</replace>>
 <</link>>
 <br><<link "Punish $him for disobedience, but address $his anal pain">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You patiently and calmly explain to $him that disobeying orders isn't acceptable, but that too much pain from $his buttplug is a sign that something isn't right. First, you inform $him, $he will have to be punished for the disobedience, since $he should have brought $his trouble to you instead of disobeying. $He's almost willing as you bend $him over <<if $activeSlave.belly >= 300000>>$his _belly middle<<else>>the desk<</if>> and spank $his buttocks severely, unsure whether to resent the corporal punishment or appreciate your measured response. When you're done tanning $his ass, $he's surprised to feel a cool, lubricated digit working its way into $his anus. $He stiffens a little but eventually relaxes enough to take the finger, then two, and finally three, before you gently and slowly emplace $his plug. You instruct $him kindly on how to relax in the future when $he inserts it on $his own. $He @@.hotpink;appreciates@@ your approach.
-	<<set $activeSlave.devotion += 4>>
+		You patiently and calmly explain to $him that disobeying orders isn't acceptable, but that too much pain from $his buttplug is a sign that something isn't right. First, you inform $him, $he will have to be punished for the disobedience, since $he should have brought $his trouble to you instead of disobeying. $He's almost willing as you bend $him over <<if $activeSlave.belly >= 300000>>$his _belly middle<<else>>the desk<</if>> and spank $his buttocks severely, unsure whether to resent the corporal punishment or appreciate your measured response. When you're done tanning $his ass, $he's surprised to feel a cool, lubricated digit working its way into $his anus. $He stiffens a little but eventually relaxes enough to take the finger, then two, and finally three, before you gently and slowly emplace $his plug. You instruct $him kindly on how to relax in the future when $he inserts it on $his own. $He @@.hotpink;appreciates@@ your approach.
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Address $his worrisome anal pain">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You kindly explain how to relax and prepare one's asshole for such insertions. $He's been told already, but you make $him fetch $his plug and go through the steps in front of you so you can check $his approach. $He leaves reminded how to wear $his plug, but @@.mediumaquamarine;secretly relieved@@ $he got away with disobedience with nothing more than a lecture.
-	<<set $activeSlave.trust += 4>>
+		You kindly explain how to relax and prepare one's asshole for such insertions. $He's been told already, but you make $him fetch $his plug and go through the steps in front of you so you can check $his approach. $He leaves reminded how to wear $his plug, but @@.mediumaquamarine;secretly relieved@@ $he got away with disobedience with nothing more than a lecture.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 
@@ -8837,227 +8850,227 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Go out clubbing to make $him feel young again">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You call out to stop $him, and $he turns obediently to listen; you tell $him to take the day off and meet you that evening for a trip to $arcologies[0].name's most fashionable nightclub. You emphasize slightly that it's a place you prefer to enjoy with a young slave, and $his eyes widen a little at the implied compliment and challenge. Right at the proper time, $he arrives in your office wearing neon $activeSlave.hColor makeup to match $his hair, and a tiny iridescent clubgirl outfit of the same color. The hem of the skirt is barely low enough to conceal $him <<if ($activeSlave.dick > 0)>>dick<<elseif $activeSlave.vagina == -1>>total lack of private parts<<else>>pussy<</if>>, and it's backless. The front is held up by a halter around $his pretty neck, and is <<if ($activeSlave.boobs > 2000)>>specially tailored to cover $his massive tits<<elseif ($activeSlave.boobs > 1000)>>strained by $his big tits<<elseif ($activeSlave.boobs > 300)>>tightly filled by $his healthy tits<<else>>tight against $his flat chest<</if>><<if $activeSlave.belly >= 1500>> and _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>>. $He makes a gaudy and very fashionable spectacle, and in response to your <<if canSee($activeSlave)>>look<<elseif canHear($activeSlave)>>whistle<<else>>gentle poke<</if>> $he raises both arms over $his head and twirls, shimmying $his body deliciously.
-	"I hope they let me into the club without checking my I.D., <<Master>>," $he jokes,
-	for which $he receives a swat on $his rear as you head out. With the full day of rest, $he is full of vigor and ready to dance. $He eagerly heads out onto the floor with you,
-	<<if ($activeSlave.skill.entertainment >= 100)>>
-		masterfully moving $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, grabbing the attention of all the men and most of the women in $clubName.
-	<<elseif ($activeSlave.skill.entertainment > 60)>>
-		expertly moving $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, mesmerizing $his neighbors on the floor.
-	<<elseif ($activeSlave.skill.entertainment > 30)>>
-		skillfully moving $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, drawing a lustful gaze or two.
-	<<else>>
-		clumsily moving <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> $his body to the heavy beat, attracting little notice among the press of novices.
-	<</if>>
-	It doesn't take long for $him to back $himself into you so $he can grind; $he cranes $his neck back to plant an @@.hotpink;earnest kiss@@ on your chin.
-	<<set $activeSlave.devotion += 4>>
+		You call out to stop $him, and $he turns obediently to listen; you tell $him to take the day off and meet you that evening for a trip to $arcologies[0].name's most fashionable nightclub. You emphasize slightly that it's a place you prefer to enjoy with a young slave, and $his eyes widen a little at the implied compliment and challenge. Right at the proper time, $he arrives in your office wearing neon $activeSlave.hColor makeup to match $his hair, and a tiny iridescent clubgirl outfit of the same color. The hem of the skirt is barely low enough to conceal $him <<if ($activeSlave.dick > 0)>>dick<<elseif $activeSlave.vagina == -1>>total lack of private parts<<else>>pussy<</if>>, and it's backless. The front is held up by a halter around $his pretty neck, and is <<if ($activeSlave.boobs > 2000)>>specially tailored to cover $his massive tits<<elseif ($activeSlave.boobs > 1000)>>strained by $his big tits<<elseif ($activeSlave.boobs > 300)>>tightly filled by $his healthy tits<<else>>tight against $his flat chest<</if>><<if $activeSlave.belly >= 1500>> and _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>>. $He makes a gaudy and very fashionable spectacle, and in response to your <<if canSee($activeSlave)>>look<<elseif canHear($activeSlave)>>whistle<<else>>gentle poke<</if>> $he raises both arms over $his head and twirls, shimmying $his body deliciously.
+		"I hope they let me into the club without checking my I.D., <<Master>>," $he jokes,
+		for which $he receives a swat on $his rear as you head out. With the full day of rest, $he is full of vigor and ready to dance. $He eagerly heads out onto the floor with you,
+		<<if ($activeSlave.skill.entertainment >= 100)>>
+			masterfully moving $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, grabbing the attention of all the men and most of the women in $clubName.
+		<<elseif ($activeSlave.skill.entertainment > 60)>>
+			expertly moving $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, mesmerizing $his neighbors on the floor.
+		<<elseif ($activeSlave.skill.entertainment > 30)>>
+			skillfully moving $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, drawing a lustful gaze or two.
+		<<else>>
+			clumsily moving <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> $his body to the heavy beat, attracting little notice among the press of novices.
+		<</if>>
+		It doesn't take long for $him to back $himself into you so $he can grind; $he cranes $his neck back to plant an @@.hotpink;earnest kiss@@ on your chin.
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Attend a sporting event with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You call out to stop $him, and $he turns obediently to listen; you tell $him $he'll be spending the day with you at a game outside the arcology, and $he's to meet you at your VTOL pad in two hours. $He ponders for a moment but clearly understands this is related to $his age, somehow. Right at the proper time, $he arrives on the pad. $He's clearly spent the whole time getting the right clothing; somehow $he used the clothing inventory system to find a cheerleader uniform from the home team. It's one size too small, though you're unsure whether this is intentional or not. The hem of the pleated cheerleader skirt is barely low enough to conceal $his <<if ($activeSlave.dick > 0)>>dick<<elseif $activeSlave.vagina == -1>>lack of private parts<<else>>pussy<</if>>, and $he bounces a little on $his heels for you to show off how $he's going commando underneath it. $His
-	<<if ($activeSlave.belly >= 100000)>>
-		_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>
-	<<elseif ($activeSlave.weight > 130)>>
-		hugely soft
-	<<elseif ($activeSlave.belly >= 1500)>>
-		_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>
-	<<elseif ($activeSlave.muscles > 30)>>
-		ripped
-	<<elseif ($activeSlave.weight > 30)>>
-		fat
-	<<elseif ($activeSlave.weight > 10)>>
-		plush
-	<<else>>
-		taut
-	<</if>>
-	midriff is bare. The top <<if ($activeSlave.boobs > 2000)>>somehow contains $his tits, with the team's logo at least three feet wide across $his chest<<elseif ($activeSlave.boobs > 1000)>>is a great location for the team's logo, since $his tits allow it to be quite large<<elseif ($activeSlave.boobs > 300)>>is a good location for the team's logo, since $his tits allow it to be pretty big<<else>>flatters $his flat chest, especially with the team logo over it<</if>>. $He even found a pair of appropriately colored pom-poms somewhere. The implicit message about age was understood; $he's made up to look even younger.
-	<br><br>
-	You have a front-row seat, of course, and $he excitedly takes $his place beside you,
-	<<if $activeSlave.butt > 12>>
-		thankful that you reserved a seat for both of $his massive cheeks.
-	<<elseif $activeSlave.belly >= 300000>>
-		thankful that the front row has plenty of room for $his _belly belly to occupy.
-	<<elseif $activeSlave.butt > 6>>
-		carefully fitting $his big bottom into the seat.
-	<<elseif $activeSlave.boobs > 4000>>
-		$his absurd boobs rubbing against your arm.
-	<</if>>
-	$He cheers lustily at all the right moments, earning repeated crowd focus shots on the big screen; many fans wonder who their ridiculously hot fellow fan is before @@.green;recognizing you,@@ putting two and two together, and realizing enviously that $he's your sex slave. Since this is the Free Cities, the big screen gives $him more attention rather than cutting away when $he intentionally cheers hard enough that $his skirt rides up.
-	<<if $activeSlave.broodmother == 2 && $activeSlave.preg > 37>>
-		The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, facing away from the game and goes into labor on another of $his brood; the contractions forcing $him to lean forward onto $his _belly stomach and give the players below a clear view of $his crowning child.
-	<<elseif $activeSlave.belly < 300000>>
-		The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, facing away from the game and bending down to show cleavage to the stands in such a way that $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice ass<</if>> lifts $his skirt up enough that the players below can clearly see $his <<if ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin asshole<</if>><<if $activeSlave.vagina > 3>> and gaping pussy<<elseif $activeSlave.vagina > 2>> and used pussy<<elseif $activeSlave.vagina > 1>> and lovely pussy<<elseif $activeSlave.vagina > 0>> and tight pussy<<elseif $activeSlave.vagina == 0>> and virgin pussy<</if>>.
-	<<else>>
-		The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, cheering while swinging $his absurd belly back and forth and accidentally smashes into a concession vendor sending them to the floor. $His efforts to help him up forces $him to stand in such a way that $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice ass<</if>> lifts $his skirt up enough that the players below can clearly see $his <<if ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin asshole<</if>><<if $activeSlave.vagina > 3>> and gaping pussy<<elseif $activeSlave.vagina > 2>> and used pussy<<elseif $activeSlave.vagina > 1>> and lovely pussy<<elseif $activeSlave.vagina > 0>> and tight pussy<<elseif $activeSlave.vagina == 0>> and virgin pussy<</if>>.
-	<</if>>
-	A player from the visiting team is distracted enough to blow a play. Any fans who might have been inclined to disapprove forget their objections when the home team capitalizes on the mistake to score.
-	<<run repX(500, "event", $activeSlave)>>
+		You call out to stop $him, and $he turns obediently to listen; you tell $him $he'll be spending the day with you at a game outside the arcology, and $he's to meet you at your VTOL pad in two hours. $He ponders for a moment but clearly understands this is related to $his age, somehow. Right at the proper time, $he arrives on the pad. $He's clearly spent the whole time getting the right clothing; somehow $he used the clothing inventory system to find a cheerleader uniform from the home team. It's one size too small, though you're unsure whether this is intentional or not. The hem of the pleated cheerleader skirt is barely low enough to conceal $his <<if ($activeSlave.dick > 0)>>dick<<elseif $activeSlave.vagina == -1>>lack of private parts<<else>>pussy<</if>>, and $he bounces a little on $his heels for you to show off how $he's going commando underneath it. $His
+		<<if ($activeSlave.belly >= 100000)>>
+			_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>
+		<<elseif ($activeSlave.weight > 130)>>
+			hugely soft
+		<<elseif ($activeSlave.belly >= 1500)>>
+			_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>
+		<<elseif ($activeSlave.muscles > 30)>>
+			ripped
+		<<elseif ($activeSlave.weight > 30)>>
+			fat
+		<<elseif ($activeSlave.weight > 10)>>
+			plush
+		<<else>>
+			taut
+		<</if>>
+		midriff is bare. The top <<if ($activeSlave.boobs > 2000)>>somehow contains $his tits, with the team's logo at least three feet wide across $his chest<<elseif ($activeSlave.boobs > 1000)>>is a great location for the team's logo, since $his tits allow it to be quite large<<elseif ($activeSlave.boobs > 300)>>is a good location for the team's logo, since $his tits allow it to be pretty big<<else>>flatters $his flat chest, especially with the team logo over it<</if>>. $He even found a pair of appropriately colored pom-poms somewhere. The implicit message about age was understood; $he's made up to look even younger.
+		<br><br>
+		You have a front-row seat, of course, and $he excitedly takes $his place beside you,
+		<<if $activeSlave.butt > 12>>
+			thankful that you reserved a seat for both of $his massive cheeks.
+		<<elseif $activeSlave.belly >= 300000>>
+			thankful that the front row has plenty of room for $his _belly belly to occupy.
+		<<elseif $activeSlave.butt > 6>>
+			carefully fitting $his big bottom into the seat.
+		<<elseif $activeSlave.boobs > 4000>>
+			$his absurd boobs rubbing against your arm.
+		<</if>>
+		$He cheers lustily at all the right moments, earning repeated crowd focus shots on the big screen; many fans wonder who their ridiculously hot fellow fan is before @@.green;recognizing you,@@ putting two and two together, and realizing enviously that $he's your sex slave. Since this is the Free Cities, the big screen gives $him more attention rather than cutting away when $he intentionally cheers hard enough that $his skirt rides up.
+		<<if $activeSlave.broodmother == 2 && $activeSlave.preg > 37>>
+			The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, facing away from the game and goes into labor on another of $his brood; the contractions forcing $him to lean forward onto $his _belly stomach and give the players below a clear view of $his crowning child.
+		<<elseif $activeSlave.belly < 300000>>
+			The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, facing away from the game and bending down to show cleavage to the stands in such a way that $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice ass<</if>> lifts $his skirt up enough that the players below can clearly see $his <<if ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin asshole<</if>><<if $activeSlave.vagina > 3>> and gaping pussy<<elseif $activeSlave.vagina > 2>> and used pussy<<elseif $activeSlave.vagina > 1>> and lovely pussy<<elseif $activeSlave.vagina > 0>> and tight pussy<<elseif $activeSlave.vagina == 0>> and virgin pussy<</if>>.
+		<<else>>
+			The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, cheering while swinging $his absurd belly back and forth and accidentally smashes into a concession vendor sending them to the floor. $His efforts to help him up forces $him to stand in such a way that $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice ass<</if>> lifts $his skirt up enough that the players below can clearly see $his <<if ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin asshole<</if>><<if $activeSlave.vagina > 3>> and gaping pussy<<elseif $activeSlave.vagina > 2>> and used pussy<<elseif $activeSlave.vagina > 1>> and lovely pussy<<elseif $activeSlave.vagina > 0>> and tight pussy<<elseif $activeSlave.vagina == 0>> and virgin pussy<</if>>.
+		<</if>>
+		A player from the visiting team is distracted enough to blow a play. Any fans who might have been inclined to disapprove forget their objections when the home team capitalizes on the mistake to score.
+		<<run repX(500, "event", $activeSlave)>>
 	<</replace>>
 <</link>>
 <br><<link "Put the old whore in $his place">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You call out to stop $him, and $he turns obediently to listen. You tell $him you're interested to see if $his old body can still perform. Something about the way you say 'old' makes $him flinch, and $he's right to worry. You tell $him to go out and make you <<print cashFormat(200)>>, and to hurry back if $he wants to avoid punishment. $He hesitates for an instant before hurrying outside. A few hours later you check on $him remotely. The feed shows $him <<if $activeSlave.belly >= 10000>>waddle<<else>>walk<</if>> quickly up to a couple out on the street; you can't hear what's said, but $he
-	<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-		turns around to rub $his bare butt against the crotch of the man's pants. He pulls them down and fucks $him right there<<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>>@@.lime;taking $his virginity@@<<set _didVaginal = 1>><<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>>@@.lime;taking $his anal virginity@@<<set _didAnal = 1>><</if>>, as the woman <<if $activeSlave.nipples != "fuckable">>pulls and abuses<<else>>roughly fingers<</if>> $his poor nipples. Boring of this, he switches to torturing the poor slave's
-		<<if ($activeSlave.dick > 0)>>
-			dick,
-		<<elseif $activeSlave.vagina == -1>>
-			butthole,
+		You call out to stop $him, and $he turns obediently to listen. You tell $him you're interested to see if $his old body can still perform. Something about the way you say 'old' makes $him flinch, and $he's right to worry. You tell $him to go out and make you <<print cashFormat(200)>>, and to hurry back if $he wants to avoid punishment. $He hesitates for an instant before hurrying outside. A few hours later you check on $him remotely. The feed shows $him <<if $activeSlave.belly >= 10000>>waddle<<else>>walk<</if>> quickly up to a couple out on the street; you can't hear what's said, but $he
+		<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
+			turns around to rub $his bare butt against the crotch of the man's pants. He pulls them down and fucks $him right there<<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>>@@.lime;taking $his virginity@@<<set _didVaginal = 1>><<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>>@@.lime;taking $his anal virginity@@<<set _didAnal = 1>><</if>>, as the woman <<if $activeSlave.nipples != "fuckable">>pulls and abuses<<else>>roughly fingers<</if>> $his poor nipples. Boring of this, he switches to torturing the poor slave's
+			<<if ($activeSlave.dick > 0)>>
+				dick,
+			<<elseif $activeSlave.vagina == -1>>
+				butthole,
+			<<else>>
+				pussy,
+			<</if>>
+			slapping $him until $he cries and then making out with the weeping whore. Much later, $activeSlave.slaveName limps tiredly into your office and gives you your @@.yellowgreen;<<print cashFormat(200)>>.@@ You ask $him how $he's feeling, and $he mumbles, "I'm OK, <<Master>>. Hole<<s>> are pretty <<s>>ore though. Kinda loo<<s>>e."
 		<<else>>
-			pussy,
+			drops to $his knees to nuzzle against the man's pants. He pulls them down and facefucks $him right there, as the woman <<if $activeSlave.nipples != "fuckable">>pulls and abuses<<else>>roughly fingers<</if>> $his poor nipples. Boring of this, $he switches to torturing the poor slave's
+			<<if ($activeSlave.dick > 0)>>
+				dick,
+			<<elseif $activeSlave.vagina == -1>>
+				butthole,
+			<<else>>
+				pussy,
+			<</if>>
+			slapping $him until $he cries and then making out with the weeping whore. Much later, $activeSlave.slaveName limps tiredly into your office and gives you your @@.yellowgreen;<<print cashFormat(200)>>.@@ You ask $him how $he's feeling, and $he mumbles, "I'm OK, <<Master>>. My jaw kinda hurt<<s>> and my leg<<s>> are really <<s>>ore."
 		<</if>>
-		slapping $him until $he cries and then making out with the weeping whore. Much later, $activeSlave.slaveName limps tiredly into your office and gives you your @@.yellowgreen;<<print cashFormat(200)>>.@@ You ask $him how $he's feeling, and $he mumbles, "I'm OK, <<Master>>. Hole<<s>> are pretty <<s>>ore though. Kinda loo<<s>>e."
-	<<else>>
-		drops to $his knees to nuzzle against the man's pants. He pulls them down and facefucks $him right there, as the woman <<if $activeSlave.nipples != "fuckable">>pulls and abuses<<else>>roughly fingers<</if>> $his poor nipples. Boring of this, $he switches to torturing the poor slave's
-		<<if ($activeSlave.dick > 0)>>
-			dick,
-		<<elseif $activeSlave.vagina == -1>>
-			butthole,
+		You tell $him that's of little concern, since $he has relatively few years of use left: you may as well extract what value you can from $him. $He's too exhausted to hide $his response, and collapses, @@.gold;sobbing.@@
+		<<run cashX(200, "event", $activeSlave)>>
+		<<set $activeSlave.trust -= 5, $activeSlave.counter.publicUse++>>
+		<<if _didAnal == 1>>
+			<<set $activeSlave.counter.anal++, $activeSlave.anus++, $analTotal++>>
+			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
+				<<= knockMeUp($activeSlave, 10, 1, -2)>>
+			<</if>>
+		<<elseif _didVaginal == 1>>
+			<<set $activeSlave.counter.vaginal++, $activeSlave.vagina++, $vaginalTotal++>>
+			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
+				<<= knockMeUp($activeSlave, 10, 0, -2)>>
+			<</if>>
+		<<elseif canDoVaginal($activeSlave)>>
+			<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
+			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
+				<<= knockMeUp($activeSlave, 10, 0, -2)>>
+			<</if>>
+		<<elseif canDoAnal($activeSlave)>>
+			<<set $activeSlave.counter.anal++, $analTotal++>>
+			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
+				<<= knockMeUp($activeSlave, 10, 1, -2)>>
+			<</if>>
 		<<else>>
-			pussy,
-		<</if>>
-		slapping $him until $he cries and then making out with the weeping whore. Much later, $activeSlave.slaveName limps tiredly into your office and gives you your @@.yellowgreen;<<print cashFormat(200)>>.@@ You ask $him how $he's feeling, and $he mumbles, "I'm OK, <<Master>>. My jaw kinda hurt<<s>> and my leg<<s>> are really <<s>>ore."
-	<</if>>
-	You tell $him that's of little concern, since $he has relatively few years of use left: you may as well extract what value you can from $him. $He's too exhausted to hide $his response, and collapses, @@.gold;sobbing.@@
-	<<run cashX(200, "event", $activeSlave)>>
-	<<set $activeSlave.trust -= 5, $activeSlave.counter.publicUse++>>
-	<<if _didAnal == 1>>
-		<<set $activeSlave.counter.anal++, $activeSlave.anus++, $analTotal++>>
-		<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
-			<<= knockMeUp($activeSlave, 10, 1, -2)>>
-		<</if>>
-	<<elseif _didVaginal == 1>>
-		<<set $activeSlave.counter.vaginal++, $activeSlave.vagina++, $vaginalTotal++>>
-		<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
-			<<= knockMeUp($activeSlave, 10, 0, -2)>>
-		<</if>>
-	<<elseif canDoVaginal($activeSlave)>>
-		<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
-		<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
-			<<= knockMeUp($activeSlave, 10, 0, -2)>>
-		<</if>>
-	<<elseif canDoAnal($activeSlave)>>
-		<<set $activeSlave.counter.anal++, $analTotal++>>
-		<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
-			<<= knockMeUp($activeSlave, 10, 1, -2)>>
+			<<set $activeSlave.counter.oral++, $oralTotal++>>
 		<</if>>
-	<<else>>
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<</if>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 
 <<case "shift masturbation">>
 
 <<link "Leave $him to it">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You have work to do. You ignore the shameless slut, who gets $himself off in no time at all,
-	<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave.balls == 0)>>
-		$his limp dick dribbling cum onto $his<<if $activeSlave.pregKnown == 1>> pregnant<</if>> stomach.
-	<<elseif $activeSlave.dick > 0>>
-		orgasming so strongly $he manages to hit $himself in the face with $his own cum.
-	<<elseif $activeSlave.vagina == -1>>
-		indulging in the anal self-stimulation that's $his best remaining avenue to an orgasm.
-	<<else>>
-		the smell of female pleasure filling the office.
-	<</if>>
-	$He gets up, washes $himself off and rearranges $his body on the couch again, languidly this time. $He returns to masturbating, gently playing with $himself with one hand and <<if $activeSlave.nipples != "fuckable">>teasing<<else>>fingering<</if>> a nipple with the other.
+		You have work to do. You ignore the shameless slut, who gets $himself off in no time at all,
+		<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave.balls == 0)>>
+			$his limp dick dribbling cum onto $his<<if $activeSlave.pregKnown == 1>> pregnant<</if>> stomach.
+		<<elseif $activeSlave.dick > 0>>
+			orgasming so strongly $he manages to hit $himself in the face with $his own cum.
+		<<elseif $activeSlave.vagina == -1>>
+			indulging in the anal self-stimulation that's $his best remaining avenue to an orgasm.
+		<<else>>
+			the smell of female pleasure filling the office.
+		<</if>>
+		$He gets up, washes $himself off and rearranges $his body on the couch again, languidly this time. $He returns to masturbating, gently playing with $himself with one hand and <<if $activeSlave.nipples != "fuckable">>teasing<<else>>fingering<</if>> a nipple with the other.
 	<</replace>>
 <</link>>
 <br><<link "Lend $him some assistance">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You stand and ask $him mockingly if $he could use some assistance. $He gapes at you for a lust-hazed moment before nodding happily,
-	<<if !canTalk($activeSlave)>>
-		gesturing $his thanks.
-	<<else>>
-		squealing, "Ye<<s>> plea<<s>>e, <<Master>>!"
-	<</if>>
-	$He stops wanking and takes $his hands away, laying $himself wide for you like a horny human buffet. You make a show of selecting, but decide on $his
-	<<if canDoVaginal($activeSlave)>>
-		<<if $activeSlave.vagina > 2>>
-			slutty pussy.
-		<<elseif $activeSlave.vagina > 1>>
-			experienced pussy.
+		You stand and ask $him mockingly if $he could use some assistance. $He gapes at you for a lust-hazed moment before nodding happily,
+		<<if !canTalk($activeSlave)>>
+			gesturing $his thanks.
 		<<else>>
-			tight pussy.
+			squealing, "Ye<<s>> plea<<s>>e, <<Master>>!"
 		<</if>>
-		<<set _didVaginal = 1>>
-	<<else>>
-		<<if $activeSlave.anus > 2>>
-			slutty anal slit.
-		<<elseif $activeSlave.anus > 1>>
-			well prepared asshole.
+		$He stops wanking and takes $his hands away, laying $himself wide for you like a horny human buffet. You make a show of selecting, but decide on $his
+		<<if canDoVaginal($activeSlave)>>
+			<<if $activeSlave.vagina > 2>>
+				slutty pussy.
+			<<elseif $activeSlave.vagina > 1>>
+				experienced pussy.
+			<<else>>
+				tight pussy.
+			<</if>>
+			<<set _didVaginal = 1>>
 		<<else>>
-			still-tight butt.
+			<<if $activeSlave.anus > 2>>
+				slutty anal slit.
+			<<elseif $activeSlave.anus > 1>>
+				well prepared asshole.
+			<<else>>
+				still-tight butt.
+			<</if>>
+			<<set _didAnal = 1>>
+		<</if>>
+		$He calmed down a little while offering $himself to you, so $he manages not to climax immediately when you <<if $PC.dick == 0>>push your strap-on into $him<<else>>thrust your dick into $him<</if>>, but $he's in a rare mood. You reward $him by guiding $his hands back to $his crotch as you ramp up the pace, at which $he looks up at you with something like wordless glee. $He goes back to
+		<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
+			playing with $his limp dick,
+		<<elseif $activeSlave.dick > 4>>
+			jerking off $his giant cock,
+		<<elseif $activeSlave.dick > 2>>
+			jerking off,
+		<<elseif $activeSlave.dick > 0>>
+			teasing $his girly little dick,
+		<<elseif $activeSlave.clit > 0>>
+			jerking off $his ridiculous clit,
+		<<elseif $activeSlave.labia > 0>>
+			spreading and teasing $his petals,
+		<<elseif $activeSlave.vagina == -1>>
+			playing with $his asspussy,
+		<<else>>
+			rubbing $his clit,
+		<</if>>
+		<<if !canTalk($activeSlave)>>
+			making little raspy pleasure noises.
+		<<else>>
+			mewling with pleasure.
+		<</if>>
+		When you're finally done, $he's fairly tired, but $he manages to give $his <<if $activeSlave.butt > 5>>huge<<elseif $activeSlave.butt > 2>>big<<else>>cute<</if>>, well-fucked butt a little wiggle for you, @@.mediumaquamarine;<<if canSee($activeSlave)>>looking<<else>>smiling<</if>> at you gratefully,@@ as $he skips off to wash.
+		<<set $activeSlave.trust += 4>>
+		<<if _didAnal == 1>>
+			<<= AnalVCheck()>>
+		<<elseif _didVaginal == 1>>
+			<<= VaginalVCheck()>>
 		<</if>>
-		<<set _didAnal = 1>>
-	<</if>>
-	$He calmed down a little while offering $himself to you, so $he manages not to climax immediately when you <<if $PC.dick == 0>>push your strap-on into $him<<else>>thrust your dick into $him<</if>>, but $he's in a rare mood. You reward $him by guiding $his hands back to $his crotch as you ramp up the pace, at which $he looks up at you with something like wordless glee. $He goes back to
-	<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-		playing with $his limp dick,
-	<<elseif $activeSlave.dick > 4>>
-		jerking off $his giant cock,
-	<<elseif $activeSlave.dick > 2>>
-		jerking off,
-	<<elseif $activeSlave.dick > 0>>
-		teasing $his girly little dick,
-	<<elseif $activeSlave.clit > 0>>
-		jerking off $his ridiculous clit,
-	<<elseif $activeSlave.labia > 0>>
-		spreading and teasing $his petals,
-	<<elseif $activeSlave.vagina == -1>>
-		playing with $his asspussy,
-	<<else>>
-		rubbing $his clit,
-	<</if>>
-	<<if !canTalk($activeSlave)>>
-		making little raspy pleasure noises.
-	<<else>>
-		mewling with pleasure.
-	<</if>>
-	When you're finally done, $he's fairly tired, but $he manages to give $his <<if $activeSlave.butt > 5>>huge<<elseif $activeSlave.butt > 2>>big<<else>>cute<</if>>, well-fucked butt a little wiggle for you, @@.mediumaquamarine;<<if canSee($activeSlave)>>looking<<else>>smiling<</if>> at you gratefully,@@ as $he skips off to wash.
-	<<set $activeSlave.trust += 4>>
-	<<if _didAnal == 1>>
-		<<= AnalVCheck()>>
-	<<elseif _didVaginal == 1>>
-		<<= VaginalVCheck()>>
-	<</if>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <br><<link "Show the slut off">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	It takes a trifling command at your desk to surreptitiously slave one of the office cameras to $his impromptu masturbation session, and send the feed to many of the public screens. After a few minutes, <<if canSee($activeSlave)>>$he notices the setup through one of the office's glass walls<<else>>you inform the eager masturbator that $his show is live across the arcology<</if>>.
-	<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-		$He climaxes almost instantly at the realization, which plays right into $his fetish.
-	<<else>>
-		$He pauses for a moment at the realization, but goes back to $his business, blushing a little harder.
-	<</if>>
-	$He even plays it up a little for $his audience; when $he
-	<<if ($activeSlave.belly >= 120000) && ($activeSlave.dick > 0)>>
-		climaxes, $he makes sure they can see the way $his enormously distended body spasms with orgasm.
-	<<elseif ($activeSlave.belly >= 10000) && ($activeSlave.dick > 0)>>
-		finally orgasms, $he attempts to hike $his hips over $his head and direct the cum into $his mouth. However, $his <<if $activeSlave.bellyPreg >= 5000>>advanced pregnancy<<else>>_belly belly<</if>> thwarts $his efforts and $he ends up cumming on $his stomach's underside. $He brushes some cum off with $his fingers and brings it to $his mouth, smiling at the <<if canTaste($activeSlave)>>taste<<else>>sensation<</if>>.
-	<<elseif ($activeSlave.dick > 0) && ($activeSlave.dick < 5) && ($activeSlave.belly >= 5000)>>
-		finally orgasms, $he attempts to hike $his hips over $his head and direct the cum into $his mouth. However, $he ends up just coating $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> in $his own cum.
-	<<elseif ($activeSlave.dick > 4) && ($activeSlave.belly >= 5000)>>
-		finally orgasms, $he attempts to hike $his hips over $his head and direct the cum into $his mouth. $His dick is large enough to extend past $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>>, allowing $him to blow $his load into $his waiting maw.
-	<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-		finally manages to extract an orgasm from $his limp dick, $he hikes $his hips over $his head to direct it into $his mouth.
-	<<elseif $activeSlave.dick > 0>>
-		finally empties $his balls, $he hikes $his hips over $his head to direct the cum into $his mouth.
-	<<elseif $activeSlave.vagina == -1>>
-		climaxes, $he makes sure they can see the way $his asspussy spasms with orgasm.
-	<<else>>
-		finally climaxes, $he carefully licks $his hands clean, showing off $his enjoyment of $his own <<if canTaste($activeSlave)>>taste<<else>>fluids<</if>>.
-	<</if>>
-	Authenticity is hard to fake, and the many citizens who saw the broadcast don't doubt @@.green;your ability to train@@ a shameless slut.
-	<<run repX(1250, "event", $activeSlave)>>
+		It takes a trifling command at your desk to surreptitiously slave one of the office cameras to $his impromptu masturbation session, and send the feed to many of the public screens. After a few minutes, <<if canSee($activeSlave)>>$he notices the setup through one of the office's glass walls<<else>>you inform the eager masturbator that $his show is live across the arcology<</if>>.
+		<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
+			$He climaxes almost instantly at the realization, which plays right into $his fetish.
+		<<else>>
+			$He pauses for a moment at the realization, but goes back to $his business, blushing a little harder.
+		<</if>>
+		$He even plays it up a little for $his audience; when $he
+		<<if ($activeSlave.belly >= 120000) && ($activeSlave.dick > 0)>>
+			climaxes, $he makes sure they can see the way $his enormously distended body spasms with orgasm.
+		<<elseif ($activeSlave.belly >= 10000) && ($activeSlave.dick > 0)>>
+			finally orgasms, $he attempts to hike $his hips over $his head and direct the cum into $his mouth. However, $his <<if $activeSlave.bellyPreg >= 5000>>advanced pregnancy<<else>>_belly belly<</if>> thwarts $his efforts and $he ends up cumming on $his stomach's underside. $He brushes some cum off with $his fingers and brings it to $his mouth, smiling at the <<if canTaste($activeSlave)>>taste<<else>>sensation<</if>>.
+		<<elseif ($activeSlave.dick > 0) && ($activeSlave.dick < 5) && ($activeSlave.belly >= 5000)>>
+			finally orgasms, $he attempts to hike $his hips over $his head and direct the cum into $his mouth. However, $he ends up just coating $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> in $his own cum.
+		<<elseif ($activeSlave.dick > 4) && ($activeSlave.belly >= 5000)>>
+			finally orgasms, $he attempts to hike $his hips over $his head and direct the cum into $his mouth. $His dick is large enough to extend past $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>>, allowing $him to blow $his load into $his waiting maw.
+		<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
+			finally manages to extract an orgasm from $his limp dick, $he hikes $his hips over $his head to direct it into $his mouth.
+		<<elseif $activeSlave.dick > 0>>
+			finally empties $his balls, $he hikes $his hips over $his head to direct the cum into $his mouth.
+		<<elseif $activeSlave.vagina == -1>>
+			climaxes, $he makes sure they can see the way $his asspussy spasms with orgasm.
+		<<else>>
+			finally climaxes, $he carefully licks $his hands clean, showing off $his enjoyment of $his own <<if canTaste($activeSlave)>>taste<<else>>fluids<</if>>.
+		<</if>>
+		Authenticity is hard to fake, and the many citizens who saw the broadcast don't doubt @@.green;your ability to train@@ a shameless slut.
+		<<run repX(1250, "event", $activeSlave)>>
 	<</replace>>
 <</link>>
 
@@ -9066,238 +9079,229 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Relaxed sex">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You flip the sheet off your naked body, revealing your already <<if $PC.dick == 0>>wet pussy<<else>>stiff prick<<if $PC.vagina == 1>> and the wet pussy below it<</if>><</if>>. $He slides $himself down, pressing $his
-	<<if ($activeSlave.boobs > 2000)>>
-		ridiculous tits
-	<<elseif ($activeSlave.boobs > 800)>>
-		big breasts
-	<<elseif ($activeSlave.boobs > 300)>>
-		nice boobs
-	<<else>>
-		trim chest
-	<</if>>
-	against your legs, and nuzzles $his warm nose and wet tongue against
-	<<if $PC.balls > 2 || $PC.ballsImplant > 2>>
-		your oversized nuts.
-	<<elseif $PC.vagina == 1>>
-		your moist folds.
-	<<else>>
-		your ballsack.
-	<</if>>
-	You run a languid hand through $his hair, but soon relax into a pleasant, tired fugue, letting yourself enjoy $his ministrations. You almost drift off under the slow oral loving, but a sudden coolness against you brings you partially awake again: $he's taken $his mouth off you, leaving the night air against your saliva-wetted <<if $PC.vagina == 1>>pussylips<<else>>cock<</if>>. $He quickly realizes the error, and applies $himself diligently to you, never letting the warm feeling die down again. You orgasm twice, which $he absorbs without stopping, looking up at you with an expression that's unidentifiable in the gloom. But when you finally reach down and give $his <<if ($activeSlave.belly >= 10000)>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly a light pat<<else>>shoulder a little tug<</if>> to let $him know that's enough, $he @@.mediumaquamarine;cuddles up close to you@@ without hesitation.
-	<<set $activeSlave.trust += 4, $activeSlave.counter.oral++, $oralTotal++>>
+		You flip the sheet off your naked body, revealing your already <<if $PC.dick == 0>>wet pussy<<else>>stiff prick<<if $PC.vagina == 1>> and the wet pussy below it<</if>><</if>>. $He slides $himself down, pressing $his
+		<<if ($activeSlave.boobs > 2000)>>
+			ridiculous tits
+		<<elseif ($activeSlave.boobs > 800)>>
+			big breasts
+		<<elseif ($activeSlave.boobs > 300)>>
+			nice boobs
+		<<else>>
+			trim chest
+		<</if>>
+		against your legs, and nuzzles $his warm nose and wet tongue against
+		<<if $PC.balls > 2 || $PC.ballsImplant > 2>>
+			your oversized nuts.
+		<<elseif $PC.vagina == 1>>
+			your moist folds.
+		<<else>>
+			your ballsack.
+		<</if>>
+		You run a languid hand through $his hair, but soon relax into a pleasant, tired fugue, letting yourself enjoy $his ministrations. You almost drift off under the slow oral loving, but a sudden coolness against you brings you partially awake again: $he's taken $his mouth off you, leaving the night air against your saliva-wetted <<if $PC.vagina == 1>>pussylips<<else>>cock<</if>>. $He quickly realizes the error, and applies $himself diligently to you, never letting the warm feeling die down again. You orgasm twice, which $he absorbs without stopping, looking up at you with an expression that's unidentifiable in the gloom. But when you finally reach down and give $his <<if ($activeSlave.belly >= 10000)>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly a light pat<<else>>shoulder a little tug<</if>> to let $him know that's enough, $he @@.mediumaquamarine;cuddles up close to you@@ without hesitation.
+		<<set $activeSlave.trust += 4, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
 <<if $activeSlave.belly < 150000>>
-<<if canDoVaginal($activeSlave)>>
-<br><<link "Surprise sex">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You uncoil from under the sheet like a striking serpent, tackling $his $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of $him with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of $him<</if>>.
-	<<if ($activeSlave.bellyPreg < 1500)>>
-		<<if $activeSlave.belly >= 10000>>
-			$His _belly belly squashes out to either side of $his torso,
-		<<elseif ($activeSlave.boobs > 2000)>>
-			$His huge breasts squash out to either side of $his torso,
-		<<elseif ($activeSlave.dick > 0)>>
-			$He shifts desperately to get some weight off $his trapped dick,
-		<<else>>
-			$He squirms reflexively,
-		<</if>>
-	<<elseif ($activeSlave.boobs > 2000)>>
-		$His huge breasts flop to either side of $his torso,
-	<<else>>
-		$He squirms reflexively,
-	<</if>>
-	but your attention is directed farther down: you wrap an arm around $his hips, hoist $him, shove a cushion under $his middle, and spread $his
-	<<if $activeSlave.butt > 5>>
-		inconveniently plush butt
-	<<elseif $activeSlave.butt > 2>>
-		big buttocks
-	<<else>>
-		trim buttocks
-	<</if>>
-	with one hand to get at $his pussy. You feel $him take a deep breath under you, and $he lets it out as you press <<if $PC.dick == 0>>the tip of your strap-on<<else>>your dickhead<</if>> against $his moist slit. The relaxation
-	<<if $activeSlave.vagina > 2>>
-		gapes $his vagina wide, welcoming you in without any resistance at all.
-	<<elseif $activeSlave.vagina > 1>>
-		welcomes you in, offering you only a delicious bit of resistance to push against.
-	<<else>>
-		welcomes you in, though $he does buck a little at the first penetration.
-	<</if>>
-	You surprised $him badly, but the adrenaline melts into arousal as you pump in and out of $his cunt. $He grinds shamelessly against the cushion; since $he's being a good $girl, you reach up to your bedside without giving $him any respite to fetch
-	<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-		an egg vibe. You shove it between $him and the cushion to give $his limp dick some stimulation.
-	<<elseif $activeSlave.dick > 4>>
-		a huge onahole. You push it between $him and the cushion so $he can fuck it.
-	<<elseif $activeSlave.dick > 0>>
-		an onahole. You push it between $him and the cushion so $he can fuck it.
-	<<elseif $activeSlave.clit > 1>>
-		a shallow vibrating onahole. You push it between $him and the cushion so $he can stuff $his pseudophallic clit into it.
-	<<elseif canDoAnal($activeSlave)>>
-		an egg vibe. You push it into $his ass to stimulate $his <<if $activeSlave.prostate > 0>>prostate<<else>>insides<</if>>.
-	<<else>>
-		an egg vibe. You place it under $him so it can stimulate the sensitive skin between $his legs, just beneath $his asspussy.
-	<</if>>
-	<<if !canTalk($activeSlave)>>
-		$His hands jerk out a spastic thank you in the darkness,
-	<<else>>
-		$He coos a wordless thanks,
-	<</if>>
-	and $he starts humping away. If $he thought you were too tired for sex, you certainly @@.hotpink;impress $him;@@ as you spend an hour exhausting yourself against $his vagina, $he wonders whether $his <<= WrittenMaster()>> is ever too tired to fuck.
-	<<set $activeSlave.devotion += 4>>
-	<<= VaginalVCheck()>>
-	<</replace>>
-<</link>><<if ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>>
-<</if>>
-<<if canDoAnal($activeSlave)>>
-<br><<link "Surprise buttsex">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You uncoil from under the sheet like a striking serpent, tackling $his $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of $him with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of $him<</if>>.
-	<<if ($activeSlave.bellyPreg < 1500)>>
-		<<if $activeSlave.belly >= 10000>>
-			$His _belly belly squashes out to either side of $his torso,
-		<<elseif ($activeSlave.boobs > 2000)>>
-			$His huge breasts squash out to either side of $his torso,
-		<<elseif ($activeSlave.dick > 0)>>
-			$He shifts desperately to get some weight off $his trapped dick,
-		<<else>>
-			$He squirms reflexively,
-		<</if>>
-	<<elseif ($activeSlave.boobs > 2000)>>
-		$His huge breasts flop to either side of $his torso,
-	<<else>>
-		$He squirms reflexively,
-	<</if>>
-	but your attention is directed farther down: you wrap an arm around $his hips, hoist $him, shove a cushion under $his middle, and spread $his
-	<<if $activeSlave.butt > 5>>
-		inconveniently plush butt
-	<<elseif $activeSlave.butt > 2>>
-		big buttocks
-	<<else>>
-		trim buttocks
-	<</if>>
-	with one hand to get at $his asshole. You feel $him take a deep breath under you, and $he lets it out as you press <<if $PC.dick == 0>>the tip of your strap-on<<else>>your dickhead<</if>> against $his anus. The relaxation
-	<<if $activeSlave.anus > 2>>
-		gapes $his asspussy wide, welcoming you in without any resistance at all.
-	<<elseif $activeSlave.anus > 1>>
-		welcomes you in, offering you only a delicious bit of resistance to push against.
-	<<else>>
-		saves $him from too much anal pain, though $he does buck a little at the first penetration.
-	<</if>>
-	You surprised $him badly, but the adrenaline melts into arousal as you pump in and out of $his ass. $He grinds shamelessly against the cushion; since $he's being a good $girl, you reach up to your bedside without giving $him any respite to fetch
-	<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-		an egg vibe. You shove it between $him and the cushion to give $his limp dick some stimulation.
-	<<elseif $activeSlave.dick > 4>>
-		a huge onahole. You push it between $him and the cushion so $he can fuck it.
-	<<elseif $activeSlave.dick > 0>>
-		an onahole. You push it between $him and the cushion so $he can fuck it.
-	<<elseif $activeSlave.clit > 1>>
-		a shallow vibrating onahole. You push it between $him and the cushion so $he can stuff $his pseudophallic clit into it.
-	<<elseif $activeSlave.vagina == -1>>
-		an egg vibe. You place it under $him so it can stimulate the sensitive skin between $his legs, just beneath $his asspussy.
-	<<else>>
-		an egg vibe. You push it between $him and the cushion so $he can rub $his <<if !canDoVaginal($activeSlave)>>chaste <</if>>pussy against it.
+	<<if canDoVaginal($activeSlave)>>
+		<br><<link "Surprise sex">>
+			<<EventNameDelink $activeSlave>>
+			<<replace "#result">>
+				You uncoil from under the sheet like a striking serpent, tackling $his $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of $him with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of $him<</if>>.
+				<<if ($activeSlave.bellyPreg < 1500)>>
+					<<if $activeSlave.belly >= 10000>>
+						$His _belly belly squashes out to either side of $his torso,
+					<<elseif ($activeSlave.boobs > 2000)>>
+						$His huge breasts squash out to either side of $his torso,
+					<<elseif ($activeSlave.dick > 0)>>
+						$He shifts desperately to get some weight off $his trapped dick,
+					<<else>>
+						$He squirms reflexively,
+					<</if>>
+				<<elseif ($activeSlave.boobs > 2000)>>
+					$His huge breasts flop to either side of $his torso,
+				<<else>>
+					$He squirms reflexively,
+				<</if>>
+				but your attention is directed farther down: you wrap an arm around $his hips, hoist $him, shove a cushion under $his middle, and spread $his
+				<<if $activeSlave.butt > 5>>
+					inconveniently plush butt
+				<<elseif $activeSlave.butt > 2>>
+					big buttocks
+				<<else>>
+					trim buttocks
+				<</if>>
+				with one hand to get at $his pussy. You feel $him take a deep breath under you, and $he lets it out as you press <<if $PC.dick == 0>>the tip of your strap-on<<else>>your dickhead<</if>> against $his moist slit. The relaxation
+				<<if $activeSlave.vagina > 2>>
+					gapes $his vagina wide, welcoming you in without any resistance at all.
+				<<elseif $activeSlave.vagina > 1>>
+					welcomes you in, offering you only a delicious bit of resistance to push against.
+				<<else>>
+					welcomes you in, though $he does buck a little at the first penetration.
+				<</if>>
+				You surprised $him badly, but the adrenaline melts into arousal as you pump in and out of $his cunt. $He grinds shamelessly against the cushion; since $he's being a good $girl, you reach up to your bedside without giving $him any respite to fetch
+				<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
+					an egg vibe. You shove it between $him and the cushion to give $his limp dick some stimulation.
+				<<elseif $activeSlave.dick > 4>>
+					a huge onahole. You push it between $him and the cushion so $he can fuck it.
+				<<elseif $activeSlave.dick > 0>>
+					an onahole. You push it between $him and the cushion so $he can fuck it.
+				<<elseif $activeSlave.clit > 1>>
+					a shallow vibrating onahole. You push it between $him and the cushion so $he can stuff $his pseudophallic clit into it.
+				<<elseif canDoAnal($activeSlave)>>
+					an egg vibe. You push it into $his ass to stimulate $his <<if $activeSlave.prostate > 0>>prostate<<else>>insides<</if>>.
+				<<else>>
+					an egg vibe. You place it under $him so it can stimulate the sensitive skin between $his legs, just beneath $his asspussy.
+				<</if>>
+				<<if !canTalk($activeSlave)>>
+					$His hands jerk out a spastic thank you in the darkness,
+				<<else>>
+					$He coos a wordless thanks,
+				<</if>>
+				and $he starts humping away. If $he thought you were too tired for sex, you certainly @@.hotpink;impress $him;@@ as you spend an hour exhausting yourself against $his vagina, $he wonders whether $his <<= WrittenMaster()>> is ever too tired to fuck.
+				<<set $activeSlave.devotion += 4>>
+				<<= VaginalVCheck()>>
+			<</replace>>
+		<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
 	<</if>>
-	<<if !canTalk($activeSlave)>>
-		$His hands jerk out a spastic thank you in the darkness,
-	<<else>>
-		$He coos a wordless thanks,
+	<<if canDoAnal($activeSlave)>>
+		<br><<link "Surprise buttsex">>
+			<<EventNameDelink $activeSlave>>
+			<<replace "#result">>
+				You uncoil from under the sheet like a striking serpent, tackling $his $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of $him with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of $him<</if>>.
+				<<if ($activeSlave.bellyPreg < 1500)>>
+					<<if $activeSlave.belly >= 10000>>
+						$His _belly belly squashes out to either side of $his torso,
+					<<elseif ($activeSlave.boobs > 2000)>>
+						$His huge breasts squash out to either side of $his torso,
+					<<elseif ($activeSlave.dick > 0)>>
+						$He shifts desperately to get some weight off $his trapped dick,
+					<<else>>
+						$He squirms reflexively,
+					<</if>>
+				<<elseif ($activeSlave.boobs > 2000)>>
+					$His huge breasts flop to either side of $his torso,
+				<<else>>
+					$He squirms reflexively,
+				<</if>>
+				but your attention is directed farther down: you wrap an arm around $his hips, hoist $him, shove a cushion under $his middle, and spread $his
+				<<if $activeSlave.butt > 5>>
+					inconveniently plush butt
+				<<elseif $activeSlave.butt > 2>>
+					big buttocks
+				<<else>>
+					trim buttocks
+				<</if>>
+				with one hand to get at $his asshole. You feel $him take a deep breath under you, and $he lets it out as you press <<if $PC.dick == 0>>the tip of your strap-on<<else>>your dickhead<</if>> against $his anus. The relaxation
+				<<if $activeSlave.anus > 2>>
+					gapes $his asspussy wide, welcoming you in without any resistance at all.
+				<<elseif $activeSlave.anus > 1>>
+					welcomes you in, offering you only a delicious bit of resistance to push against.
+				<<else>>
+					saves $him from too much anal pain, though $he does buck a little at the first penetration.
+				<</if>>
+				You surprised $him badly, but the adrenaline melts into arousal as you pump in and out of $his ass. $He grinds shamelessly against the cushion; since $he's being a good $girl, you reach up to your bedside without giving $him any respite to fetch
+				<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
+					an egg vibe. You shove it between $him and the cushion to give $his limp dick some stimulation.
+				<<elseif $activeSlave.dick > 4>>
+					a huge onahole. You push it between $him and the cushion so $he can fuck it.
+				<<elseif $activeSlave.dick > 0>>
+					an onahole. You push it between $him and the cushion so $he can fuck it.
+				<<elseif $activeSlave.clit > 1>>
+					a shallow vibrating onahole. You push it between $him and the cushion so $he can stuff $his pseudophallic clit into it.
+				<<elseif $activeSlave.vagina == -1>>
+					an egg vibe. You place it under $him so it can stimulate the sensitive skin between $his legs, just beneath $his asspussy.
+				<<else>>
+					an egg vibe. You push it between $him and the cushion so $he can rub $his <<if !canDoVaginal($activeSlave)>>chaste <</if>>pussy against it.
+				<</if>>
+				<<if !canTalk($activeSlave)>>
+					$His hands jerk out a spastic thank you in the darkness,
+				<<else>>
+					$He coos a wordless thanks,
+				<</if>>
+				and $he starts humping away. If $he thought you were too tired for sex, you certainly @@.hotpink;impress $him;@@ as you spend an hour exhausting yourself against $his asshole, $he wonders whether $his <<= WrittenMaster()>> is ever too tired to fuck a butt.
+				<<set $activeSlave.devotion += 4>>
+				<<= AnalVCheck()>>
+			<</replace>>
+		<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 	<</if>>
-	and $he starts humping away. If $he thought you were too tired for sex, you certainly @@.hotpink;impress $him;@@ as you spend an hour exhausting yourself against $his asshole, $he wonders whether $his <<= WrittenMaster()>> is ever too tired to fuck a butt.
-	<<set $activeSlave.devotion += 4>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
-<</if>>
 <</if>>
 
 <<case "slave dick huge">>
+
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<<link "Enter the shower and take $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He's so occupied that $he doesn't <<if canHear($activeSlave)>>hear<<else>>notice<</if>> you until you seize $him under the armpits and drag $him to $his feet. $His massive dickhead pops free of $his mouth and $he squeaks in surprise as you push $his<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>> body<</if>> against the wall of the shower and stuff your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his
-	<<if canDoVaginal($activeSlave)>>
-		cunt.
-	<<else>>
-		ass.
-	<</if>>
-	$He was already very close to orgasm, and the stimulation of $his dick rubbing against the warm, wet wall<<if $activeSlave.belly >= 1500>> of the shower and $his belly<<else>> of the shower<</if>>, not to mention the feeling of being
-	<<if canDoVaginal($activeSlave)>>
-		fucked,
-	<<else>>
-		buttfucked,
-	<</if>>
-	is enough that $he climaxes quickly. <<if $activeSlave.balls == 3>>$His huge load coats the shower wall with cum. <</if>>You pull out and let $him finish by <<if $PC.dick == 0>>giving you oral<<else>>sucking your dick<<if $PC.vagina == 1>> and eating your pussy<</if>><</if>>, since $he started by sucking $himself. @@.hotpink;$He has become more submissive to you.@@
-	<<set $activeSlave.devotion += 4>>
-	<<if canDoVaginal($activeSlave)>>
-		<<if ($activeSlave.vagina == 0)>>
-			@@.lime;This breaks in $activeSlave.slaveName's virgin pussy.@@
-			<<set $activeSlave.vagina = 1>>
-			@@.hotpink;$He enjoys losing $his cherry to you.@@
-			<<set $activeSlave.devotion += 4>>
-		<</if>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<if ($activeSlave.anus == 0)>>
-			@@.lime;This breaks in $activeSlave.slaveName's virgin ass.@@
-			<<set $activeSlave.anus = 1>>
-			@@.hotpink;$He enjoys losing $his butt cherry to you.@@
+	<<link "Enter the shower and take $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$He's so occupied that $he doesn't <<if canHear($activeSlave)>>hear<<else>>notice<</if>> you until you seize $him under the armpits and drag $him to $his feet. $His massive dickhead pops free of $his mouth and $he squeaks in surprise as you push $his<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>> body<</if>> against the wall of the shower and stuff your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his
+			<<if canDoVaginal($activeSlave)>>
+				cunt.
+			<<else>>
+				ass.
+			<</if>>
+			$He was already very close to orgasm, and the stimulation of $his dick rubbing against the warm, wet wall<<if $activeSlave.belly >= 1500>> of the shower and $his belly<<else>> of the shower<</if>>, not to mention the feeling of being
+			<<if canDoVaginal($activeSlave)>>
+				fucked,
+			<<else>>
+				buttfucked,
+			<</if>>
+			is enough that $he climaxes quickly. <<if $activeSlave.balls == 3>>$His huge load coats the shower wall with cum. <</if>>You pull out and let $him finish by <<if $PC.dick == 0>>giving you oral<<else>>sucking your dick<<if $PC.vagina == 1>> and eating your pussy<</if>><</if>>, since $he started by sucking $himself. @@.hotpink;$He has become more submissive to you.@@
 			<<set $activeSlave.devotion += 4>>
-		<</if>>
-		<<= AnalVCheck()>>
-	<</if>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+			<<if canDoVaginal($activeSlave)>>
+				<<if ($activeSlave.vagina == 0)>>
+					@@.lime;This breaks in $activeSlave.slaveName's virgin pussy.@@
+					<<set $activeSlave.vagina = 1>>
+					@@.hotpink;$He enjoys losing $his cherry to you.@@
+					<<set $activeSlave.devotion += 4>>
+				<</if>>
+				<<= VaginalVCheck()>>
+			<<else>>
+				<<if ($activeSlave.anus == 0)>>
+					@@.lime;This breaks in $activeSlave.slaveName's virgin ass.@@
+					<<set $activeSlave.anus = 1>>
+					@@.hotpink;$He enjoys losing $his butt cherry to you.@@
+					<<set $activeSlave.devotion += 4>>
+				<</if>>
+				<<= AnalVCheck()>>
+			<</if>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 <<if ($PC.dick == 1)>>
-	<<if ($PC.title == 1)>>
-		<br><<link "The only dick $he should suck is $his Master's">>
-		<<EventNameDelink $activeSlave>>
-		<<replace "#result">>
-			$He's so occupied that $he doesn't hear you until you seize $his hair and pull $his head back. $His massive dickhead pops free of $his mouth and $he squeaks in surprise. The noise is cut off by a gag as you ram yourself down $his throat. $He plays with your <<if $PC.vagina == 1>>cunt<<else>>balls<</if>> as you facefuck $him and jacks off with $his other hand. $He was so close when you intruded that $he cums long before you do. There's a lot of cum in the shower when you're through. <<if $activeSlave.balls == 3>>$His huge balls made an especially major contribution. <</if>>@@.hotpink;$He has become more submissive to you.@@
-			<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
-			<</replace>>
-		<</link>>
-	<<else>>
-		<br><<link "The only dick $he should suck is $his Mistress's">>
+	<br><<link "The only dick $he should suck is $his <<= WrittenMaster()>>'s">>
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
-			$He's so occupied that $he doesn't hear you until you seize $his hair and pull $his head back. $His massive dickhead pops free of $his mouth and $he squeaks in surprise. The noise is cut off by a gag as you ram yourself down $his throat. $He plays with your <<if $PC.vagina == 1>>cunt<<else>>balls<</if>> as you facefuck $him and jacks off with $his other hand. $He was so close when you intruded that $he cums long before you do. There's a lot of cum in the shower when you're through. <<if $activeSlave.balls == 3>>$His huge balls made an especially major contribution. <</if>>@@.hotpink;$He has become more submissive to you.@@
+			$He's so occupied that $he doesn't <<if canHear($activeSlave)>>hear<<else>>notice<</if>> you until you seize $his hair and pull $his head back. $His massive dickhead pops free of $his mouth and $he squeaks in surprise. The noise is cut off by a gag as you ram yourself down $his throat. $He plays with your <<if $PC.vagina == 1>>cunt<<else>>balls<</if>> as you facefuck $him and jacks off with $his other hand. $He was so close when you intruded that $he cums long before you do. There's a lot of cum in the shower when you're through. <<if $activeSlave.balls == 3>>$His huge balls made an especially major contribution. <</if>>@@.hotpink;$He has become more submissive to you.@@
 			<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
-			<</replace>>
-		<</link>>
-	<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if ($activeSlave.belly < 5000) && (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>>
-<br><<link "See if $he can do that while you take $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You interrupt $activeSlave.slaveName and make $him lie on a nearby bed. After some preparatory stretching, during which $his frustrated erection flops forlornly around, you manage to get both $his ankles behind $his head. In this position $he manages to resume sucking on the head of $his penis as you slip into $him.
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
-	So contorted, $his
-	<<if canDoVaginal($activeSlave)>>
-		pussy
-	<<else>>
-		anus
-	<</if>>
-	is not well angled for comfortable
-	<<if canDoVaginal($activeSlave)>>
-		penetration,
-	<<else>>
-		sodomy,
-	<</if>>
-	so $he is soon moaning and grunting into $his cock as you fuck $him.
-	$He finishes <<if $activeSlave.balls >= 3>>$his enormous ejaculation <</if>>into $his own mouth and then <<if $PC.dick == 0>>finds $himself giving you oral directly, since you pulled your strap-on off<<else>>receives your load into $his now-brimming throat<<if $PC.vagina == 1>>. $He barely has time to swallow before you press your pussy against $his mouth<</if>><</if>>. @@.hotpink;$His devotion to you has increased.@@
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<br><<link "See if $he can do that while you take $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You interrupt $activeSlave.slaveName and make $him lie on a nearby bed. After some preparatory stretching, during which $his frustrated erection flops forlornly around, you manage to get both $his ankles behind $his head. In this position $he manages to resume sucking on the head of $his penis as you slip into $him.
+			<<if canDoVaginal($activeSlave)>>
+				<<= VaginalVCheck()>>
+			<<else>>
+				<<= AnalVCheck()>>
+			<</if>>
+			So contorted, $his
+			<<if canDoVaginal($activeSlave)>>
+				pussy
+			<<else>>
+				anus
+			<</if>>
+			is not well angled for comfortable
+			<<if canDoVaginal($activeSlave)>>
+				penetration,
+			<<else>>
+				sodomy,
+			<</if>>
+			so $he is soon moaning and grunting into $his cock as you fuck $him.
+			$He finishes <<if $activeSlave.balls >= 3>>$his enormous ejaculation <</if>>into $his own mouth and then <<if $PC.dick == 0>>finds $himself giving you oral directly, since you pulled your strap-on off<<else>>receives your load into $his now-brimming throat<<if $PC.vagina == 1>>. $He barely has time to swallow before you press your pussy against $his mouth<</if>><</if>>. @@.hotpink;$His devotion to you has increased.@@
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 
 <<case "obedient idiot">>
@@ -9305,140 +9309,140 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Give $him something more appropriate to suck on">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>>, as usual, has to give the stupid slut considerable coaching to get $him to your office without getting lost. This is a near-miraculous imbecility, as the penthouse is expressly designed to make it nearly impossible to get anywhere from anywhere else without passing by the office door. $He understands orders to <<if $PC.dick == 0>>perform cunnilingus<<else>>suck a dick<</if>>, though, and gets down to it eagerly enough. When $he finishes the job, <<if $PC.dick == 0>>wipes $his mouth<<else>>$he busily swallows every drop of your ejaculate<</if>> and then looks up at you doubtfully.
-	<<if !canTalk($activeSlave)>>
-		$He slowly spells out a question with $his hands, asking if $he's a good slave.
-	<<else>>
-		$He mumbles a hesitant question: "<<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>, am I a good <<s>>lave?"
-	<</if>>
-	You tell $him that $he is, running a hand <<if $activeSlave.hStyle == "shaved bald">>across $his bald scalp<<else>>through $his hair<</if>>. $He seems @@.hotpink;reassured,@@ and thankful when you give $him a cup of $his proper rations from your own hand.
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
+		<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>>, as usual, has to give the stupid slut considerable coaching to get $him to your office without getting lost. This is a near-miraculous imbecility, as the penthouse is expressly designed to make it nearly impossible to get anywhere from anywhere else without passing by the office door. $He understands orders to <<if $PC.dick == 0>>perform cunnilingus<<else>>suck a dick<</if>>, though, and gets down to it eagerly enough. When $he finishes the job, <<if $PC.dick == 0>>wipes $his mouth<<else>>$he busily swallows every drop of your ejaculate<</if>> and then looks up at you doubtfully.
+		<<if !canTalk($activeSlave)>>
+			$He slowly spells out a question with $his hands, asking if $he's a good slave.
+		<<else>>
+			$He mumbles a hesitant question: "<<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>, am I a good <<s>>lave?"
+		<</if>>
+		You tell $him that $he is, running a hand <<if $activeSlave.hStyle == "shaved bald">>across $his bald scalp<<else>>through $his hair<</if>>. $He seems @@.hotpink;reassured,@@ and thankful when you give $him a cup of $his proper rations from your own hand.
+		<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
 <br><<link "Reassure $him and get $him to slow down">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He's so intent on trying to suck off the food dispenser that $he doesn't hear you enter the room. $He starts with surprise when you encircle $his<<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> belly<<else>> waist<</if>> with your arms and murmur reassuringly in $his ear.
-	<<if !canTalk($activeSlave)>>
-		$He sadly gestures at the spigot and then flicks $his own head.
-	<<else>>
-		$He <<say>>s sadly, "<<S>>orry <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm trying to be a good <<s>>lave but it'<<s>> hard."
-	<</if>>
-	You kindly tell $him that you know $he's trying, and that that's what really matters.
-	<<if !canTalk($activeSlave)>>
-		$His hands awkwardly ask, "Really?"
-	<<else>>
-		"Really, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>?" $he asks hopefully.
-	<</if>>
-	You whisper into $his ear that yes, $he will be all right as long as $he does $his best. $He wiggles $his butt against you a little and giggles <<if $PC.dick == 1>>at the responding stiffness $he feels between $his buttocks<<else>>as you shove $him to $his knees<</if>>. $He shimmies down and <<if $PC.dick == 1>>takes you into $his mouth<<if $PC.vagina == 1>> and does $his best to reach the top of your pussy with the tip of $his tongue<</if>><<else>>eats you out<</if>>, <<if canSee($activeSlave)>>looking you in the eyes the whole time and <</if>>@@.hotpink;smiling@@ as much as $he can manage with <<if $PC.dick == 1>>a dick in $his mouth<<else>>$his tongue working your clit<</if>>.
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
+		$He's so intent on trying to suck off the food dispenser that $he doesn't <<if canHear($activeSlave)>>hear<<else>>notice<</if>> you enter the room. $He starts with surprise when you encircle $his<<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> belly<<else>> waist<</if>> with your arms and <<if canHear($activeSlave)>>murmur reassuringly in $his ear<<else>>give $him a reassuring squeeze<</if>>.
+		<<if !canTalk($activeSlave)>>
+			$He sadly gestures at the spigot and then flicks $his own head.
+		<<else>>
+			$He <<say>>s sadly, "<<S>>orry <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm trying to be a good <<s>>lave but it'<<s>> hard."
+		<</if>>
+		You kindly tell $him that you know $he's trying, and that that's what really matters.
+		<<if !canTalk($activeSlave)>>
+			$His hands awkwardly ask, "Really?"
+		<<else>>
+			"Really, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>?" $he asks hopefully.
+		<</if>>
+		You whisper into $his ear that yes, $he will be all right as long as $he does $his best. $He wiggles $his butt against you a little and giggles <<if $PC.dick == 1>>at the responding stiffness $he feels between $his buttocks<<else>>as you shove $him to $his knees<</if>>. $He shimmies down and <<if $PC.dick == 1>>takes you into $his mouth<<if $PC.vagina == 1>> and does $his best to reach the top of your pussy with the tip of $his tongue<</if>><<else>>eats you out<</if>>, <<if canSee($activeSlave)>>looking you in the eyes the whole time and <</if>>@@.hotpink;smiling@@ as much as $he can manage with <<if $PC.dick == 1>>a dick in $his mouth<<else>>$his tongue working your clit<</if>>.
+		<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
 <br><<link "Spank the stupid out of $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He's so intent on trying to suck off the food dispenser that $he doesn't hear you enter the room. $He starts with surprise when you seize $him and push $him
-	<<if $activeSlave.belly >= 300000>>
-		over $his _belly belly, face-down into the counter.
-	<<else>>
-		face-down across the counter.
-	<</if>>
-	After making $him confirm that $he can hear you, you patiently repeat the very simple instructions for getting meals from the kitchen. Then, you tell $him to repeat them. $He manages the first step fine and has completely forgotten the second. The moment $he hesitates, $he has an instant to hear the rush of air trying to get out of the way of your speeding palm before it contacts the $activeSlave.skin skin of $his buttocks. $He writhes and cries and promises to try harder, but $his poor rear end is almost raw before $he gets it all right. $He leaves the kitchen snuffling sadly to $himself, but in the coming days $he really does seem to @@.gold;do $his best@@ to avoid another beating.
-	<<set $activeSlave.trust -= 5>>
+		$He's so intent on trying to suck off the food dispenser that $he doesn't <<if canHear($activeSlave)>>hear<<else>>notice<</if>> you enter the room. $He starts with surprise when you seize $him and push $him
+		<<if $activeSlave.belly >= 300000>>
+			over $his _belly belly, face-down into the counter.
+		<<else>>
+			face-down across the counter.
+		<</if>>
+		After making $him confirm that $he <<if canHear($activeSlave)>>can hear<<else>>acknowledges<</if>> you, you patiently repeat the very simple instructions for getting meals from the kitchen. Then, you tell $him to repeat them. $He manages the first step fine and has completely forgotten the second. The moment $he hesitates, $he has an instant to <<if canHear($activeSlave)>>hear<<else>>feel<</if>> the rush of air trying to get out of the way of your speeding palm before it contacts the $activeSlave.skin skin of $his buttocks. $He writhes and cries and promises to try harder, but $his poor rear end is almost raw before $he gets it all right. $He leaves the kitchen snuffling sadly to $himself, but in the coming days $he really does seem to @@.gold;do $his best@@ to avoid another beating.
+		<<set $activeSlave.trust -= 5>>
 	<</replace>>
 <</link>>
 <<if $arcade > 0>>
-<br><<link "Sentence $him to a month in the arcade">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$activeSlave.slaveName screams and begs when $he realizes what $his punishment for being stupid is to be, but you are obdurate.
-	<<if ($activeSlave.muscles > 30)>>
-		$His powerful form has to be sedated for immurement in the arcade.
-	<<elseif ($activeSlave.weight >= 190)>>
-		$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
-	<<elseif $activeSlave.belly >= 120000>>
-		$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
-	<<elseif ($activeSlave.weight >= -10)>>
-		$His desperate struggles make immuring $him in the arcade difficult.
-	<<elseif $activeSlave.belly >= 1500>>
-		$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
-	<<elseif $activeSlave.muscles < -15>>
-		$His weak body makes immuring $him in the arcade pathetically easy.
-	<<else>>
-		$His thin form makes immuring $him in the arcade pathetically easy.
-	<</if>>
-	After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
-	<<= assignJob($activeSlave, "be confined in the arcade")>>
-	<<set $activeSlave.sentence = 4>>
-	<</replace>>
-<</link>>
+	<br><<link "Sentence $him to a month in the arcade">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$activeSlave.slaveName screams and begs when $he realizes what $his punishment for being stupid is to be, but you are obdurate.
+			<<if ($activeSlave.muscles > 30)>>
+				$His powerful form has to be sedated for immurement in the arcade.
+			<<elseif ($activeSlave.weight >= 190)>>
+				$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
+			<<elseif $activeSlave.belly >= 120000>>
+				$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
+			<<elseif ($activeSlave.weight >= -10)>>
+				$His desperate struggles make immuring $him in the arcade difficult.
+			<<elseif $activeSlave.belly >= 1500>>
+				$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
+			<<elseif $activeSlave.muscles < -15>>
+				$His weak body makes immuring $him in the arcade pathetically easy.
+			<<else>>
+				$His thin form makes immuring $him in the arcade pathetically easy.
+			<</if>>
+			After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
+			<<= assignJob($activeSlave, "be confined in the arcade")>>
+			<<set $activeSlave.sentence = 4>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "devoted old">>
 
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<<link "Cheer $him up">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You close in on $him, and $he starts to present $himself with the force of long habit. However, you take $him by the hand and draw $him in close, running your fingertips along $his cheekbone, looking into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. <<if canSee($activeSlave)>>$He only holds your gaze for a brief moment before blushing and looking down again,<<else>>Once $he feels your hand stop, $he quickly glances down while<</if>> muttering another apology. You raise $his chin again with a gentle hand and give $him a deep kiss. After a moment $he hugs you with almost painful
-	<<if $activeSlave.belly >= 100000>>
-		fierceness, a feat given the size of $his _belly <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>belly, where
-	<<elseif $activeSlave.belly >= 5000>>
-		fierceness, pushing $his _belly <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>belly into yours, where
-	<<else>>
-		fierceness, and
-	<</if>>
-	you can feel a heat radiating from $him. $He makes to get down on $his knees to serve you again, but instead, you
-	<<if $activeSlave.belly >= 300000>>
-		help $him up and guide
-	<<elseif $activeSlave.belly >= 5000>>
-		gently scoop $him up and carry
-	<<else>>
-		scoop $him up and carry
-	<</if>>
-	$him to bed, laying the bemused $girl down before cuddling up behind $him. The two of you make languid love, with you murmuring reassuringly into $his ear, nibbling $his neck, cupping $his breasts,<<if $activeSlave.belly >= 1500>>rubbing $his distended midriff,<</if>> and massaging $his shoulders by turns. After a lovely climax together in $his
-	<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
-		pussy $he coquettishly shifts $himself to line your recovering cock up with $his ass,
-		<<set _didVaginal = 1, _didAnal = 1>>
-	<<elseif canDoVaginal($activeSlave)>>
-		pussy $he coquettishly shifts $himself to face you,
-		<<set _didVaginal = 1>>
-	<<else>>
-		ass $he coquettishly shifts $himself to face you,
-		<<set _didAnal = 1>>
-	<</if>>
-	<<if canSee($activeSlave)>>looking with @@.hotpink;adoration@@ and new @@.mediumaquamarine;confidence@@ into your eyes<<else>>gazing with @@.hotpink;adoration@@ and new @@.mediumaquamarine;confidence@@ at your face<</if>>.
-	<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
-	<<if _didVaginal == 1 && _didAnal == 1>>
-		<<= BothVCheck()>>
-	<<elseif _didVaginal == 1>>
-		<<= VaginalVCheck()>>
-	<<elseif _didAnal == 1>>
-		<<= AnalVCheck()>>
-	<</if>>
-	<</replace>>
-<</link>>
+	<<link "Cheer $him up">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You close in on $him, and $he starts to present $himself with the force of long habit. However, you take $him by the hand and draw $him in close, running your fingertips along $his cheekbone, looking into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. <<if canSee($activeSlave)>>$He only holds your gaze for a brief moment before blushing and looking down again,<<else>>Once $he feels your hand stop, $he quickly glances down while<</if>> muttering another apology. You raise $his chin again with a gentle hand and give $him a deep kiss. After a moment $he hugs you with almost painful
+			<<if $activeSlave.belly >= 100000>>
+				fierceness, a feat given the size of $his _belly <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>belly, where
+			<<elseif $activeSlave.belly >= 5000>>
+				fierceness, pushing $his _belly <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>belly into yours, where
+			<<else>>
+				fierceness, and
+			<</if>>
+			you can feel a heat radiating from $him. $He makes to get down on $his knees to serve you again, but instead, you
+			<<if $activeSlave.belly >= 300000>>
+				help $him up and guide
+			<<elseif $activeSlave.belly >= 5000>>
+				gently scoop $him up and carry
+			<<else>>
+				scoop $him up and carry
+			<</if>>
+			$him to bed, laying the bemused $girl down before cuddling up behind $him. The two of you make languid love, with you murmuring reassuringly into $his ear, nibbling $his neck, cupping $his breasts,<<if $activeSlave.belly >= 1500>>rubbing $his distended midriff,<</if>> and massaging $his shoulders by turns. After a lovely climax together in $his
+			<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
+				pussy $he coquettishly shifts $himself to line your recovering cock up with $his ass,
+				<<set _didVaginal = 1, _didAnal = 1>>
+			<<elseif canDoVaginal($activeSlave)>>
+				pussy $he coquettishly shifts $himself to face you,
+				<<set _didVaginal = 1>>
+			<<else>>
+				ass $he coquettishly shifts $himself to face you,
+				<<set _didAnal = 1>>
+			<</if>>
+			<<if canSee($activeSlave)>>looking with @@.hotpink;adoration@@ and new @@.mediumaquamarine;confidence@@ into your eyes<<else>>gazing with @@.hotpink;adoration@@ and new @@.mediumaquamarine;confidence@@ at your face<</if>>.
+			<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
+			<<if _didVaginal == 1 && _didAnal == 1>>
+				<<= BothVCheck()>>
+			<<elseif _didVaginal == 1>>
+				<<= VaginalVCheck()>>
+			<<elseif _didAnal == 1>>
+				<<= AnalVCheck()>>
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 <br><<link "Perform a health exam personally">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He gets a weekly health exam from the automated systems, which also do their best to monitor $his well-being, but $he does not protest as you take $him to the surgery and give $him a <<if $PC.medicine >= 100>>professional examination. It feels good to put the old skills to use on an attractive patient<<else>>thorough examination<</if>>. There's nothing the matter other than that $he hasn't been 18 for a long time. $He looks a little sad at some of the results, but whenever $he does, you place a hand on $his cheek and give $him a kiss. $He gets the idea.
-	"I under<<s>>tand, <<Master>>. I can <<s>>till <<s>>erve you," $he <<say>>s.
-	You adjust $his diet and exercise a little, which should @@.green;slightly improve@@ $his health<<if $PC.medicine >= 100>>, and prescribe some new supplements that might help $him @@.green;feel $his best@@ all the time<<set $activeSlave.health += 10>><</if>>. As $he gets up from the chair and makes to resume $his duties, you give $him a light swat across the buttocks. $He squeaks and turns to @@.mediumaquamarine;giggle at you,@@ giving you a broad wink and shaking $his tits a little for you.
-	<<set $activeSlave.health += 10, $activeSlave.trust += 4>>
+		$He gets a weekly health exam from the automated systems, which also do their best to monitor $his well-being, but $he does not protest as you take $him to the surgery and give $him a <<if $PC.medicine >= 100>>professional examination. It feels good to put the old skills to use on an attractive patient<<else>>thorough examination<</if>>. There's nothing the matter other than that $he hasn't been 18 for a long time. $He looks a little sad at some of the results, but whenever $he does, you place a hand on $his cheek and give $him a kiss. $He gets the idea.
+		"I under<<s>>tand, <<Master>>. I can <<s>>till <<s>>erve you," $he <<say>>s.
+		You adjust $his diet and exercise a little, which should @@.green;slightly improve@@ $his health<<if $PC.medicine >= 100>>, and prescribe some new supplements that might help $him @@.green;feel $his best@@ all the time<<set $activeSlave.health += 10>><</if>>. As $he gets up from the chair and makes to resume $his duties, you give $him a light swat across the buttocks. $He squeaks and turns to @@.mediumaquamarine;giggle at you,@@ giving you a broad wink and shaking $his tits a little for you.
+		<<set $activeSlave.health += 10, $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <<if ($HeadGirl != 0) && ($HeadGirl.ID != $activeSlave.ID)>>
-<br><<link "Give $him an afternoon off for some quality time with your Head Girl">>
-	<<setLocalPronouns $HeadGirl 2>>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$HeadGirl.slaveName understands the situation immediately. _He2 gets _himself2 and $activeSlave.slaveName dressed for a nice, non-sexual 'date' in $clubName, and leads $him out by the hand with a wink over _his2 shoulder to you. Your Head Girl understands just what kind of break from sexual servitude $activeSlave.slaveName really needs. They enjoy a nice meal, take a stroll and talk as friends, and get some inconsequential but relaxing beauty treatments together. They both @@.hotpink;enjoy the relaxation,@@ and $activeSlave.slaveName @@.green;feels much better@@ after the rest, too.
-	<<set $activeSlave.devotion += 4, $activeSlave.health += 10>>
-	<<run cashX(-500, "event", $activeSlave)>>
-	<<set $slaves[$slaveIndices[$HeadGirl.ID]].devotion += 4>>
-	<</replace>>
-<</link>> //This option will cost <<print cashFormat(500)>>//
+	<br><<link "Give $him an afternoon off for some quality time with your Head Girl">>
+		<<setLocalPronouns $HeadGirl 2>>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$HeadGirl.slaveName understands the situation immediately. _He2 gets _himself2 and $activeSlave.slaveName dressed for a nice, non-sexual 'date' in $clubName, and leads $him out by the hand with a wink over _his2 shoulder to you. Your Head Girl understands just what kind of break from sexual servitude $activeSlave.slaveName really needs. They enjoy a nice meal, take a stroll and talk as friends, and get some inconsequential but relaxing beauty treatments together. They both @@.hotpink;enjoy the relaxation,@@ and $activeSlave.slaveName @@.green;feels much better@@ after the rest, too.
+			<<set $activeSlave.devotion += 4, $activeSlave.health += 10>>
+			<<run cashX(forceNeg(500), "event", $activeSlave)>>
+			<<set $slaves[$slaveIndices[$HeadGirl.ID]].devotion += 4>>
+		<</replace>>
+	<</link>> //This option will cost <<print cashFormat(500)>>//
 <</if>>
 
 <<case "tendon fall">>
@@ -9446,121 +9450,121 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Help $him clean $himself">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You step into the running water and seat yourself in the shower, drawing $him into your lap. $He seems surprised and <<if canSee($activeSlave)>>stares at you through the steam<<else>>gazes towards you<</if>> for a moment before looking away with a blush. $He expects you to <<if $PC.dick == 0>>ride $his wet face<<else>>insert your member into $his wet body<</if>>, but finds you handing $him the soap instead. You gently support $him as $he washes, partaking of physical closeness and support. @@.hotpink;$He has become more devoted to you.@@
-	<<set $activeSlave.devotion += 4>>
+		You step into the running water and seat yourself in the shower, drawing $him into your lap. $He seems surprised and <<if canSee($activeSlave)>>stares at you through the steam<<else>>gazes towards you<</if>> for a moment before looking away with a blush. $He expects you to <<if $PC.dick == 0>>ride $his wet face<<else>>insert your member into $his wet body<</if>>, but finds you handing $him the soap instead. You gently support $him as $he washes, partaking of physical closeness and support. @@.hotpink;$He has become more devoted to you.@@
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
-<br><<link "Fuck $him prostrate body">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You make no answer, entering the shower to stand over $him prostrate form. You reach down and grope $him soapy <<if $seeRace == 1>>$activeSlave.race <</if>>buttocks, questing fingers moving towards $his asscrack.
-	<<if ($activeSlave.anus > 2) && canDoAnal($activeSlave)>>
-		$His rectum is so fucked out and loose that your groping hand almost slides up it.
-	<<elseif ($activeSlave.vagina > 2) && canDoVaginal($activeSlave)>>
-		$His pussy is so fucked out and loose that your groping hand almost slides up it.
-	<<else>>
-		You finger fuck $him for a while, the sting of the soap on $his sensitive insides making $him gasp.
-	<</if>>
-	As $he moans down on the shower floor, you lie down behind $him, spooning $his helpless body<<if $activeSlave.belly >= 5000>>, your hands encircling $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>><</if>>.
-	<<if $PC.dick == 1>>
-		Your cock slides into $him with ease
-	<<elseif $PC.boobs == 1>>
-		$His soft back is delicious against your hard nipples
-	<<else>>
-		The contours of $him soft rear feel lovely against your feminine petals
-	<</if>>
-	and the warm water playing over your warm bodies is a comforting accompaniment to the comforting sex.
-	<<if $PC.dick == 0>>
-		You ride yourself against $his warm wet body until you climax from the rubbing alone
-	<<else>>
-		You leave a load of cum in
-		<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
-			each of $his holes
-			<<set _didVaginal = 1, _didAnal = 1>>
-		<<elseif canDoAnal($activeSlave)>>
-			$his loosened butthole
-			<<set _didAnal = 1>>
-		<<else>>
-			$his loosened vagina
-			<<set _didVaginal = 1>>
-		<</if>>
-		<<if $PC.vagina == 1>> and make $him eat your pussy for a quick aftershock,<</if>>
-	<</if>>
-	and only then do you help $him back to $his feet. $He drips soap, water, and <<if $PC.dick == 0>>your juices<<else>>ejaculate<</if>>. @@.hotpink;$He has become more submissive.@@
-	<<if _didVaginal == 1 && _didAnal == 1>>
-		<<= BothVCheck()>>
-	<<elseif _didVaginal == 1>>
-		<<= VaginalVCheck()>>
-	<<elseif _didAnal == 1>>
-		<<= AnalVCheck()>>
-	<</if>>
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if $PC.dick == 1 && (($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave)))>> //This option will take virginity//<</if>>
+	<br><<link "Fuck $his prostrate body">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You make no answer, entering the shower to stand over $him prostrate form. You reach down and grope $him soapy <<if $seeRace == 1>>$activeSlave.race <</if>>buttocks, questing fingers moving towards $his asscrack.
+			<<if ($activeSlave.anus > 2) && canDoAnal($activeSlave)>>
+				$His rectum is so fucked out and loose that your groping hand almost slides up it.
+			<<elseif ($activeSlave.vagina > 2) && canDoVaginal($activeSlave)>>
+				$His pussy is so fucked out and loose that your groping hand almost slides up it.
+			<<else>>
+				You finger fuck $him for a while, the sting of the soap on $his sensitive insides making $him gasp.
+			<</if>>
+			As $he moans down on the shower floor, you lie down behind $him, spooning $his helpless body<<if $activeSlave.belly >= 5000>>, your hands encircling $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>><</if>>.
+			<<if $PC.dick == 1>>
+				Your cock slides into $him with ease
+			<<elseif $PC.boobs == 1>>
+				$His soft back is delicious against your hard nipples
+			<<else>>
+				The contours of $his soft rear feel lovely against your feminine petals
+			<</if>>
+			and the warm water playing over your warm bodies is a comforting accompaniment to the comforting sex.
+			<<if $PC.dick == 0>>
+				You ride yourself against $his warm wet body until you climax from the rubbing alone
+			<<else>>
+				You leave a load of cum in
+				<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
+					each of $his holes
+					<<set _didVaginal = 1, _didAnal = 1>>
+				<<elseif canDoAnal($activeSlave)>>
+					$his loosened butthole
+					<<set _didAnal = 1>>
+				<<else>>
+					$his loosened vagina
+					<<set _didVaginal = 1>>
+				<</if>>
+				<<if $PC.vagina == 1>> and make $him eat your pussy for a quick aftershock,<</if>>
+			<</if>>
+			and only then do you help $him back to $his feet. $He drips soap, water, and <<if $PC.dick == 0>>your juices<<else>>ejaculate<</if>>. @@.hotpink;$He has become more submissive.@@
+			<<if _didVaginal == 1 && _didAnal == 1>>
+				<<= BothVCheck()>>
+			<<elseif _didVaginal == 1>>
+				<<= VaginalVCheck()>>
+			<<elseif _didAnal == 1>>
+				<<= AnalVCheck()>>
+			<</if>>
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if $PC.dick == 1 && (($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave)))>> //This option will take $his virginity//<</if>>
 <</if>>
 <br><<link "Let $him struggle">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He struggles for a while until you get bored and leave $him to it. Eventually $his thrashing brings another slave in, who helps $him. This interdependence between slaves @@.mediumorchid;reduces $his devotion.@@
-	<<set $activeSlave.devotion -= 5>>
+		$He struggles for a while until you get bored and leave $him to it. Eventually $his thrashing brings another slave in, who helps $him. This interdependence between slaves @@.mediumorchid;reduces $his devotion.@@
+		<<set $activeSlave.devotion -= 5>>
 	<</replace>>
 <</link>>
 
 <<case "unhappy virgin">>
 
 <<if canDoAnal($activeSlave)>>
-<<link "No, and $his role is to suck dick and take it in the ass">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You patiently explain that you've decided to use $him as an oral and anal slave, and leave $his pussy unfucked. $He's unsurprised, but $he understands your decision. You usually fuck slaves during your inspection, and you don't exempt $him from this, but you do let $him take it easy. Rather than facefucking $him you let $him suckle you gently. Rather that a hard buttfuck, you take $him to the couch and gently spoon $him with your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his ass while making out with $him and playing with $his nipples. $He understands your forbearance and @@.hotpink;appreciates how kind $his <<= WrittenMaster()>> is.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>>
+	<<link "No, and $his role is to suck dick and take it in the ass">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You patiently explain that you've decided to use $him as an oral and anal slave, and leave $his pussy unfucked. $He's unsurprised, but $he understands your decision. You usually fuck slaves during your inspection, and you don't exempt $him from this, but you do let $him take it easy. Rather than facefucking $him you let $him suckle you gently. Rather that a hard buttfuck, you take $him to the couch and gently spoon $him with your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his ass while making out with $him and playing with $his nipples. $He understands your forbearance and @@.hotpink;appreciates how kind $his <<= WrittenMaster()>> is.@@
+			<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
+			<<= AnalVCheck()>>
+		<</replace>>
+	<</link>>
 <<else>>
-<<link "No, and $his role is to suck dick and like it">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You patiently explain that you've decided to use $him as an oral slave, since $his ass is off-limits, and leave $his pussy unfucked. $He's unsurprised, but $he understands your decision. You usually fuck slaves during your inspection, and you don't exempt $him from this, but you do let $him take it easy. Rather than facefucking $him you let $him suckle you gently, calmly patting $his head as $he does. $He understands your forbearance and @@.hotpink;appreciates how kind $his <<= WrittenMaster()>> is.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
-	<</replace>>
-<</link>>
+	<<link "No, and $his role is to suck dick and like it">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You patiently explain that you've decided to use $him as an oral slave, since $his ass is off-limits, and leave $his pussy unfucked. $He's unsurprised, but $he understands your decision. You usually fuck slaves during your inspection, and you don't exempt $him from this, but you do let $him take it easy. Rather than facefucking $him you let $him suckle you gently, calmly patting $his head as $he does. $He understands your forbearance and @@.hotpink;appreciates how kind $his <<= WrittenMaster()>> is.@@
+			<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
+		<</replace>>
+	<</link>>
 <</if>>
 <br><<link "No, and $he shouldn't have asked">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Despite being allowed to ask questions $he should not question $his <<= WrittenMaster()>>'s choices about $his sexual duties. To communicate the point, you<<if $PC.dick == 0>> don a strap-on and<</if>> order $him to lie on the desk, on $his back, with $his throat slack for penetration.
-	<<if canDoAnal($activeSlave)>>
-		After a good long throatfuck that leaves $him gasping and moaning, you flip $him over and fuck $his ass until $he's squealing with each thrust.
-	<<else>>
-		Only after an extended and forceful series of throatfuckings that leaves the bewildered $desc gasping for air and barely conscious, do you feel $he has learned what hole $he should be focused on. For good measure, you deepthroat $him one last time, to really drive the point home.
-	<</if>>
-	As $he leaves, sore all over, $he's @@.mediumorchid;badly confused@@ that $he was apparently punished for asking questions.
-	<<set $activeSlave.devotion -= 5>>
-	<<if canDoAnal($activeSlave)>>
-		<<= AnalVCheck()>>
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<else>>
-		<<set $activeSlave.counter.oral += 4, $oralTotal += 4>>
-	<</if>>
+		Despite being allowed to ask questions $he should not question $his <<= WrittenMaster()>>'s choices about $his sexual duties. To communicate the point, you<<if $PC.dick == 0>> don a strap-on and<</if>> order $him to lie on the desk, on $his back, with $his throat slack for penetration.
+		<<if canDoAnal($activeSlave)>>
+			After a good long throatfuck that leaves $him gasping and moaning, you flip $him over and fuck $his ass until $he's squealing with each thrust.
+		<<else>>
+			Only after an extended and forceful series of throatfuckings that leaves the bewildered $desc gasping for air and barely conscious, do you feel $he has learned what hole $he should be focused on. For good measure, you deepthroat $him one last time, to really drive the point home.
+		<</if>>
+		As $he leaves, sore all over, $he's @@.mediumorchid;badly confused@@ that $he was apparently punished for asking questions.
+		<<set $activeSlave.devotion -= 5>>
+		<<if canDoAnal($activeSlave)>>
+			<<= AnalVCheck()>>
+			<<set $activeSlave.counter.oral++, $oralTotal++>>
+		<<else>>
+			<<set $activeSlave.counter.oral += 4, $oralTotal += 4>>
+		<</if>>
 	<</replace>>
 <</link>>
 <br><<link "Yes, the time has come">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He framed $his desire to lose $his virginity in businesslike terms, but $his reaction to your assent suggests that $he also wouldn't mind having vanilla sex with $his <<= WrittenMaster()>>. You're already quite
-	<<if $PC.dick == 0>>
-		turned on by the idea, so you pull on a strap-on, pull $him over to the couch<<if ($activeSlave.chastityVagina)>>, unfasten $his chastity belt<</if>>,
-	<<else>>
-		hard, so you just lie down with $him on the couch<<if ($activeSlave.chastityVagina)>>, unfasten $his chastity belt,<</if>>
-	<</if>>
-	and have gentle vaginal sex in the missionary position <<if $PC.vagina == 1>><<if $PC.dick == 1>>, your own pussy moving back and forth gently at the base of your dick as you fuck $him<</if>><</if>>. $He gasps at the first penetration, but you take it slowly and lavish attention on $his lips, breasts, and nipples. Soon $he's shamelessly enjoying $himself. $His first vaginal sex is crowned with an abdominal-clenching orgasm. $He @@.hotpink;adores $his kind <<= WrittenMaster()>>.@@
-	<<set $activeSlave.devotion += 10, $activeSlave.counter.vaginal++, $activeSlave.vagina = 1, $vaginalTotal++>>
-	<<if $activeSlave.chastityVagina == 1>><<set $activeSlave.chastityVagina = 0>><</if>>
-	<<if canImpreg($activeSlave, $PC)>>
-		<<= knockMeUp($activeSlave, 25, 0, -1)>>
-	<</if>>
+		$He framed $his desire to lose $his virginity in businesslike terms, but $his reaction to your assent suggests that $he also wouldn't mind having vanilla sex with $his <<= WrittenMaster()>>. You're already quite
+		<<if $PC.dick == 0>>
+			turned on by the idea, so you pull on a strap-on, pull $him over to the couch<<if ($activeSlave.chastityVagina)>>, unfasten $his chastity belt<</if>>,
+		<<else>>
+			hard, so you just lie down with $him on the couch<<if ($activeSlave.chastityVagina)>>, unfasten $his chastity belt,<</if>>
+		<</if>>
+		and have gentle vaginal sex in the missionary position <<if $PC.vagina == 1>><<if $PC.dick == 1>>, your own pussy moving back and forth gently at the base of your dick as you fuck $him<</if>><</if>>. $He gasps at the first penetration, but you take it slowly and lavish attention on $his lips, breasts, and nipples. Soon $he's shamelessly enjoying $himself. $His first vaginal sex is crowned with an abdominal-clenching orgasm. $He @@.hotpink;adores $his kind <<= WrittenMaster()>>.@@
+		<<set $activeSlave.devotion += 10, $activeSlave.counter.vaginal++, $activeSlave.vagina = 1, $vaginalTotal++>>
+		<<if $activeSlave.chastityVagina == 1>><<set $activeSlave.chastityVagina = 0>><</if>>
+		<<if canImpreg($activeSlave, $PC)>>
+			<<= knockMeUp($activeSlave, 25, 0, -1)>>
+		<</if>>
 	<</replace>>
 <</link>><<if ($activeSlave.chastityVagina)>> //This option will remove $his chastity belt//<</if>>
 
@@ -9569,62 +9573,62 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Beg her pardon and offer to loan the bitch to her">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The businesswoman's anger turns to malicious anticipation as you call $activeSlave.slaveName over and inform $him that you and the businesswoman have decided $activeSlave.slaveName will be spending the night with her. Now that you look at your business partner, she has certain signs of a sadist. $activeSlave.slaveName notices too, and begins to cry<<if $activeSlave.bellyPreg >= 1500>> and shield $his pregnancy<</if>> as the businesswoman promises that there will be "no permanent damage." $activeSlave.slaveName is unceremoniously returned in the early hours of the morning. $His back and buttocks have been meticulously flogged right up to the very edge of damage, leaving angry marks across $his $activeSlave.skin skin. $His mouth lolls open, as though $he's been doing little but give cunnilingus. <<if $activeSlave.vagina != -1>>$His pussy,<<elseif $activeSlave.dick == 0>>$His shamefully featureless groin with its tiny little hole,<<else>>$His dick,<</if>> anus,<<if $activeSlave.belly >= 10001>> popped navel,<</if>> and even $his nipples show signs of torture. Whenever $he thinks of a sharp remark in the future, @@.hotpink;$he'll remember the pain and keep $his mouth shut.@@
-	<<set $activeSlave.behavioralFlaw = "none", $activeSlave.counter.oral += 5, $oralTotal += 5>>
+		The businesswoman's anger turns to malicious anticipation as you call $activeSlave.slaveName over and inform $him that you and the businesswoman have decided $activeSlave.slaveName will be spending the night with her. Now that you look at your business partner, she has certain signs of a sadist. $activeSlave.slaveName notices too, and begins to cry<<if $activeSlave.bellyPreg >= 1500>> and shield $his pregnancy<</if>> as the businesswoman promises that there will be "no permanent damage." $activeSlave.slaveName is unceremoniously returned in the early hours of the morning. $His back and buttocks have been meticulously flogged right up to the very edge of damage, leaving angry marks across $his $activeSlave.skin skin. $His mouth lolls open, as though $he's been doing little but give cunnilingus. <<if $activeSlave.vagina != -1>>$His pussy,<<elseif $activeSlave.dick == 0>>$His shamefully featureless groin with its tiny little hole,<<else>>$His dick,<</if>> anus,<<if $activeSlave.belly >= 10001>> popped navel,<</if>> and even $his nipples show signs of torture. Whenever $he thinks of a sharp remark in the future, @@.hotpink;$he'll remember the pain and keep $his mouth shut.@@
+		<<set $activeSlave.behavioralFlaw = "none", $activeSlave.counter.oral += 5, $oralTotal += 5>>
 	<</replace>>
 <</link>>
 <br><<link "Offer to spitroast the bitch between the two of you">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The businesswoman grins slowly and reaches into $his purse as you inform $activeSlave.slaveName that you and the businesswoman will punish $him together. $activeSlave.slaveName's eyes widen as the businesswoman fishes a massive strap-on out of $his bag. The surprise turns to fear as the businesswoman begins to slap it against $activeSlave.slaveName's buttocks as you
-	<<if $activeSlave.amp != 1>>
-		<<if $activeSlave.belly >= 300000>>
-			push $him onto $his _belly belly.
+		The businesswoman grins slowly and reaches into $his purse as you inform $activeSlave.slaveName that you and the businesswoman will punish $him together. $activeSlave.slaveName's eyes widen as the businesswoman fishes a massive strap-on out of $his bag. The surprise turns to fear as the businesswoman begins to slap it against $activeSlave.slaveName's buttocks as you
+		<<if $activeSlave.amp != 1>>
+			<<if $activeSlave.belly >= 300000>>
+				push $him onto $his _belly belly.
+			<<else>>
+				pull $him down on all fours.
+			<</if>>
 		<<else>>
-			pull $him down on all fours.
+			arrange your bitchy little sex toy between you and your guest.
 		<</if>>
-	<<else>>
-		arrange your bitchy little sex toy between you and your guest.
-	<</if>>
-	The businesswoman clearly wants $his ass, so you
-	<<if !canDoAnal($activeSlave)>>
-		quickly unfasten $his anal chastity. You
-	<</if>>
-	<<if $PC.vagina == 1>>ride $activeSlave.slaveName's face<<else>>facefuck $activeSlave.slaveName<</if>> roughly as $activeSlave.slaveName takes a painful anal raping from the huge dildo.
-	The businesswoman winks at you companionably and extracts squeals from $activeSlave.slaveName that feel especially delicious <<if $PC.vagina == 1>>against your cunt<<else>>along your dick<</if>>. $activeSlave.slaveName <<if $activeSlave.amp != 1>>collapses<<if $activeSlave.belly >= 5000>> and rolls onto $his side<</if>> after a long punishment fuck<<else>>ends the day a sore toy<</if>>; $his @@.hotpink;submission@@ to you and @@.gold;fear of you@@ have both increased.
-	<<if $activeSlave.anus == 0>>
-		The businesswoman considered $his @@.lime;anal cherry@@ a @@.green;respectable offer.@@
-		<<set $activeSlave.anus++>>
-		<<run repX(500, "event", $activeSlave)>>
-	<</if>>
-	<<set $activeSlave.devotion += 3, $activeSlave.trust -= 3, $activeSlave.counter.anal++, $analTotal++, $activeSlave.counter.oral++, $oralTotal++>>
+		The businesswoman clearly wants $his ass, so you
+		<<if !canDoAnal($activeSlave)>>
+			quickly unfasten $his anal chastity. You
+		<</if>>
+		<<if $PC.vagina == 1>>ride $activeSlave.slaveName's face<<else>>facefuck $activeSlave.slaveName<</if>> roughly as $activeSlave.slaveName takes a painful anal raping from the huge dildo.
+		The businesswoman winks at you companionably and extracts squeals from $activeSlave.slaveName that feel especially delicious <<if $PC.vagina == 1>>against your cunt<<else>>along your dick<</if>>. $activeSlave.slaveName <<if $activeSlave.amp != 1>>collapses<<if $activeSlave.belly >= 5000>> and rolls onto $his side<</if>> after a long punishment fuck<<else>>ends the day a sore toy<</if>>; $his @@.hotpink;submission@@ to you and @@.gold;fear of you@@ have both increased.
+		<<if $activeSlave.anus == 0>>
+			The businesswoman considered $his @@.lime;anal cherry@@ a @@.green;respectable offer.@@
+			<<set $activeSlave.anus++>>
+			<<run repX(500, "event", $activeSlave)>>
+		<</if>>
+		<<set $activeSlave.devotion += 3, $activeSlave.trust -= 3, $activeSlave.counter.anal++, $analTotal++, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity and ignore anal chastity//<</if>>
 <<if $arcade > 0>>
-<br><<link "Sentence $him to a month in the arcade">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$activeSlave.slaveName screams and begs when $he realizes what $his punishment for being stupid is to be, but you are obdurate.
-	<<if ($activeSlave.muscles > 30)>>
-		$His powerful form has to be sedated for immurement in the arcade.
-	<<elseif ($activeSlave.weight >= 190)>>
-		$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
-	<<elseif $activeSlave.belly >= 120000>>
-		$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
-	<<elseif ($activeSlave.weight >= -10)>>
-		$His desperate struggles make immuring $him in the arcade difficult.
-	<<elseif $activeSlave.belly >= 1500>>
-		$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
-	<<elseif $activeSlave.muscles < -15>>
-		$His weak body makes immuring $him in the arcade pathetically easy.
-	<<else>>
-		$His thin form makes immuring $him in the arcade pathetically easy.
-	<</if>>
-	After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
-	<<= assignJob($activeSlave, "be confined in the arcade")>>
-	<<set $activeSlave.sentence = 4>>
-	<</replace>>
-<</link>>
+	<br><<link "Sentence $him to a month in the arcade">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$activeSlave.slaveName screams and begs when $he realizes what $his punishment for being stupid is to be, but you are obdurate.
+			<<if ($activeSlave.muscles > 30)>>
+				$His powerful form has to be sedated for immurement in the arcade.
+			<<elseif ($activeSlave.weight >= 190)>>
+				$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
+			<<elseif $activeSlave.belly >= 120000>>
+				$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
+			<<elseif ($activeSlave.weight >= -10)>>
+				$His desperate struggles make immuring $him in the arcade difficult.
+			<<elseif $activeSlave.belly >= 1500>>
+				$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
+			<<elseif $activeSlave.muscles < -15>>
+				$His weak body makes immuring $him in the arcade pathetically easy.
+			<<else>>
+				$His thin form makes immuring $him in the arcade pathetically easy.
+			<</if>>
+			After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
+			<<= assignJob($activeSlave, "be confined in the arcade")>>
+			<<set $activeSlave.sentence = 4>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "obedient shemale">>
@@ -9632,41 +9636,41 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Let $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He moans with gratitude and relief. $He masturbates furiously as you continue to use $his butt. $He was clearly near the edge anyway, and
-	<<if ($activeSlave.balls > 0)>>
-		spatters the couch with cum
-	<<elseif $activeSlave.prostate > 0>>
-		spatters the couch with ejaculate
-	<<else>>
-		shakes with release
-	<</if>>
-	after just a few strokes of your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his butt. $His <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> ass spasms and tightens with $his climax<<if $PC.dick == 1>>, a wonderful sensation<</if>>. You aren't finished with $him, but $he rubs $himself languidly and enjoys the hard anal reaming more than $he ever has previously. $His devotion to you @@.hotpink;has increased.@@
-	<<set $activeSlave.devotion += 4>>
-	<<= AnalVCheck()>>
+		$He moans with gratitude and relief. $He masturbates furiously as you continue to use $his butt. $He was clearly near the edge anyway, and
+		<<if ($activeSlave.balls > 0)>>
+			spatters the couch with cum
+		<<elseif $activeSlave.prostate > 0>>
+			spatters the couch with ejaculate
+		<<else>>
+			shakes with release
+		<</if>>
+		after just a few strokes of your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his butt. $His <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> ass spasms and tightens with $his climax<<if $PC.dick == 1>>, a wonderful sensation<</if>>. You aren't finished with $him, but $he rubs $himself languidly and enjoys the hard anal reaming more than $he ever has previously. $His devotion to you @@.hotpink;has increased.@@
+		<<set $activeSlave.devotion += 4>>
+		<<= AnalVCheck()>>
 	<</replace>>
 <</link>>
 <br><<link "Train $him to be a skilled anal bottom">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He obeys your orders to keep $his hands off $his dick, but can't hide $his disappointment and frustration. You keep a close watch on $him, and buttfuck $him every chance you get, teaching $him the finer points of taking a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up the butt. You focus entirely on your pleasure, teaching $him how to use $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> anal ring to extract orgasms from cocks. This experience was hard for $him but has increased $his anal skill.
-	<<= SkillIncrease.Anal($activeSlave, 10)>>
-	<<= AnalVCheck(9)>>
+		$He obeys your orders to keep $his hands off $his dick, but can't hide $his disappointment and frustration. You keep a close watch on $him, and buttfuck $him every chance you get, teaching $him the finer points of taking a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up the butt. You focus entirely on your pleasure, teaching $him how to use $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> anal ring to extract orgasms from cocks. This experience was hard for $him but has increased $his anal skill.
+		<<= SkillIncrease.Anal($activeSlave, 10)>>
+		<<= AnalVCheck(9)>>
 	<</replace>>
 <</link>>
 <<if (($activeSlave.fetish != "buttslut") || ($activeSlave.fetishKnown != 1)) && $activeSlave.prostate > 0>>
-<br><<link "Train $him to orgasm anally">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He obeys your orders to keep $his hands off $his dick, but can't hide $his disappointment and frustration. You keep a close watch on $him, and fuck $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> anus every chance you get, keeping $him desperately aroused and desperately sodomized. After some days of this, $he finally reaches a point of desperate arousal that permits $him to orgasm to prostate stimulation alone.
-	<<= AnalVCheck(9)>>
-	<<if random(1,100) > 50>>
-		<<set $activeSlave.fetishStrength = 10, $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1>>
-		Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of anal sex.@@
-	<<else>>
-		Despite being used as an anal slut for a whole week, $he was not significantly affected.
-	<</if>>
-	<</replace>>
-<</link>>
+	<br><<link "Train $him to orgasm anally">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$He obeys your orders to keep $his hands off $his dick, but can't hide $his disappointment and frustration. You keep a close watch on $him, and fuck $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> anus every chance you get, keeping $him desperately aroused and desperately sodomized. After some days of this, $he finally reaches a point of desperate arousal that permits $him to orgasm to prostate stimulation alone.
+			<<= AnalVCheck(9)>>
+			<<if random(1,100) > 50>>
+				<<set $activeSlave.fetishStrength = 10, $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1>>
+				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of anal sex.@@
+			<<else>>
+				Despite being used as an anal slut for a whole week, $he was not significantly affected.
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "obedient addict">>
@@ -9674,53 +9678,53 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Make an example by forcing $him to take a massive dose">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You take $him by the shoulders, look into $his eyes, and tell $him you'll fix things so $he doesn't mind so much. $He looks hopeful, even when you tell $him to take $his pill. $He does, and you hand $him another. And another. $He's crying with dread by the fourth pill, knowing that this is $his punishment for complaining. $His pupils dilate, $he begins to breathe hard, and $his $activeSlave.skin skin flushes badly. $He tries to beg you to fuck $him but can't seem to find the words. $He begins to masturbate compulsively, so hard that $he collapses to the kitchen floor with $his first spastic orgasm.
-	<<if ($activeSlave.chastityPenis == 1)>>
-		$His cock is painfully compressed by $his chastity cage, but it does nothing to stop $his frantic efforts to come.
-	<<elseif canAchieveErection($activeSlave)>>
-		<<if $activeSlave.dick > 9>>
-			$His inhuman cock is as engorged as physically possible given its size, threatens to knock $him unconscious from the sheer amount of blood diverted into it, and doesn't shrink at all when cum weakly splurts from its tip.
-		<<elseif $activeSlave.dick > 6>>
-			$His monstrous cock is agonizingly erect, threatens to knock $him unconscious from the sheer amount of blood is takes $him to get hard, and doesn't soften at all when $he spatters $his own chest with cum.
-		<<elseif $activeSlave.dick > 4>>
-			$His huge cock is agonizingly erect and doesn't soften at all when $he spatters $his own chest with cum.
-		<<elseif $activeSlave.dick > 3>>
-			$His big cock is agonizingly erect and doesn't soften at all when $he spatters $his own chest with cum.
-		<<elseif $activeSlave.dick > 1>>
-			$His cock is agonizingly erect and doesn't soften at all when $he spatters $his own chest with cum.
-		<<elseif $activeSlave.dick > 0>>
-			$His pathetic dick is agonizingly erect and doesn't soften at all when $he weakly dribbles cum.
+		You take $him by the shoulders, look into $his eyes, and tell $him you'll fix things so $he doesn't mind so much. $He looks hopeful, even when you tell $him to take $his pill. $He does, and you hand $him another. And another. $He's crying with dread by the fourth pill, knowing that this is $his punishment for complaining. $His pupils dilate, $he begins to breathe hard, and $his $activeSlave.skin skin flushes badly. $He tries to beg you to fuck $him but can't seem to find the words. $He begins to masturbate compulsively, so hard that $he collapses to the kitchen floor with $his first spastic orgasm.
+		<<if ($activeSlave.chastityPenis == 1)>>
+			$His cock is painfully compressed by $his chastity cage, but it does nothing to stop $his frantic efforts to come.
+		<<elseif canAchieveErection($activeSlave)>>
+			<<if $activeSlave.dick > 9>>
+				$His inhuman cock is as engorged as physically possible given its size, threatens to knock $him unconscious from the sheer amount of blood diverted into it, and doesn't shrink at all when cum weakly splurts from its tip.
+			<<elseif $activeSlave.dick > 6>>
+				$His monstrous cock is agonizingly erect, threatens to knock $him unconscious from the sheer amount of blood is takes $him to get hard, and doesn't soften at all when $he spatters $his own chest with cum.
+			<<elseif $activeSlave.dick > 4>>
+				$His huge cock is agonizingly erect and doesn't soften at all when $he spatters $his own chest with cum.
+			<<elseif $activeSlave.dick > 3>>
+				$His big cock is agonizingly erect and doesn't soften at all when $he spatters $his own chest with cum.
+			<<elseif $activeSlave.dick > 1>>
+				$His cock is agonizingly erect and doesn't soften at all when $he spatters $his own chest with cum.
+			<<elseif $activeSlave.dick > 0>>
+				$His pathetic dick is agonizingly erect and doesn't soften at all when $he weakly dribbles cum.
+			<</if>>
+		<<elseif canDoVaginal($activeSlave)>>
+			$His pussy is dripping with moisture and $his ragingly stiff clit doesn't soften at all when $he comes.
+		<<elseif canDoAnal($activeSlave)>>
+			$His hungry asshole spasms with orgasm, but $he doesn't even pause $his anal masturbation.
+		<<else>>
+			$His whole body spasms with orgasm, but $he doesn't even pause $his efforts to draw out an orgasm by any means possible.
 		<</if>>
-	<<elseif canDoVaginal($activeSlave)>>
-		$His pussy is dripping with moisture and $his ragingly stiff clit doesn't soften at all when $he comes.
-	<<elseif canDoAnal($activeSlave)>>
-		$His hungry asshole spasms with orgasm, but $he doesn't even pause $his anal masturbation.
-	<<else>>
-		$His whole body spasms with orgasm, but $he doesn't even pause $his efforts to draw out an orgasm by any means possible.
-	<</if>>
-	For the hour or so it takes $him to pass out, slaves using the kitchen have to step over $his prostrate, orgasming body, lying in a pool of $his own drool, tears, sweat, and fluids. The next time you see $him in the kitchen, $he takes $his medicine like a @@.gold;good $girl.@@ All your aphrodisiac addicts recognize the symptoms and the punishment, and @@.gold;avoid even thinking@@ about resisting the system.
-	<<set $slaves.forEach(function(s) { if (s.aphrodisiacs > 0 || s.inflationType == "aphrodisiac") { s.trust -= 5; } })>>
+		For the hour or so it takes $him to pass out, slaves using the kitchen have to step over $his prostrate, orgasming body, lying in a pool of $his own drool, tears, sweat, and fluids. The next time you see $him in the kitchen, $he takes $his medicine like a @@.gold;good $girl.@@ All your aphrodisiac addicts recognize the symptoms and the punishment, and @@.gold;avoid even thinking@@ about resisting the system.
+		<<set $slaves.forEach(function(s) { if (s.aphrodisiacs > 0 || s.inflationType == "aphrodisiac") { s.trust -= 5; } })>>
 	<</replace>>
 <</link>>
 <<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
-<br><<link "Have caring sex with $him before $he takes the aphrodisiacs">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You back $him up against the wall of the kitchen, kissing $him, touching $his body with care, and quietly shushing $his attempts to ask questions. You deftly extract the pill form $his hand and put it on the counter for later. With time and skill you bring $him to a fine state of arousal, not to mention @@.hotpink;emotional need;@@ $he begins to kiss you back with almost frantic enthusiasm. When $he's clearly ready, you lay $him across the kitchen table and <<if $PC.dick == 0>>work your groin up between $his legs<<else>>enter $him<</if>>, drawing out a lusty moan. As the sex continues, however, $he begins to look doubtful, then distracted, and then to twitch occasionally. Finally $he bursts into tears.
-	<<if !canTalk($activeSlave)>>
-		$He indicates through $his weeping that $he can't climax without the drugs.
-	<<else>>
-		"I — I — fucking need my fix to come, <<Master>>," $he sobs.
-	<</if>>
-	You pass $him the pill, and $he continues to weep inconsolably, apologizing all the while, until the drug takes away $his ability to care about anything but getting fucked. When you finish and extract <<if $PC.dick == 0>>yourself from between $his legs<<else>>your cock from $his well-used hole<</if>>, though, you think you can detect a deep sadness in $his eyes that it cannot reach.
-	<<set $activeSlave.devotion += 4>>
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<br><<link "Have caring sex with $him before $he takes the aphrodisiacs">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You back $him up against the wall of the kitchen, kissing $him, touching $his body with care, and quietly shushing $his attempts to ask questions. You deftly extract the pill form $his hand and put it on the counter for later. With time and skill you bring $him to a fine state of arousal, not to mention @@.hotpink;emotional need;@@ $he begins to kiss you back with almost frantic enthusiasm. When $he's clearly ready, you lay $him across the kitchen table and <<if $PC.dick == 0>>work your groin up between $his legs<<else>>enter $him<</if>>, drawing out a lusty moan. As the sex continues, however, $he begins to look doubtful, then distracted, and then to twitch occasionally. Finally $he bursts into tears.
+			<<if !canTalk($activeSlave)>>
+				$He indicates through $his weeping that $he can't climax without the drugs.
+			<<else>>
+				"I — I — fucking need my fix to come, <<Master>>," $he sobs.
+			<</if>>
+			You pass $him the pill, and $he continues to weep inconsolably, apologizing all the while, until the drug takes away $his ability to care about anything but getting fucked. When you finish and extract <<if $PC.dick == 0>>yourself from between $his legs<<else>>your cock from $his well-used hole<</if>>, though, you think you can detect a deep sadness in $his eyes that it cannot reach.
+			<<set $activeSlave.devotion += 4>>
+			<<if canDoVaginal($activeSlave)>>
+				<<= VaginalVCheck()>>
+			<<else>>
+				<<= AnalVCheck()>>
+			<</if>>
+		<</replace>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 
 <<case "impregnation please">>
@@ -9737,239 +9741,239 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 	<</if>>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Despite $himself, $he breaks down when $he feels your cock enter $his
-	<<if $activeSlave.mpreg == 1>>
-		<<if ($activeSlave.anus == 1)>>
-			deliciously tight
-		<<elseif ($activeSlave.anus == 2)>>
-			well experienced
+		Despite $himself, $he breaks down when $he feels your cock enter $his
+		<<if $activeSlave.mpreg == 1>>
+			<<if ($activeSlave.anus == 1)>>
+				deliciously tight
+			<<elseif ($activeSlave.anus == 2)>>
+				well experienced
+			<<else>>
+				fucked-out
+			<</if>>
+			ass.
 		<<else>>
-			fucked-out
+			<<if ($activeSlave.vagina == 1)>>
+				deliciously tight
+			<<elseif ($activeSlave.vagina == 2)>>
+				well experienced
+			<<else>>
+				fucked-out
+			<</if>>
+			cunt.
 		<</if>>
-		ass.
-	<<else>>
-		<<if ($activeSlave.vagina == 1)>>
-			deliciously tight
-		<<elseif ($activeSlave.vagina == 2)>>
-			well experienced
+		$He <<if _superfetation == 1>>grinds against you<<else>>smiles up reassuringly at you<</if>> to let you know $he's not in pain or anguish, blinking away $his happy tears.
+		<<if _faceUp == 1>>
+			$He reaches up to hug $himself close to you,
+			<<if $activeSlave.belly >= 5000>>
+				but the gravid swell of $his current pregnancy thwarts $his efforts as you take $him.
+			<<elseif ($activeSlave.boobs < 600) && $activeSlave.belly < 5000>>
+				and $his modest breasts let $him snuggle close to you, face-to-face, as you take $him.
+			<<elseif $activeSlave.belly >= 5000 && $activeSlave.boobs < 600>>
+				$his big $activeSlave.inflationType stuffed belly pushing against you as you take $him.
+			<<elseif ($activeSlave.boobs < 10000)>>
+				and $his big tits <<if $activeSlave.belly >= 2000>>and $activeSlave.inflationType stuffed belly <</if>>form a soft cushion between you as you take $him.
+			<<else>>
+				but $his massive tits stop $him from bringing $himself too close to you as you take $him.
+			<</if>>
 		<<else>>
-			fucked-out
+			$He reaches back to take your hand, slowly bringing it back to the swell of $his baby bump.
 		<</if>>
-		cunt.
-	<</if>>
-	$He <<if _superfetation == 1>>grinds against you<<else>>smiles up reassuringly at you<</if>> to let you know $he's not in pain or anguish, blinking away $his happy tears.
-	<<if _faceUp == 1>>
-		$He reaches up to hug $himself close to you,
-		<<if $activeSlave.belly >= 5000>>
-			but the gravid swell of $his current pregnancy thwarts $his efforts as you take $him.
-		<<elseif ($activeSlave.boobs < 600) && $activeSlave.belly < 5000>>
-			and $his modest breasts let $him snuggle close to you, face-to-face, as you take $him.
-		<<elseif $activeSlave.belly >= 5000 && $activeSlave.boobs < 600>>
-			$his big $activeSlave.inflationType stuffed belly pushing against you as you take $him.
-		<<elseif ($activeSlave.boobs < 10000)>>
-			and $his big tits <<if $activeSlave.belly >= 2000>>and $activeSlave.inflationType stuffed belly <</if>>form a soft cushion between you as you take $him.
+		$He enjoys $himself immensely, but $he loses it again when $he feels your
+		<<if $PC.balls == 3>>
+			<<if _superfetation == 1>>
+				seed inflating $his womb until $his stomach is <<if $activeSlave.belly >= 2000>>noticeably larger than when $he started<<else>>distended and wobbling with cum<</if>>.
+			<<else>>
+				seed fill $his cramped womb and start to backflow.
+			<</if>>
+		<<elseif $PC.balls == 2>>
+			seed pumping into $his until $his womb is stuffed with cum.
+		<<elseif $PC.balls == 1>>
+			seed pouring into $him.
 		<<else>>
-			but $his massive tits stop $him from bringing $himself too close to you as you take $him.
+			seed.
 		<</if>>
-	<<else>>
-		$He reaches back to take your hand, slowly bringing it back to the swell of $his baby bump.
-	<</if>>
-	$He enjoys $himself immensely, but $he loses it again when $he feels your
-	<<if $PC.balls == 3>>
-		<<if _superfetation == 1>>
-			seed inflating $his womb until $his stomach is <<if $activeSlave.belly >= 2000>>noticeably larger than when $he started<<else>>distended and wobbling with cum<</if>>.
+		$He starts blubbering inelegantly and
+		<<if !canTalk($activeSlave)>>
+			gesturing
+		<<elseif ($activeSlave.lips > 70) || ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
+			lisping
 		<<else>>
-			seed fill $his cramped womb and start to backflow.
+			whimpering
 		<</if>>
-	<<elseif $PC.balls == 2>>
-		seed pumping into $his until $his womb is stuffed with cum.
-	<<elseif $PC.balls == 1>>
-		seed pouring into $him.
-	<<else>>
-		seed.
-	<</if>>
-	$He starts blubbering inelegantly and
-	<<if !canTalk($activeSlave)>>
-		gesturing
-	<<elseif ($activeSlave.lips > 70) || ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-		lisping
-	<<else>>
-		whimpering
-	<</if>>
-	@@.hotpink;$his thanks.@@
-	<<set $activeSlave.devotion += 4>>
-	<<if $activeSlave.mpreg == 1>>
-		<<set $activeSlave.counter.anal++, $analTotal++>>
-	<<else>>
-		<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
-	<</if>>
-	<<= knockMeUp($activeSlave, 50, 2, -1, 1)>>
-	<</replace>>
-<</link>>
-<<if $activeSlave.mpreg == 0>>
-<br><<link "Use $his ass but give $him what $he wants">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that impregnation will be $his reward if $he's a good little buttslut<<if ($activeSlave.chastityVagina) || ($activeSlave.chastityAnus)>> as you undo $his chastity<</if>>.
-	$He visibly resolves to do $his anal best. You recline on the couch and $he squats over you, one leg on the floor and the other bent up on the cushion, with one hand on the back of the couch and the other rubbing $his pussy. $He
-	<<if ($activeSlave.anus == 1)>>
-		winces in pain as $he lowers $his tight
-	<<elseif ($activeSlave.anus == 2)>>
-		moans with discomfort as $he lowers $his tight
-	<<else>>
-		barely reacts as $he lowers $his huge
-	<</if>>
-	butthole down onto your cock. $He gets quite a workout, raising and lowering $his body to fuck $his own ass on your stationary dick.
-	<<if _faceUp == 1>>
-		Since $he's facing you you get a great view of $his body in motion.
-	<<else>>
-		$He's so heavy with child, you eventually have to give $him a hand as $he steadily tires.
-	<</if>>
-	$His <<if $activeSlave.clit>>clitoral <</if>>stimulation is having an effect, and after a while $he
-	<<if !canTalk($activeSlave)>>
-		takes $his hand away to make an unintelligible gesture. After $he repeats it, you figure out that $he means $he wishes $he could get pregnant anally.
-	<<else>>
-		pants, "That'<<s>> <<s>>o good, <<Master>>. I wi<<sh>> you could get my a<<ss>> pregnant."
-	<</if>>
-	When you're close, you scoot back to pull yourself out and $he spears $his cunt down onto your cock. The sudden difference of sensation brings you to violent climax, and $he @@.hotpink;cries with joy@@ at feeling your hot
-	<<if $PC.balls == 3>>
-		<<if _superfetation == 1>>
-			seed inflating $his womb until $his stomach is <<if $activeSlave.belly >= 2000>>noticeably larger than when $he started<<else>>distended and wobbling with cum<</if>>.
+		@@.hotpink;$his thanks.@@
+		<<set $activeSlave.devotion += 4>>
+		<<if $activeSlave.mpreg == 1>>
+			<<set $activeSlave.counter.anal++, $analTotal++>>
 		<<else>>
-			seed fill $his cramped womb and start to backflow.
+			<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
 		<</if>>
-	<<elseif $PC.balls == 2>>
-		seed pumping into $him until $his womb is stuffed with cum.
-	<<elseif $PC.balls == 1>>
-		seed pouring into $him.
-	<<else>>
-		seed.
-	<</if>>
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.anal++, $analTotal++, $activeSlave.counter.vaginal++, $vaginalTotal++>>
-	<<= knockMeUp($activeSlave, 50, 0, -1, 1)>>
-	<</replace>>
-<</link>>
-<br><<link "Sneak it into $his ass instead">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	Despite $himself, $he breaks down when $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>notices<</if>> you coming over and kneeling down to line your cock up with the entrance to $his
-	<<if ($activeSlave.vagina == 1)>>
-		deliciously tight
-	<<elseif ($activeSlave.vagina == 2)>>
-		well experienced
-	<<else>>
-		fucked-out
-	<</if>>
-	cunt. $His happy tears turn to a ragged gasp of surprise and pain when you slide your dickhead down to $his
-	<<if ($activeSlave.anus == 1)>>
-		painfully inexperienced
-	<<elseif ($activeSlave.anus == 2)>>
-		tight
-	<<else>>
-		loose
-	<</if>>
-	ass and shove it up there instead. $He knows better than to protest, but the expression on $his face is a wonderful mix of submission, anguish and disappointment as $he takes the anal fuck. To stop $his fugue of disappointment you give $him a light slap on the cheek to get $his attention, and then instruct $him that it's not $his place
-	<<if _superfetation == 1>>
-		to decide how pregnant he gets to be.
-	<<else>>
-		to plan $his pregnancies.
-	<</if>>
-	 They'll happen when they happen, and until then $he'll take it up the butt like a good slut. $He @@.gold;nods and wipes $his eyes@@ even as
-	<<if ($activeSlave.anus == 1)>>
-		$he grimaces involuntarily at your painful use of $his tight butthole.
-	<<elseif ($activeSlave.anus == 2)>>
-		$he takes your cock up $his tight ass.
-	<<else>>
-		$his gaping anus makes occasional lewd noises as you pound it.
-	<</if>>
-	<<set $activeSlave.trust -= 5, $activeSlave.counter.anal++, $analTotal++>>
-	<</replace>>
-<</link>>
-<<else>>
-<br><<link "Use $his ass but finish across $his back">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that impregnation will be $his reward if $he's a good little buttslut. $He visibly resolves to do $his anal best. You recline on the couch and $he squats over you, one leg on the floor and the other bent up on the cushion, with one hand on the back of the couch and the other <<if $activeSlave.nipples != "fuckable">>pinching<<else>>fingering<</if>> a nipple. $He
-	<<if ($activeSlave.anus == 1)>>
-		winces in pain as $he lowers $his tight
-	<<elseif ($activeSlave.anus == 2)>>
-		moans with discomfort as $he lowers $his tight
-	<<else>>
-		barely reacts as $he lowers $his huge
-	<</if>>
-	butthole down onto your cock. $He gets quite a workout, raising and lowering $his body to fuck $his own ass on your stationary dick.
-	<<if _faceUp == 1>>
-		Since $he's facing you you get a great view of $his body in motion.
-	<<else>>
-		$He's so heavy with child, you eventually have to give $him a hand as $he steadily tires.
-	<</if>>
-	$His stimulation is having an effect, and after a while $he
-	<<if !canTalk($activeSlave)>>
-		takes $his hand away to make an unintelligible gesture. After $he repeats it, you figure out that $he means $he is thrilled to be able to get anally pregnant<<if _superfetation == 1>> and is about to conceive again<</if>>.
-	<<else>>
-		pants, "That'<<s>> <<s>>o good, <<Master>>. I'm <<s>>o glad my a<<ss>> i<<s>> fertile."
-	<</if>>
-	When you're at your limit, you quickly pull
-	<<if _faceUp == 1>>
-		out, slide slightly further under $him
-	<<else>>
-		out
-	<</if>>
-	and thrust up between $his asscheeks, blowing your hot seed
-	<<if $PC.balls == 3>>
-		across $his entire back.
-	<<elseif $PC.balls == 2>>
-		across $his back.
-	<<else>>
-		across $his lower back.
-	<</if>>
-	$He stops riding you and <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> you with a look of @@.mediumorchid;disbelief.@@ You shrug, must have slippped out under all $his enthusiasm.
-	<<set $activeSlave.devotion -= 5, $activeSlave.counter.anal++, $analTotal++>>
+		<<= knockMeUp($activeSlave, 50, 2, -1, 1)>>
 	<</replace>>
 <</link>>
-<</if>>
-<<if ($cumSlaves >= 5)>>
-	<br><<link "Use the Dairy cockmilk to impregnate $him">>
+<<if $activeSlave.mpreg == 0>>
+	<br><<link "Use $his ass but give $him what $he wants">>
 		<<EventNameDelink $activeSlave>>
 		<<replace "#result">>
-		You tell $him $he'll be having everyone's children. $He looks puzzled until you put $him on the couch, legs spread, and produce a large, soft injector full of fresh cum. At this $he giggles and thanks you; $he rapturously rubs $his _belly belly as you gently push the injector home. For the rest of the week, $he appears in your office morning and night, receiving the seed of every slave you're currently having cockmilked. $He goes about $his other business with a @@.hotpink;deeply pleased@@ expression on $his face. Whenever $he has a spare moment $he steals down to the Dairy to hug the slaves there or otherwise show them a little affection.
-		<<set $activeSlave.devotion += 10>>
-		<<set _cumSlaves = $slaves.filter(function(s) { return (s.assignment == "get milked" || s.assignment == "work in the dairy") && s.balls > 0 && s.ballType == "human"; })>>
-		<<if _cumSlaves.length > 0>>
-			<<set _cumSlave = _cumSlaves.random()>>
-			<<= knockMeUp($activeSlave, 90, 2, _cumSlave.ID, 1)>>
-		<</if>>
+			You tell $him that impregnation will be $his reward if $he's a good little buttslut<<if ($activeSlave.chastityVagina) || ($activeSlave.chastityAnus)>> as you undo $his chastity<</if>>.
+			$He visibly resolves to do $his anal best. You recline on the couch and $he squats over you, one leg on the floor and the other bent up on the cushion, with one hand on the back of the couch and the other rubbing $his pussy. $He
+			<<if ($activeSlave.anus == 1)>>
+				winces in pain as $he lowers $his tight
+			<<elseif ($activeSlave.anus == 2)>>
+				moans with discomfort as $he lowers $his tight
+			<<else>>
+				barely reacts as $he lowers $his huge
+			<</if>>
+			butthole down onto your cock. $He gets quite a workout, raising and lowering $his body to fuck $his own ass on your stationary dick.
+			<<if _faceUp == 1>>
+				Since $he's facing you you get a great view of $his body in motion.
+			<<else>>
+				$He's so heavy with child, you eventually have to give $him a hand as $he steadily tires.
+			<</if>>
+			$His <<if $activeSlave.clit>>clitoral <</if>>stimulation is having an effect, and after a while $he
+			<<if !canTalk($activeSlave)>>
+				takes $his hand away to make an unintelligible gesture. After $he repeats it, you figure out that $he means $he wishes $he could get pregnant anally.
+			<<else>>
+				pants, "That'<<s>> <<s>>o good, <<Master>>. I wi<<sh>> you could get my a<<ss>> pregnant."
+			<</if>>
+			When you're close, you scoot back to pull yourself out and $he spears $his cunt down onto your cock. The sudden difference of sensation brings you to violent climax, and $he @@.hotpink;cries with joy@@ at feeling your hot
+			<<if $PC.balls == 3>>
+				<<if _superfetation == 1>>
+					seed inflating $his womb until $his stomach is <<if $activeSlave.belly >= 2000>>noticeably larger than when $he started<<else>>distended and wobbling with cum<</if>>.
+				<<else>>
+					seed fill $his cramped womb and start to backflow.
+				<</if>>
+			<<elseif $PC.balls == 2>>
+				seed pumping into $him until $his womb is stuffed with cum.
+			<<elseif $PC.balls == 1>>
+				seed pouring into $him.
+			<<else>>
+				seed.
+			<</if>>
+			<<set $activeSlave.devotion += 4, $activeSlave.counter.anal++, $analTotal++, $activeSlave.counter.vaginal++, $vaginalTotal++>>
+			<<= knockMeUp($activeSlave, 50, 0, -1, 1)>>
 		<</replace>>
 	<</link>>
-<</if>>
-
-<<case "fearful balls">>
-
-<<link "Threaten $him with castration">>
-	<<EventNameDelink $activeSlave>>
+	<br><<link "Sneak it into $his ass instead">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			Despite $himself, $he breaks down when $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>notices<</if>> you coming over and kneeling down to line your cock up with the entrance to $his
+			<<if ($activeSlave.vagina == 1)>>
+				deliciously tight
+			<<elseif ($activeSlave.vagina == 2)>>
+				well experienced
+			<<else>>
+				fucked-out
+			<</if>>
+			cunt. $His happy tears turn to a ragged gasp of surprise and pain when you slide your dickhead down to $his
+			<<if ($activeSlave.anus == 1)>>
+				painfully inexperienced
+			<<elseif ($activeSlave.anus == 2)>>
+				tight
+			<<else>>
+				loose
+			<</if>>
+			ass and shove it up there instead. $He knows better than to protest, but the expression on $his face is a wonderful mix of submission, anguish and disappointment as $he takes the anal fuck. To stop $his fugue of disappointment you give $him a light slap on the cheek to get $his attention, and then instruct $him that it's not $his place
+			<<if _superfetation == 1>>
+				to decide how pregnant he gets to be.
+			<<else>>
+				to plan $his pregnancies.
+			<</if>>
+			 They'll happen when they happen, and until then $he'll take it up the butt like a good slut. $He @@.gold;nods and wipes $his eyes@@ even as
+			<<if ($activeSlave.anus == 1)>>
+				$he grimaces involuntarily at your painful use of $his tight butthole.
+			<<elseif ($activeSlave.anus == 2)>>
+				$he takes your cock up $his tight ass.
+			<<else>>
+				$his gaping anus makes occasional lewd noises as you pound it.
+			<</if>>
+			<<set $activeSlave.trust -= 5, $activeSlave.counter.anal++, $analTotal++>>
+		<</replace>>
+	<</link>>
+<<else>>
+	<br><<link "Use $his ass but finish across $his back">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him that impregnation will be $his reward if $he's a good little buttslut. $He visibly resolves to do $his anal best. You recline on the couch and $he squats over you, one leg on the floor and the other bent up on the cushion, with one hand on the back of the couch and the other <<if $activeSlave.nipples != "fuckable">>pinching<<else>>fingering<</if>> a nipple. $He
+			<<if ($activeSlave.anus == 1)>>
+				winces in pain as $he lowers $his tight
+			<<elseif ($activeSlave.anus == 2)>>
+				moans with discomfort as $he lowers $his tight
+			<<else>>
+				barely reacts as $he lowers $his huge
+			<</if>>
+			butthole down onto your cock. $He gets quite a workout, raising and lowering $his body to fuck $his own ass on your stationary dick.
+			<<if _faceUp == 1>>
+				Since $he's facing you you get a great view of $his body in motion.
+			<<else>>
+				$He's so heavy with child, you eventually have to give $him a hand as $he steadily tires.
+			<</if>>
+			$His stimulation is having an effect, and after a while $he
+			<<if !canTalk($activeSlave)>>
+				takes $his hand away to make an unintelligible gesture. After $he repeats it, you figure out that $he means $he is thrilled to be able to get anally pregnant<<if _superfetation == 1>> and is about to conceive again<</if>>.
+			<<else>>
+				pants, "That'<<s>> <<s>>o good, <<Master>>. I'm <<s>>o glad my a<<ss>> i<<s>> fertile."
+			<</if>>
+			When you're at your limit, you quickly pull
+			<<if _faceUp == 1>>
+				out, slide slightly further under $him
+			<<else>>
+				out
+			<</if>>
+			and thrust up between $his asscheeks, blowing your hot seed
+			<<if $PC.balls == 3>>
+				across $his entire back.
+			<<elseif $PC.balls == 2>>
+				across $his back.
+			<<else>>
+				across $his lower back.
+			<</if>>
+			$He stops riding you and <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> you with a look of @@.mediumorchid;disbelief.@@ You shrug; it must have slipped out under all $his enthusiasm.
+			<<set $activeSlave.devotion -= 5, $activeSlave.counter.anal++, $analTotal++>>
+		<</replace>>
+	<</link>>
+<</if>>
+<<if ($cumSlaves >= 5)>>
+	<br><<link "Use the Dairy cockmilk to impregnate $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him $he'll be having everyone's children. $He looks puzzled until you put $him on the couch, legs spread, and produce a large, soft injector full of fresh cum. At this $he giggles and thanks you; $he rapturously rubs $his _belly belly as you gently push the injector home. For the rest of the week, $he appears in your office morning and night, receiving the seed of every slave you're currently having cockmilked. $He goes about $his other business with a @@.hotpink;deeply pleased@@ expression on $his face. Whenever $he has a spare moment $he steals down to the Dairy to hug the slaves there or otherwise show them a little affection.
+			<<set $activeSlave.devotion += 10>>
+			<<set _cumSlaves = $slaves.filter(function(s) { return (s.assignment == "get milked" || s.assignment == "work in the dairy") && s.balls > 0 && s.ballType == "human"; })>>
+			<<if _cumSlaves.length > 0>>
+				<<set _cumSlave = _cumSlaves.random()>>
+				<<= knockMeUp($activeSlave, 90, 2, _cumSlave.ID, 1)>>
+			<</if>>
+		<</replace>>
+	<</link>>
+<</if>>
+
+<<case "fearful balls">>
+
+<<link "Threaten $him with castration">>
+	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You open a drawer of your desk and extract a razor-sharp ceramic-bladed knife. <<if canSee($activeSlave)>>You make a show of inspecting its edge and then place it on your desk before looking meaningfully at $his ballsack. $He watches this display with wide eyes<<else>>You describe what it is you took out of your desk and how easily it could be used to remove $his ballsack. $He cocks $his head slightly<</if>> until $he gets your meaning, and then collapses to the ground, almost wetting $himself.
-	<<if !canTalk($activeSlave)>>
-		$He frantically uses $his hands to promise you perfect obedience if you'll only spare $him from emasculation.
-	<<else>>
-		$He begs through tears, "Plea<<s>>e no, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>! Plea<<s>>e let me keep them! Plea<<s>>e!"
-	<</if>>
-	You patiently inform $him that $he can — for now, and so long as $he is a good little $girl. $He flees from the room backwards, bowing, scraping, and profusely thanking you, repeating desperate @@.gold;promises of good behavior.@@
-	<<set $activeSlave.trust -= 5>>
+		You open a drawer of your desk and extract a razor-sharp ceramic-bladed knife. <<if canSee($activeSlave)>>You make a show of inspecting its edge and then place it on your desk before looking meaningfully at $his ballsack. $He watches this display with wide eyes<<else>>You describe what it is you took out of your desk and how easily it could be used to remove $his ballsack. $He cocks $his head slightly<</if>> until $he gets your meaning, and then collapses to the ground, almost wetting $himself.
+		<<if !canTalk($activeSlave)>>
+			$He frantically uses $his hands to promise you perfect obedience if you'll only spare $him from emasculation.
+		<<else>>
+			$He begs through tears, "Plea<<s>>e no, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>! Plea<<s>>e let me keep them! Plea<<s>>e!"
+		<</if>>
+		You patiently inform $him that $he can — for now, and so long as $he is a good little $girl. $He flees from the room backwards, bowing, scraping, and profusely thanking you, repeating desperate @@.gold;promises of good behavior.@@
+		<<set $activeSlave.trust -= 5>>
 	<</replace>>
 <</link>>
 <br><<link "Force obedience using pain">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You shove $his unresisting<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>swollen<</if>><</if>> body over the couch and seize $his ballsack. When $he feels your tight grip $he spasms and tries to pull away reflexively, but goes limp when $he feels the agony of a warning squeeze. You fasten a tight rubber ring around the base of $his sack, leaving $him writhing on the couch in considerable discomfort. After letting $him wriggle for a while, you tell $him that $he can have it off when $he gets you off. $He scrabbles for your <<if $PC.dick == 0>>pussy and desperately starts to perform cunnilingus; after a while you get bored and ride $his face. You finally climax<<else>>dick and starts to desperately suck you off<<if $PC.vagina == 1>> and eat you out<</if>>; you let $him work for a while before getting bored and adding painful slaps to $his cheeks. You blow your load down $his throat<</if>> and then stand, <<if canSee($activeSlave)>>brandishing the knife<<else>>swishing the knife through the air<</if>>. <<if canSee($activeSlave)>>$His eyes are huge<<else>>$He grimaces<</if>> with terror, but $he holds still. $His private parts have gone so numb that $he has to <<if canSee($activeSlave)>>look down<<else>>run $his hand across $his scrotum<</if>> in trepidation to verify that you cut the rubber, not $him. $He leaves with the pins and needles working their agonizing way back into $him along with the blood flow to $his balls, promising tearfully to @@.gold;stay out of trouble.@@
-	<<set $activeSlave.trust -= 5, $activeSlave.counter.oral++, $oralTotal++>>
+		You shove $his unresisting<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>swollen<</if>><</if>> body over the couch and seize $his ballsack. When $he feels your tight grip $he spasms and tries to pull away reflexively, but goes limp when $he feels the agony of a warning squeeze. You fasten a tight rubber ring around the base of $his sack, leaving $him writhing on the couch in considerable discomfort. After letting $him wriggle for a while, you tell $him that $he can have it off when $he gets you off. $He scrabbles for your <<if $PC.dick == 0>>pussy and desperately starts to perform cunnilingus; after a while you get bored and ride $his face. You finally climax<<else>>dick and starts to desperately suck you off<<if $PC.vagina == 1>> and eat you out<</if>>; you let $him work for a while before getting bored and adding painful slaps to $his cheeks. You blow your load down $his throat<</if>> and then stand, <<if canSee($activeSlave)>>brandishing the knife<<else>>swishing the knife through the air<</if>>. <<if canSee($activeSlave)>>$His eyes are huge<<else>>$He grimaces<</if>> with terror, but $he holds still. $His private parts have gone so numb that $he has to <<if canSee($activeSlave)>>look down<<else>>run $his hand across $his scrotum<</if>> in trepidation to verify that you cut the rubber, not $him. $He leaves with the pins and needles working their agonizing way back into $him along with the blood flow to $his balls, promising tearfully to @@.gold;stay out of trouble.@@
+		<<set $activeSlave.trust -= 5, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
 <br><<link "Geld $him gradually">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You shove $his unresisting<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>swollen<</if>><</if>> body over the couch and seize $his ballsack. When $he feels your tight grip $he spasms and tries to pull away reflexively, but goes limp when $he feels the agony of a warning squeeze. You fasten a tight rubber ring around the base of $his sack, leaving $him writhing on the couch in considerable discomfort. You add leather mittens to $his hands to stop $him removing the rubber, and then observe that this is a method used to geld livestock. $His tearful begging goes on until you tire of it and put $him out. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> tracks $his agonized, weeping progress around the arcology for the many hours it takes the lack of blood flow to necessitate a trip to the remote surgery. When that time comes, you make $him beg you to remove $his balls for an hour straight before you do — and $he's so desperate for relief from the pain that $he does it. The experience has left $him @@.red;slightly injured,@@ @@.orange;gelded,@@ @@.red;thoroughly traumatized,@@ and @@.gold;willing to do anything@@ to avoid any more pain.
-	<<set $activeSlave.behavioralFlaw = "odd", $activeSlave.trust -= 20, $activeSlave.health -= 10, $activeSlave.balls = 0, $activeSlave.scrotum = 0>>
+		You shove $his unresisting<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>swollen<</if>><</if>> body over the couch and seize $his ballsack. When $he feels your tight grip $he spasms and tries to pull away reflexively, but goes limp when $he feels the agony of a warning squeeze. You fasten a tight rubber ring around the base of $his sack, leaving $him writhing on the couch in considerable discomfort. You add leather mittens to $his hands to stop $him removing the rubber, and then observe that this is a method used to geld livestock. $His tearful begging goes on until you tire of it and put $him out. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> tracks $his agonized, weeping progress around the arcology for the many hours it takes the lack of blood flow to necessitate a trip to the remote surgery. When that time comes, you make $him beg you to remove $his balls for an hour straight before you do — and $he's so desperate for relief from the pain that $he does it. The experience has left $him @@.red;slightly injured,@@ @@.orange;gelded,@@ @@.red;thoroughly traumatized,@@ and @@.gold;willing to do anything@@ to avoid any more pain.
+		<<set $activeSlave.behavioralFlaw = "odd", $activeSlave.trust -= 20, $activeSlave.health -= 10, $activeSlave.balls = 0, $activeSlave.scrotum = 0>>
 	<</replace>>
 <</link>>
 
@@ -9978,22 +9982,22 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Take pity and give $him relief">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You sit on the edge of the bed and draw $him down to sit on your lap. This way, you can enjoy gently fucking $him while you draw orgasm after orgasm out of $him with your hands. $He'll only be relieved for a few hours, but $he's @@.hotpink;tearfully grateful all the same.@@
-	<<set $activeSlave.devotion += 4>>
+		You sit on the edge of the bed and draw $him down to sit on your lap. This way, you can enjoy gently fucking $him while you draw orgasm after orgasm out of $him with your hands. $He'll only be relieved for a few hours, but $he's @@.hotpink;tearfully grateful all the same.@@
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <br><<link "See how rough you can be and still get $him to cum">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The aphrodisiac dosage $he's on will let $him orgasm to almost anything. You spend a few minutes playing with $his nipples, skillfully edging $him away from climax, and $he's almost vibrating with discomfort. $He's so desperate that $he sobs with relief when you order $him to <<if ($activeSlave.heels == 1) && ($activeSlave.shoes != "heels")>>kneel<<elseif ($activeSlave.shoes == "heels")>>totter up<<else>>stand<</if>> <<if $activeSlave.belly >= 5000>>_belly belly <</if>>against a wall and spread $his buttocks. A little saliva and<<if $PC.vagina == 1>> a bit of your own pussyjuice, transferred by a couple of fingers, and<</if>> <<if $PC.dick == 0>>your vibrating strap-on<<else>>your dick<</if>> is up $his willing ass. The position is uncomfortable for $him, and you are not gentle, but $he comes anyway. By the end of the night $his butthole is so sore that $he <<if $activeSlave.belly >= 5000>>lies on $his side<<else>>lies on $his stomach<</if>> every chance $he gets. $His submissiveness @@.hotpink;has increased.@@
-	<<set $activeSlave.devotion += 4>>
+		The aphrodisiac dosage $he's on will let $him orgasm to almost anything. You spend a few minutes playing with $his nipples, skillfully edging $him away from climax, and $he's almost vibrating with discomfort. $He's so desperate that $he sobs with relief when you order $him to <<if ($activeSlave.heels == 1) && ($activeSlave.shoes != "heels")>>kneel<<elseif ($activeSlave.shoes == "heels")>>totter up<<else>>stand<</if>> <<if $activeSlave.belly >= 5000>>_belly belly <</if>>against a wall and spread $his buttocks. A little saliva and<<if $PC.vagina == 1>> a bit of your own pussyjuice, transferred by a couple of fingers, and<</if>> <<if $PC.dick == 0>>your vibrating strap-on<<else>>your dick<</if>> is up $his willing ass. The position is uncomfortable for $him, and you are not gentle, but $he comes anyway. By the end of the night $his butthole is so sore that $he <<if $activeSlave.belly >= 5000>>lies on $his side<<else>>lies on $his stomach<</if>> every chance $he gets. $His submissiveness @@.hotpink;has increased.@@
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Send $him away">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He leaves with ill-concealed disappointment, and is faced with the choice between covert, rule-breaking masturbation or a sleepless night. $His regard for you @@.mediumorchid;has decreased.@@
-	<<set $activeSlave.devotion -= 5>>
+		$He leaves with ill-concealed disappointment, and is faced with the choice between covert, rule-breaking masturbation or a sleepless night. $His regard for you @@.mediumorchid;has decreased.@@
+		<<set $activeSlave.devotion -= 5>>
 	<</replace>>
 <</link>>
 
@@ -10002,39 +10006,39 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Show $him off around the arcology">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You give $activeSlave.slaveName a variation on a usual slave gown. It's just as gorgeous, but this one actually covers $his <<if $activeSlave.belly >= 1500>>_belly <<if $activeSlave.bellyPreg >= 1500>>pregnancy<<else>>belly<</if>>, <</if>>ass and crotch as well. In fact, it covers $his
-	<<if $activeSlave.amp == 1>>
-		limbless torso and head completely: everything except the lower part of $his face, and $his boobs.
-	<<else>>
-		arms, legs, and $his face from the nose up.
-	<</if>>
-	The only flesh visible at all is $his mouth, $his chin, and $his huge breasts, supported and presented by gentle corseting.
-	<<if $activeSlave.amp == 1>>
-		You carry $him around
-		<<if $club != 0>>
-			$clubName.
+		You give $activeSlave.slaveName a variation on a usual slave gown. It's just as gorgeous, but this one actually covers $his <<if $activeSlave.belly >= 1500>>_belly <<if $activeSlave.bellyPreg >= 1500>>pregnancy<<else>>belly<</if>>, <</if>>ass and crotch as well. In fact, it covers $his
+		<<if $activeSlave.amp == 1>>
+			limbless torso and head completely: everything except the lower part of $his face, and $his boobs.
 		<<else>>
-			$arcologies[0].name's clubs.
+			arms, legs, and $his face from the nose up.
 		<</if>>
-	<<else>>
-		You place a gentle hand on the small of $his back to guide $him, and stroll around
-		<<if $club != 0>>
-			$clubName.
+		The only flesh visible at all is $his mouth, $his chin, and $his huge breasts, supported and presented by gentle corseting.
+		<<if $activeSlave.amp == 1>>
+			You carry $him around
+			<<if $club != 0>>
+				$clubName.
+			<<else>>
+				$arcologies[0].name's clubs.
+			<</if>>
 		<<else>>
-			$arcologies[0].name's clubs.
+			You place a gentle hand on the small of $his back to guide $him, and stroll around
+			<<if $club != 0>>
+				$clubName.
+			<<else>>
+				$arcologies[0].name's clubs.
+			<</if>>
 		<</if>>
-	<</if>>
-	$activeSlave.slaveName <<if canSee($activeSlave)>>is blinded by the silk over $his face<<else>>may not be able to see<</if>>, but $he can still <<if canHear($activeSlave)>>hear the appreciative murmurs<<else>>feel the appreciative presence<</if>> of onlookers as they eye $his magnificent breasts with their <<= $activeSlave.areolaeShape>>-shaped areolae. $He shivers a little with suppressed pride. @@.hotpink;$His devotion to you has increased,@@ and @@.green;your reputation as a person with unique property grows.@@
-	<<set $activeSlave.devotion += 4>>
-	<<run repX(500, "event", $activeSlave)>>
+		$activeSlave.slaveName <<if canSee($activeSlave)>>is blinded by the silk over $his face<<else>>may not be able to see<</if>>, but $he can still <<if canHear($activeSlave)>>hear the appreciative murmurs<<else>>feel the appreciative presence<</if>> of onlookers as they eye $his magnificent breasts with their <<= $activeSlave.areolaeShape>>-shaped areolae. $He shivers a little with suppressed pride. @@.hotpink;$His devotion to you has increased,@@ and @@.green;your reputation as a person with unique property grows.@@
+		<<set $activeSlave.devotion += 4>>
+		<<run repX(500, "event", $activeSlave)>>
 	<</replace>>
 <</link>>
 <br><<link "Use that pride as an advertisement">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	There's all sorts of business going on in $arcologies[0].name, from flesh rented or bought down to more pedestrian affairs. Advertisement never goes amiss. You place $activeSlave.slaveName naked on a slowly rotating pedestal surrounded by a clear plastiglass tube on a busy thoroughfare in the lower parts of $arcologies[0].name. These devices are often used to display slaves for sale or slave whores for rent; $activeSlave.slaveName is simply identified by your name as arcology owner, which is thus @@.yellowgreen;identified with business prosperity.@@ $He spends the day serving as eye candy for passersby, rotating gently on the pedestal as $he shows off $his body, giving pride of place to $his <<= $activeSlave.areolaeShape>>-shaped areolae. $He loves all the attention, and @@.hotpink;$his devotion to you has increased.@@
-	<<set $activeSlave.devotion += 4>>
-	<<run cashX(500, "event", $activeSlave)>>
+		There's all sorts of business going on in $arcologies[0].name, from flesh rented or bought down to more pedestrian affairs. Advertisement never goes amiss. You place $activeSlave.slaveName naked on a slowly rotating pedestal surrounded by a clear plastiglass tube on a busy thoroughfare in the lower parts of $arcologies[0].name. These devices are often used to display slaves for sale or slave whores for rent; $activeSlave.slaveName is simply identified by your name as arcology owner, which is thus @@.yellowgreen;identified with business prosperity.@@ $He spends the day serving as eye candy for passersby, rotating gently on the pedestal as $he shows off $his body, giving pride of place to $his <<= $activeSlave.areolaeShape>>-shaped areolae. $He loves all the attention, and @@.hotpink;$his devotion to you has increased.@@
+		<<set $activeSlave.devotion += 4>>
+		<<run cashX(500, "event", $activeSlave)>>
 	<</replace>>
 <</link>>
 
@@ -10043,55 +10047,55 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Join $him in the shower">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You step into the running water and help $him to $his feet with exaggerated gallantry. $He seems surprised <<if canSee($activeSlave)>>and stares at<<else>>faces<</if>> you through the steam for a moment before looking away with a blush. Before long you have $his back against the shower wall, $his titanic udders<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly<</if>> offering an amusing challenge as they slide soapily between you as you fuck. $He comes in no time at all, and a brief massage of $his huge soapy nipples produces a whimpering aftershock orgasm. <<if canSee($activeSlave)>>$His <<= App.Desc.eyeColor($activeSlave)>> eyes stare straight into yours<<else>>You stare into $his <<= App.Desc.eyeColor($activeSlave)>> eyes<</if>> as $he writhes with overstimulation, @@.mediumaquamarine;$his trust in your stewardship of $his pleasure total.@@
-	<<if canDoVaginal($activeSlave)>><<= VaginalVCheck()>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck()>><</if>>
-	<<set $activeSlave.devotion += 4>>
+		You step into the running water and help $him to $his feet with exaggerated gallantry. $He seems surprised <<if canSee($activeSlave)>>and stares at<<else>>faces<</if>> you through the steam for a moment before looking away with a blush. Before long you have $his back against the shower wall, $his titanic udders<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly<</if>> offering an amusing challenge as they slide soapily between you as you fuck. $He comes in no time at all, and a brief massage of $his huge soapy nipples produces a whimpering aftershock orgasm. <<if canSee($activeSlave)>>$His <<= App.Desc.eyeColor($activeSlave)>> eyes stare straight into yours<<else>>You stare into $his <<= App.Desc.eyeColor($activeSlave)>> eyes<</if>> as $he writhes with overstimulation, @@.mediumaquamarine;$his trust in your stewardship of $his pleasure total.@@
+		<<if canDoVaginal($activeSlave)>><<= VaginalVCheck()>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck()>><</if>>
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
-<</link>> <<if ($activeSlave.vagina == 0) && canDoVaginal($activeSlave)>>//This will take vaginal virginity//<<elseif ($activeSlave.vagina == -1) && ($activeSlave.anus == 0) && canDoAnal($activeSlave)>>//This will take anal virginity//<</if>>
+<</link>> <<if ($activeSlave.vagina == 0) && canDoVaginal($activeSlave)>>//This option will take $his virginity//<<elseif ($activeSlave.vagina == -1) && ($activeSlave.anus == 0) && canDoAnal($activeSlave)>>//This option will take $his anal virginity//<</if>>
 <br><<link "Fuck $his immobilized body">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You make no answer, groping $his soapy <<if $seeRace == 1>>$activeSlave.race <</if>>buttocks.
-	<<if ($activeSlave.anus > 2) && canDoAnal($activeSlave)>>
-		$His rectum is so fucked out and loose that your groping hand almost slides up it.
-	<<elseif ($activeSlave.vagina > 2) && canDoVaginal($activeSlave)>>
-		$His pussy is so fucked out and loose that your groping hand almost slides up it.
-	<<else>>
-		You finger fuck $him for a while, the sting of the soap on $his sensitive insides making $him gasp.
-	<</if>>
-	It's not like you can't tie $him up and fuck $him whenever you like, but sliding back and forth on $his soapy body is kind of nice.
-	<<if $PC.dick == 0>>
-		You ride yourself against $him until you orgasm
-	<<else>>
-		You leave a load of cum in
-		<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
-			each of $his holes
-			<<set _didVaginal = 1, _didAnal = 1>>
-		<<elseif canDoAnal($activeSlave)>>
-			$his loosened butthole
-			<<set _didAnal = 1>>
+		You make no answer, groping $his soapy <<if $seeRace == 1>>$activeSlave.race <</if>>buttocks.
+		<<if ($activeSlave.anus > 2) && canDoAnal($activeSlave)>>
+			$His rectum is so fucked out and loose that your groping hand almost slides up it.
+		<<elseif ($activeSlave.vagina > 2) && canDoVaginal($activeSlave)>>
+			$His pussy is so fucked out and loose that your groping hand almost slides up it.
 		<<else>>
-			$his loosened vagina
-			<<set _didVaginal = 1>>
+			You finger fuck $him for a while, the sting of the soap on $his sensitive insides making $him gasp.
 		<</if>>
-		<<if $PC.vagina == 1>> and make $him eat your pussy for a quick aftershock,<</if>>
-	<</if>>
-	and only then do you help $him back to $his feet. $He drips soap, water, and <<if $PC.dick == 0>>your juices<<else>>ejaculate<</if>>. @@.hotpink;$He has become more submissive.@@
-	<<if _didVaginal == 1 && _didAnal == 1>>
-		<<= BothVCheck()>>
-	<<elseif _didVaginal == 1>>
-		<<= VaginalVCheck()>>
-	<<elseif _didAnal == 1>>
-		<<= AnalVCheck()>>
-	<</if>>
-	<<set $activeSlave.devotion += 4>>
+		It's not like you can't tie $him up and fuck $him whenever you like, but sliding back and forth on $his soapy body is kind of nice.
+		<<if $PC.dick == 0>>
+			You ride yourself against $him until you orgasm
+		<<else>>
+			You leave a load of cum in
+			<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
+				each of $his holes
+				<<set _didVaginal = 1, _didAnal = 1>>
+			<<elseif canDoAnal($activeSlave)>>
+				$his loosened butthole
+				<<set _didAnal = 1>>
+			<<else>>
+				$his loosened vagina
+				<<set _didVaginal = 1>>
+			<</if>>
+			<<if $PC.vagina == 1>> and make $him eat your pussy for a quick aftershock,<</if>>
+		<</if>>
+		and only then do you help $him back to $his feet. $He drips soap, water, and <<if $PC.dick == 0>>your juices<<else>>ejaculate<</if>>. @@.hotpink;$He has become more submissive.@@
+		<<if _didVaginal == 1 && _didAnal == 1>>
+			<<= BothVCheck()>>
+		<<elseif _didVaginal == 1>>
+			<<= VaginalVCheck()>>
+		<<elseif _didAnal == 1>>
+			<<= AnalVCheck()>>
+		<</if>>
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
 <br><<link "Let $him figure it out">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He flounders around for a while until you get bored and leave $him to it. Eventually $his whining brings another slave in, who helps $him. This interdependence between slaves @@.mediumorchid;reduces $his devotion.@@
-	<<set $activeSlave.devotion -= 5>>
+		$He flounders around for a while until you get bored and leave $him to it. Eventually $his whining brings another slave in, who helps $him. This interdependence between slaves @@.mediumorchid;reduces $his devotion.@@
+		<<set $activeSlave.devotion -= 5>>
 	<</replace>>
 <</link>>
 
@@ -10100,42 +10104,42 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "No, reassure $him that $he doesn't need to be a slut">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You kindly explain that you've decided to save $his virginity — for now. $He looks slightly down-hearted and tries to smile nonetheless, but finds $himself swept off $his <<if $activeSlave.amp == 1>>stumps<<else>>feet<</if>> and<<if $activeSlave.bellyPreg >= 5000>> gently<</if>> deposited on the couch. $He gasps with surprise when $he finds $himself being teased, fondled, and massaged rather than outright used. In no time at all $he's pressing $his whole<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body against you and shivering with delight. $He shudders, almost uncontrollably, when you grind your <<if $PC.dick == 0>>clitoris<<else>>dick<</if>> against $his moistened, wet pussy between $his thighs, taking extra care not to penetrate the willing slave. $He leaves your office feeling @@.hotpink;very close to $his <<= WrittenMaster()>> indeed,@@ and seems to have forgotten $his unfucked vagina, for now.
-	<<set $activeSlave.devotion += 4>>
+		You kindly explain that you've decided to save $his virginity — for now. $He looks slightly down-hearted and tries to smile nonetheless, but finds $himself swept off $his <<if $activeSlave.amp == 1>>stumps<<else>>feet<</if>> and<<if $activeSlave.bellyPreg >= 5000>> gently<</if>> deposited on the couch. $He gasps with surprise when $he finds $himself being teased, fondled, and massaged rather than outright used. In no time at all $he's pressing $his whole<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body against you and shivering with delight. $He shudders, almost uncontrollably, when you grind your <<if $PC.dick == 0>>clitoris<<else>>dick<</if>> against $his moistened, wet pussy between $his thighs, taking extra care not to penetrate the willing slave. $He leaves your office feeling @@.hotpink;very close to $his <<= WrittenMaster()>> indeed,@@ and seems to have forgotten $his unfucked vagina, for now.
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Make sure $his first time is enjoyable">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You bring $him over to the couch<<if !canDoVaginal($activeSlave)>>, unfasten $his chastity<</if>>, set $him on your lap, and teasingly play with $his<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body for a long time. Every so often you move your hands over $his pussylips, making $him shiver and press $himself against you, but you only make it the center of attention once the poor over-aroused slave
-	<<if !canTalk($activeSlave)>>
-		begins to reach for your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> to pull it towards $himself.
-	<<else>>
-		begs, "I can't take it any more, <<Master>>! Fuck me, plea<<s>>e. Plea<<s>>e!"
-	<</if>>
-	Finally, you lubricate your hand. Then you slowly and gently push a finger into $his invitingly tight virgin pussy. $He's already on the edge of orgasm, and you patiently inch your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> into $his pussy without making $him climax. You then start pumping and $he starts to moan and breathing more and more heavily. You continue pumping until $he finally starts to orgasm, <<if $PC.dick == 0>>$his climactic shudders<<else>>the walls of $his tightening vagina<</if>> send you over as well. $He's left in a haze of @@.hotpink;sexual satisfaction@@ that radiates outward from $his @@.lime;newly initiated pussy,@@ and $he @@.mediumaquamarine;trusts you@@ a lot more, now.
-	<<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "pregnancy")>>
-		$He's back again before the week is over, eager for @@.lightcoral;another dick in $his fuckhole.@@
-		<<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "pregnancy">>
-	<</if>>
-	<<set $activeSlave.devotion += 3, $activeSlave.trust += 3, $activeSlave.vagina = 1, $activeSlave.counter.vaginal++, $vaginalTotal++>>
-	<<if $PC.dick == 1 && $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-		<<= knockMeUp($activeSlave, 15, 0, -1)>>
-	<</if>>
+		You bring $him over to the couch<<if !canDoVaginal($activeSlave)>>, unfasten $his chastity<</if>>, set $him on your lap, and teasingly play with $his<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body for a long time. Every so often you move your hands over $his pussylips, making $him shiver and press $himself against you, but you only make it the center of attention once the poor over-aroused slave
+		<<if !canTalk($activeSlave)>>
+			begins to reach for your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> to pull it towards $himself.
+		<<else>>
+			begs, "I can't take it any more, <<Master>>! Fuck me, plea<<s>>e. Plea<<s>>e!"
+		<</if>>
+		Finally, you lubricate your hand. Then you slowly and gently push a finger into $his invitingly tight virgin pussy. $He's already on the edge of orgasm, and you patiently inch your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> into $his pussy without making $him climax. You then start pumping and $he starts to moan and breathing more and more heavily. You continue pumping until $he finally starts to orgasm, <<if $PC.dick == 0>>$his climactic shudders<<else>>the walls of $his tightening vagina<</if>> send you over as well. $He's left in a haze of @@.hotpink;sexual satisfaction@@ that radiates outward from $his @@.lime;newly initiated pussy,@@ and $he @@.mediumaquamarine;trusts you@@ a lot more, now.
+		<<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "pregnancy")>>
+			$He's back again before the week is over, eager for @@.lightcoral;another dick in $his fuckhole.@@
+			<<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "pregnancy">>
+		<</if>>
+		<<set $activeSlave.devotion += 3, $activeSlave.trust += 3, $activeSlave.vagina = 1, $activeSlave.counter.vaginal++, $vaginalTotal++>>
+		<<if $PC.dick == 1 && $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+			<<= knockMeUp($activeSlave, 15, 0, -1)>>
+		<</if>>
 	<</replace>>
 <</link>>
 <br><<link "Make sure $his first fuck puts $him in $his place">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You throw $him onto the couch beside your desk, $he fails to stop $him from losing balance with $his flailing <<if $activeSlave.amp == 1>>stumps<<else>>limbs<</if>>. $He looks around doubtfully; $he's already started to wonder whether this was a mistake. In a few moments $he knows it for sure as $he feels<<if !canDoVaginal($activeSlave)>> $his vaginal chastity ripped off and<</if>> the burning sensation of a lubricated <<if $PC.dick == 0>>strap-on<<else>>dickhead<</if>> forcing $his virgin pussy wide. You have $his face shoved deep between the leather cushions and you ignore the muffled sounds coming from $him. $He limply tries to relax for $his beloved master, but the painful sensation coming from $his crotch causes $him to start to writhe uncontrollably. $He pushes against the couch, trying to endure the pounding. When you finish, the poor slave is left lying on the couch with <<if $PC.dick == 0>>a<<else>>a thin dribble of ejaculate escaping from $his<</if>> @@.lime;newly fucked vagina,@@ a stream of drying tears running down each side of $his face,<<if $activeSlave.dick > 0>> a single drop of precum at the tip of $his totally flaccid dick,<</if>> and a new understanding of @@.gold;$his place in life.@@
-	<<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "submissive")>>
-		Before the end of the week it's clear that $he's taken the rape to heart, and now sees $his body as something @@.lightcoral;for others to use and abuse.@@
-		<<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "submissive">>
-	<</if>>
-	<<set $activeSlave.trust -= 5, $activeSlave.vagina = 1, $activeSlave.counter.vaginal++, $vaginalTotal++>>
-	<<if $PC.dick == 1 && $activeSlave.eggType == "human" && isFertile($activeSlave) && $activeSlave.preg == 0>>
-		<<= knockMeUp($activeSlave, 25, 0, -1)>>
-	<</if>>
+		You throw $him onto the couch beside your desk, $he fails to stop $him from losing balance with $his flailing <<if $activeSlave.amp == 1>>stumps<<else>>limbs<</if>>. $He looks around doubtfully; $he's already started to wonder whether this was a mistake. In a few moments $he knows it for sure as $he feels<<if !canDoVaginal($activeSlave)>> $his vaginal chastity ripped off and<</if>> the burning sensation of a lubricated <<if $PC.dick == 0>>strap-on<<else>>dickhead<</if>> forcing $his virgin pussy wide. You have $his face shoved deep between the leather cushions and you ignore the muffled sounds coming from $him. $He limply tries to relax for $his beloved master, but the painful sensation coming from $his crotch causes $him to start to writhe uncontrollably. $He pushes against the couch, trying to endure the pounding. When you finish, the poor slave is left lying on the couch with <<if $PC.dick == 0>>a<<else>>a thin dribble of ejaculate escaping from $his<</if>> @@.lime;newly fucked vagina,@@ a stream of drying tears running down each side of $his face,<<if $activeSlave.dick > 0>> a single drop of precum at the tip of $his totally flaccid dick,<</if>> and a new understanding of @@.gold;$his place in life.@@
+		<<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "submissive")>>
+			Before the end of the week it's clear that $he's taken the rape to heart, and now sees $his body as something @@.lightcoral;for others to use and abuse.@@
+			<<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "submissive">>
+		<</if>>
+		<<set $activeSlave.trust -= 5, $activeSlave.vagina = 1, $activeSlave.counter.vaginal++, $vaginalTotal++>>
+		<<if $PC.dick == 1 && $activeSlave.eggType == "human" && isFertile($activeSlave) && $activeSlave.preg == 0>>
+			<<= knockMeUp($activeSlave, 25, 0, -1)>>
+		<</if>>
 	<</replace>>
 <</link>>
 
@@ -10144,51 +10148,51 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "No, reassure $him that $he doesn't need to be an anal slut">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You kindly explain that you've decided to save $his ass — for now. $He starts to express understanding and apologize for bothering you, but finds $himself swept off $his <<if $activeSlave.amp == 1>>stumps<<else>>feet<</if>> and<<if $activeSlave.bellyPreg >= 5000>> gently<</if>> deposited on the couch. $He gasps with surprise when $he finds $himself being teased, fondled, and massaged rather than outright used. In no time at all $he's pressing $his whole<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body against you and shivering with delight.
-	<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
-		$His shivers reach a crescendo when you <<if $PC.dick == 0>>scissor yourself against<<else>>enter<</if>> $his warm, wet pussy, which convulsively flexes against your <<if $PC.dick == 0>>clit<<else>>rock hard dick<</if>>.
-	<<else>>
-		<<if $PC.dick == 0>>You ride $his face,<<else>>You push your dick<<if $PC.vagina == 1>> and as much of the upper part of your pussy as you can manage<</if>> between $his thighs for some frottage,<</if>> lavishing attention on $his nipples to ensure that $he has fun, too.
-	<</if>>
-	$He leaves your office feeling @@.hotpink;very close to $his <<= WrittenMaster()>> indeed,@@ and seems to have forgotten $his unfucked butthole for now.
-	<<set $activeSlave.devotion += 4>>
-	<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<</if>>
+		You kindly explain that you've decided to save $his ass — for now. $He starts to express understanding and apologize for bothering you, but finds $himself swept off $his <<if $activeSlave.amp == 1>>stumps<<else>>feet<</if>> and<<if $activeSlave.bellyPreg >= 5000>> gently<</if>> deposited on the couch. $He gasps with surprise when $he finds $himself being teased, fondled, and massaged rather than outright used. In no time at all $he's pressing $his whole<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body against you and shivering with delight.
+		<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
+			$His shivers reach a crescendo when you <<if $PC.dick == 0>>scissor yourself against<<else>>enter<</if>> $his warm, wet pussy, which convulsively flexes against your <<if $PC.dick == 0>>clit<<else>>rock hard dick<</if>>.
+		<<else>>
+			<<if $PC.dick == 0>>You ride $his face,<<else>>You push your dick<<if $PC.vagina == 1>> and as much of the upper part of your pussy as you can manage<</if>> between $his thighs for some frottage,<</if>> lavishing attention on $his nipples to ensure that $he has fun, too.
+		<</if>>
+		$He leaves your office feeling @@.hotpink;very close to $his <<= WrittenMaster()>> indeed,@@ and seems to have forgotten $his unfucked butthole for now.
+		<<set $activeSlave.devotion += 4>>
+		<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
+			<<= VaginalVCheck()>>
+		<</if>>
 	<</replace>>
 <</link>>
 <br><<link "Make sure $his first anal sex is enjoyable">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You bring $him over to the couch<<if !canDoAnal($activeSlave)>>, unfasten $his anal chastity<</if>>, set $him on your lap, and teasingly play with $his<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body for a long time. Every so often you graze a finger over $his unfucked butthole, making $him shiver and press $himself against you, but you only make it the center of attention once the poor over-aroused slave
-	<<if !canTalk($activeSlave)>>
-		begins to use piteous gestures to beg you abjectly for anal.
-	<<else>>
-		begs, "I can't take it any more, <<Master>>! Plea<<s>>e fuck my a<<ss>>!"
-	<</if>>
-	In reward, you sink a lightly lubricated finger up to the first knuckle in $his delightfully tight asshole. $He's already on the edge of orgasm, and it takes a long, long time for you to work first a finger, then two, and then your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> up $his ass without sending $him over. When you finally let $him orgasm <<if $PC.dick == 0>>$his unabashed enjoyment<<else>>the strength of $his spasming sphincter<</if>> sends you over as well. $He's left in a haze of @@.hotpink;sexual satisfaction@@ that radiates outward from $his @@.lime;newly stretched asshole,@@ and $he @@.mediumaquamarine;trusts you@@ a lot more, now.
-	<<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "buttslut")>>
-		Before the end of the week $he's back, begging for @@.lightcoral;another dick up the ass.@@
-		<<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "buttslut">>
-	<</if>>
-	<<set $activeSlave.devotion += 3, $activeSlave.trust += 3, $activeSlave.anus = 1, $activeSlave.counter.anal++, $analTotal++>>
-	<<if $PC.dick == 1 && $activeSlave.eggType == "human" && isFertile($activeSlave) && $activeSlave.preg == 0>>
-		<<= knockMeUp($activeSlave, 15, 1, -1)>>
-	<</if>>
+		You bring $him over to the couch<<if !canDoAnal($activeSlave)>>, unfasten $his anal chastity<</if>>, set $him on your lap, and teasingly play with $his<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body for a long time. Every so often you graze a finger over $his unfucked butthole, making $him shiver and press $himself against you, but you only make it the center of attention once the poor over-aroused slave
+		<<if !canTalk($activeSlave)>>
+			begins to use piteous gestures to beg you abjectly for anal.
+		<<else>>
+			begs, "I can't take it any more, <<Master>>! Plea<<s>>e fuck my a<<ss>>!"
+		<</if>>
+		In reward, you sink a lightly lubricated finger up to the first knuckle in $his delightfully tight asshole. $He's already on the edge of orgasm, and it takes a long, long time for you to work first a finger, then two, and then your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> up $his ass without sending $him over. When you finally let $him orgasm <<if $PC.dick == 0>>$his unabashed enjoyment<<else>>the strength of $his spasming sphincter<</if>> sends you over as well. $He's left in a haze of @@.hotpink;sexual satisfaction@@ that radiates outward from $his @@.lime;newly stretched asshole,@@ and $he @@.mediumaquamarine;trusts you@@ a lot more, now.
+		<<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "buttslut")>>
+			Before the end of the week $he's back, begging for @@.lightcoral;another dick up the ass.@@
+			<<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "buttslut">>
+		<</if>>
+		<<set $activeSlave.devotion += 3, $activeSlave.trust += 3, $activeSlave.anus = 1, $activeSlave.counter.anal++, $analTotal++>>
+		<<if $PC.dick == 1 && $activeSlave.eggType == "human" && isFertile($activeSlave) && $activeSlave.preg == 0>>
+			<<= knockMeUp($activeSlave, 15, 1, -1)>>
+		<</if>>
 	<</replace>>
 <</link>>
 <br><<link "Make sure $his first buttfuck puts $him in $his place">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You throw $him onto the couch face-down<<if $activeSlave.belly >= 5000>>, $his rear pushed into the air by $his rounded belly<</if>>, catching a glimpse of $his doubtful face as $he goes; $he's already started to wonder whether this was a mistake. In a few moments $he knows it for sure as $he feels<<if !canDoAnal($activeSlave)>> $his anal chastity ripped off and<</if>> the burning sensation of a lubricated <<if $PC.dick == 0>>strap-on<<else>>dickhead<</if>> forcing $his virgin sphincter wide. Whatever noises $he might be making are pretty inaudible, since you have $his sobbing face shoved deep between the leather cushions. $He tries not to struggle and relax for $his beloved master, but $his body rebels against the pain and $he starts to wriggle spastically, trying to burrow into the couch to get away from the pounding. When you finish, the poor slave is left lying on the couch with <<if $PC.dick == 0>>a<<else>>a thin dribble of ejaculate escaping from $his<</if>> @@.lime;newly fucked butthole,@@ a stream of drying tears running down each side of $his face,<<if $activeSlave.dick > 0>> a single drop of precum at the tip of $his totally flaccid dick,<</if>> and a new understanding of @@.gold;$his place in life.@@
-	<<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "submissive")>>
-		Before the end of the week it's clear that $he's taken the anal rape to heart, and now sees $his body as something @@.lightcoral;for others to use and abuse.@@
-		<<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "submissive">>
-	<</if>>
-	<<set $activeSlave.trust -= 5, $activeSlave.anus = 1, $activeSlave.counter.anal++, $analTotal++>>
-	<<if $PC.dick == 1 && $activeSlave.eggType == "human" && isFertile($activeSlave) && $activeSlave.preg == 0>>
-		<<= knockMeUp($activeSlave, 25, 1, -1)>>
-	<</if>>
+		You throw $him onto the couch face-down<<if $activeSlave.belly >= 5000>>, $his rear pushed into the air by $his rounded belly<</if>>, catching a glimpse of $his doubtful face as $he goes; $he's already started to wonder whether this was a mistake. In a few moments $he knows it for sure as $he feels<<if !canDoAnal($activeSlave)>> $his anal chastity ripped off and<</if>> the burning sensation of a lubricated <<if $PC.dick == 0>>strap-on<<else>>dickhead<</if>> forcing $his virgin sphincter wide. Whatever noises $he might be making are pretty inaudible, since you have $his sobbing face shoved deep between the leather cushions. $He tries not to struggle and relax for $his beloved master, but $his body rebels against the pain and $he starts to wriggle spastically, trying to burrow into the couch to get away from the pounding. When you finish, the poor slave is left lying on the couch with <<if $PC.dick == 0>>a<<else>>a thin dribble of ejaculate escaping from $his<</if>> @@.lime;newly fucked butthole,@@ a stream of drying tears running down each side of $his face,<<if $activeSlave.dick > 0>> a single drop of precum at the tip of $his totally flaccid dick,<</if>> and a new understanding of @@.gold;$his place in life.@@
+		<<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "submissive")>>
+			Before the end of the week it's clear that $he's taken the anal rape to heart, and now sees $his body as something @@.lightcoral;for others to use and abuse.@@
+			<<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "submissive">>
+		<</if>>
+		<<set $activeSlave.trust -= 5, $activeSlave.anus = 1, $activeSlave.counter.anal++, $analTotal++>>
+		<<if $PC.dick == 1 && $activeSlave.eggType == "human" && isFertile($activeSlave) && $activeSlave.preg == 0>>
+			<<= knockMeUp($activeSlave, 25, 1, -1)>>
+		<</if>>
 	<</replace>>
 <</link>>
 
@@ -10197,188 +10201,188 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "$He asked for it; give $him the works">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	As the sterile doors of the surgical equipment hiss closed over $him, you whisper in $his ear that $he's about to be cut up. $He looks at you with a mix of fear and wild excitement. After nearly a whole week of constant surgery and expensive drug-induced recovery, <<if canSee($activeSlave)>>$he finally gets to see $his new body in the mirror<<elseif $activeSlave.amp == 1>>you finally describe all the new implants in $his body and how they make $him look<<else>>you finally let $him feel $his new body, even helping $his hands to the less obvious changes<</if>>. $He has cartoonishly huge lips, boobs, and buttocks; $he looks like a caricature of a bimbo. $He cries with gratitude <<if canSee($activeSlave)>>to see $himself<<elseif $activeSlave.amp == 1>>to hear how $he looks<<else>>as $he feels $his new body<</if>>, and can scarcely wait to recover enough to get fucked. @@.hotpink;$He has become extremely devoted to you.@@
-	<<run cashX(forceNeg(Math.trunc(125*$upgradeMultiplierMedicine)), "slaveSurgery", $activeSlave)>>
-	<<set $activeSlave.devotion += 10>>
-	<<set _surgeryAddict = Math.clamp(20000-$activeSlave.boobs, 0, 2000)>>
-	<<set $activeSlave.boobsImplant += _surgeryAddict, $activeSlave.boobs += _surgeryAddict>>
-	<<set _surgeryAddict = Math.clamp(10-$activeSlave.butt, 0, 4)>>
-	<<set $activeSlave.buttImplant += _surgeryAddict, $activeSlave.butt += _surgeryAddict>>
-	<<set _surgeryAddict = Math.clamp(80-$activeSlave.lips, 0, 20)>>
-	<<set $activeSlave.lipsImplant += _surgeryAddict, $activeSlave.lips += _surgeryAddict>>
+		As the sterile doors of the surgical equipment hiss closed over $him, you whisper in $his ear that $he's about to be cut up. $He looks at you with a mix of fear and wild excitement. After nearly a whole week of constant surgery and expensive drug-induced recovery, <<if canSee($activeSlave)>>$he finally gets to see $his new body in the mirror<<elseif $activeSlave.amp == 1>>you finally describe all the new implants in $his body and how they make $him look<<else>>you finally let $him feel $his new body, even helping $his hands to the less obvious changes<</if>>. $He has cartoonishly huge lips, boobs, and buttocks; $he looks like a caricature of a bimbo. $He cries with gratitude <<if canSee($activeSlave)>>to see $himself<<elseif $activeSlave.amp == 1>>to hear how $he looks<<else>>as $he feels $his new body<</if>>, and can scarcely wait to recover enough to get fucked. @@.hotpink;$He has become extremely devoted to you.@@
+		<<run cashX(forceNeg(Math.trunc(125*$upgradeMultiplierMedicine)), "slaveSurgery", $activeSlave)>>
+		<<set $activeSlave.devotion += 10>>
+		<<set _surgeryAddict = Math.clamp(20000-$activeSlave.boobs, 0, 2000)>>
+		<<set $activeSlave.boobsImplant += _surgeryAddict, $activeSlave.boobs += _surgeryAddict>>
+		<<set _surgeryAddict = Math.clamp(10-$activeSlave.butt, 0, 4)>>
+		<<set $activeSlave.buttImplant += _surgeryAddict, $activeSlave.butt += _surgeryAddict>>
+		<<set _surgeryAddict = Math.clamp(80-$activeSlave.lips, 0, 20)>>
+		<<set $activeSlave.lipsImplant += _surgeryAddict, $activeSlave.lips += _surgeryAddict>>
 	<</replace>>
 <</link>>
 <<if $activeSlave.bellyPreg >= 5000>>
-<br><<link "Not while $he is so pregnant">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He's clearly disappointed, but $he accepts that you are watching out for $his health and goes about $his business. After the incident, you notice that $he definitely seems to have a kink for implants. $He loves it when $his implants are groped, but $his favorite is when $he gets to fuck another slave with fake tits. $He can't keep $his <<if ($activeSlave.amp != 1)>>hands<<else>>lips<</if>> off a pair of bolted-on boobs.
-	<</replace>>
-<</link>>
+	<br><<link "Not while $he is so pregnant">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$He's clearly disappointed, but $he accepts that you are watching out for $his health and goes about $his business. After the incident, you notice that $he definitely seems to have a kink for implants. $He loves it when $his implants are groped, but $his favorite is when $he gets to fuck another slave with fake tits. $He can't keep $his <<if ($activeSlave.amp != 1)>>hands<<else>>lips<</if>> off a pair of bolted-on boobs.
+		<</replace>>
+	<</link>>
 <</if>>
 <br><<link "No">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He's clearly disappointed, but $he accepts your will and goes about $his business. After the incident, you notice that $he definitely seems to have a kink for implants. $He loves it when $his implants are groped, but $his favorite is when $he gets to fuck another slave with fake tits. $He can't keep $his <<if ($activeSlave.amp != 1)>>hands<<else>>lips<</if>> off a pair of bolted-on boobs.
+		$He's clearly disappointed, but $he accepts your will and goes about $his business. After the incident, you notice that $he definitely seems to have a kink for implants. $He loves it when $his implants are groped, but $his favorite is when $he gets to fuck another slave with fake tits. $He can't keep $his <<if ($activeSlave.amp != 1)>>hands<<else>>lips<</if>> off a pair of bolted-on boobs.
 	<</replace>>
 <</link>>
 
 <<case "night visit">>
 
 <<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
-<<link "Fuck $him as $he asks">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He almost sobs with joy as <<if $PC.dick == 0>>your strap-on enters<<else>>you enter<</if>> $him. The two of you have
-	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-		passionate oral, vanilla, and finally anal sex
-	<<elseif canDoVaginal($activeSlave)>>
-		gentle vanilla sex
-	<<else>>
-		gentle anal sex
-	<</if>>
-	for the rest of the night<<if $PC.vagina == 1>><<if $PC.dick == 1>>; whenever you go soft for a moment, all $he has to do is eat you out, and you're rock hard again<</if>><</if>>. As you move from position to position<<if $activeSlave.belly >= 5000>>, and exploring several unusual ones thanks to $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>><</if>>, $he twists to face you whenever $he can. When $he manages it, $he kisses you when $he can reach your lips, and $he <<if canSee($activeSlave)>>stares deeply into your eyes<<else>>meets your face with $his own<</if>> when $he cannot. $His trust in you @@.mediumaquamarine;has increased.@@
-	<<set $activeSlave.trust += 4>>
-	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-		<<= BothVCheck()>>
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<elseif canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+	<<link "Fuck $him as $he asks">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$He almost sobs with joy as <<if $PC.dick == 0>>your strap-on enters<<else>>you enter<</if>> $him. The two of you have
+			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+				passionate oral, vanilla, and finally anal sex
+			<<elseif canDoVaginal($activeSlave)>>
+				gentle vanilla sex
+			<<else>>
+				gentle anal sex
+			<</if>>
+			for the rest of the night<<if $PC.vagina == 1>><<if $PC.dick == 1>>; whenever you go soft for a moment, all $he has to do is eat you out, and you're rock hard again<</if>><</if>>. As you move from position to position<<if $activeSlave.belly >= 5000>>, and exploring several unusual ones thanks to $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>><</if>>, $he twists to face you whenever $he can. When $he manages it, $he kisses you when $he can reach your lips, and $he <<if canSee($activeSlave)>>stares deeply into your eyes<<else>>meets your face with $his own<</if>> when $he cannot. $His trust in you @@.mediumaquamarine;has increased.@@
+			<<set $activeSlave.trust += 4>>
+			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+				<<= BothVCheck()>>
+				<<set $activeSlave.counter.oral++, $oralTotal++>>
+			<<elseif canDoVaginal($activeSlave)>>
+				<<= VaginalVCheck()>>
+			<<else>>
+				<<= AnalVCheck()>>
+			<</if>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "Assrape $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You order $him to kneel. $He looks hopeful and complies, but $his anticipation of enjoyable sex vanishes with a pathetic little gasp when you<<if $PC.dick == 0>> don a strap-on and<</if>> <<if $PC.vagina == 1>>use a couple of fingers to collect some of your pussyjuice for improvised lube<<else>>spit on $his butthole<</if>>. With only a little saliva as lubrication, you brutally sodomize $him, fucking $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass to the limit of what you can get away with without damaging $him.
-	<<if (($activeSlave.fetish == "buttslut" && $activeSlave.fetishStrength > 60) || ($activeSlave.energy > 95)) && ($activeSlave.fetishKnown == 1)>>
-		$He loves anal so much that after a while pleasure overwhelms pain to the extent that $he manages a @@.hotpink;sobbing orgasm.@@
-	<<else>>
-		$He gets the message: $he's your property and $his desires are entirely subject to your will. $His @@.hotpink;submission@@ to you and @@.gold;fear of you@@ have both increased.
-	<</if>>
-	<<set $activeSlave.devotion += 3, $activeSlave.trust -= 3>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<br><<link "Assrape $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You order $him to kneel. $He looks hopeful and complies, but $his anticipation of enjoyable sex vanishes with a pathetic little gasp when you<<if $PC.dick == 0>> don a strap-on and<</if>> <<if $PC.vagina == 1>>use a couple of fingers to collect some of your pussyjuice for improvised lube<<else>>spit on $his butthole<</if>>. With only a little saliva as lubrication, you brutally sodomize $him, fucking $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass to the limit of what you can get away with without damaging $him.
+			<<if (($activeSlave.fetish == "buttslut" && $activeSlave.fetishStrength > 60) || ($activeSlave.energy > 95)) && ($activeSlave.fetishKnown == 1)>>
+				$He loves anal so much that after a while pleasure overwhelms pain to the extent that $he manages a @@.hotpink;sobbing orgasm.@@
+			<<else>>
+				$He gets the message: $he's your property and $his desires are entirely subject to your will. $His @@.hotpink;submission@@ to you and @@.gold;fear of you@@ have both increased.
+			<</if>>
+			<<set $activeSlave.devotion += 3, $activeSlave.trust -= 3>>
+			<<= AnalVCheck()>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 <br><<link "Play with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You get into bed and crook a finger, silently ordering $him to join you. $He<<if $activeSlave.clothes != "no clothing">> hurries out of $his clothes and<</if>> bounces over,
-	<<if ($activeSlave.chastityPenis == 1)>>
-		$his posture communicating the arousal that $his caged cock cannot.
-	<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
-		$his impotent dick already streaming watery precum.
-	<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>>
-		$his dick pathetically soft despite $his obvious arousal.
-	<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave)>>
-		$his dick swollen with arousal yet too large to become erect.
-	<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
-		$his dick tipped with precum yet enable to get hard.
-	<<elseif $activeSlave.dick > 4>>
-		$his massive cock rock hard.
-	<<elseif $activeSlave.dick > 2>>
-		$his erection standing out stiffly.
-	<<elseif $activeSlave.dick > 0>>
-		$his tiny little dick poking out stiffly.
-	<<elseif $activeSlave.clit > 0>>
-		$his big clit visibly stiff.
-	<<elseif $activeSlave.vagina == -1>>
-		already arching $his back to present $his bottom.
-	<<else>>
-		$his pussylips shining with arousal.
-	<</if>>
-	As $he <<if $activeSlave.belly >= 10000>>hefts $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>bulk<<else>>climbs<</if>> into bed you take $his $activeSlave.skin hand and guide $him into your lap, facing away from you. $He sighs happily and snuggles $his
-	<<if $activeSlave.weight > 160>>
-		rippling
-	<<elseif $activeSlave.weight > 95>>
-		soft
-	<<elseif ($activeSlave.muscles > 95)>>
-		ripped
-	<<elseif ($activeSlave.muscles > 30)>>
-		muscular
-	<<elseif ($activeSlave.muscles > 5)>>
-		toned
-	<<else>>
-		soft
-	<</if>>
-	back into your chest. You<<if $activeSlave.belly >= 5000>> embrace $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly before you<</if>>
-	<<if ($activeSlave.boobs > 2000)>>
-		run your hands across $his massive chest
-	<<elseif ($activeSlave.boobs > 800)>>
-		heft $his heavy breasts
-	<<else>>
-		massage $his pretty chest
-	<</if>>
-	and tease $his
-	<<if $activeSlave.nipples == "huge">>
-		ridiculous
-	<<elseif $activeSlave.nipples == "puffy">>
-		puffy
-	<<elseif $activeSlave.nipples == "inverted">>
-		shy
-	<<elseif $activeSlave.nipples == "partially inverted">>
-		exposed
-	<<elseif $activeSlave.nipples == "fuckable">>
-		deep
-	<<else>>
-		erect
-	<</if>>
-	nipples, as $he shimmies $himself back <<if $PC.dick == 0>>so $his warmth is against yours, your legs spreading $his<<else>>onto you so your cock is lodged between $his<</if>>
-	<<if ($activeSlave.butt > 10)>>
-		unfathomable
-	<<elseif ($activeSlave.butt > 5)>>
-		incredible
-	<<elseif ($activeSlave.butt > 2)>>
-		healthy
-	<<else>>
-		pert
-	<</if>>
-	buttocks. When $he's close to orgasm from all the stimulation, $he reflexively squeezes <<if $PC.dick == 0>>your body between $his legs<<else>>your dick between $his asscheeks<</if>>, bringing you to climax. At the feeling of your <<if $PC.dick == 0>>juices<<else>>warm cum<</if>> between $his
-	<<if ($activeSlave.weight > 190)>>
-		immense
-	<<elseif ($activeSlave.weight > 160)>>
-		massive
-	<<elseif ($activeSlave.weight > 130)>>
-		huge
-	<<elseif ($activeSlave.weight > 95)>>
-		thick
-	<<elseif ($activeSlave.weight > 10)>>
-		ample
-	<<elseif ($activeSlave.weight >= -10)>>
-		trim
-	<</if>>
-	thighs, $he tips over the edge and
-	<<if ($activeSlave.chastityPenis == 1)>>
-		shivers with orgasm, ejaculate dribbling out of $his chastity cage.
-	<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
-		cums weakly, $his soft dick twitching.
-	<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0 || $activeSlave.ballType == "sterile")>>
-		shivers with orgasm, $his soft dick twitching weakly.
-	<<elseif $activeSlave.balls > 4>>
-		making a massive mess all over $himself.
-	<<elseif $activeSlave.balls > 2>>
-		adding $his own load to the mess.
-	<<elseif $activeSlave.balls > 0>>
-		adding $his own pathetic load to the mess.
-	<<elseif $activeSlave.clit > 0>>
-		pitches forward convulsively, gasping with overstimulation at the sensation on $his huge clit.
-	<<else>>
-		quivers in your grasp, gasping, before relaxing back into you in a puddle of satisfaction.
-	<</if>>
-	$His devotion to you @@.hotpink;has increased.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.mammary++, $mammaryTotal++>>
+		You get into bed and crook a finger, silently ordering $him to join you. $He<<if $activeSlave.clothes != "no clothing">> hurries out of $his clothes and<</if>> bounces over,
+		<<if ($activeSlave.chastityPenis == 1)>>
+			$his posture communicating the arousal that $his caged cock cannot.
+		<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
+			$his impotent dick already streaming watery precum.
+		<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>>
+			$his dick pathetically soft despite $his obvious arousal.
+		<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave)>>
+			$his dick swollen with arousal yet too large to become erect.
+		<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
+			$his dick tipped with precum yet enable to get hard.
+		<<elseif $activeSlave.dick > 4>>
+			$his massive cock rock hard.
+		<<elseif $activeSlave.dick > 2>>
+			$his erection standing out stiffly.
+		<<elseif $activeSlave.dick > 0>>
+			$his tiny little dick poking out stiffly.
+		<<elseif $activeSlave.clit > 0>>
+			$his big clit visibly stiff.
+		<<elseif $activeSlave.vagina == -1>>
+			already arching $his back to present $his bottom.
+		<<else>>
+			$his pussylips shining with arousal.
+		<</if>>
+		As $he <<if $activeSlave.belly >= 10000>>hefts $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>bulk<<else>>climbs<</if>> into bed you take $his $activeSlave.skin hand and guide $him into your lap, facing away from you. $He sighs happily and snuggles $his
+		<<if $activeSlave.weight > 160>>
+			rippling
+		<<elseif $activeSlave.weight > 95>>
+			soft
+		<<elseif ($activeSlave.muscles > 95)>>
+			ripped
+		<<elseif ($activeSlave.muscles > 30)>>
+			muscular
+		<<elseif ($activeSlave.muscles > 5)>>
+			toned
+		<<else>>
+			soft
+		<</if>>
+		back into your chest. You<<if $activeSlave.belly >= 5000>> embrace $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly before you<</if>>
+		<<if ($activeSlave.boobs > 2000)>>
+			run your hands across $his massive chest
+		<<elseif ($activeSlave.boobs > 800)>>
+			heft $his heavy breasts
+		<<else>>
+			massage $his pretty chest
+		<</if>>
+		and tease $his
+		<<if $activeSlave.nipples == "huge">>
+			ridiculous
+		<<elseif $activeSlave.nipples == "puffy">>
+			puffy
+		<<elseif $activeSlave.nipples == "inverted">>
+			shy
+		<<elseif $activeSlave.nipples == "partially inverted">>
+			exposed
+		<<elseif $activeSlave.nipples == "fuckable">>
+			deep
+		<<else>>
+			erect
+		<</if>>
+		nipples, as $he shimmies $himself back <<if $PC.dick == 0>>so $his warmth is against yours, your legs spreading $his<<else>>onto you so your cock is lodged between $his<</if>>
+		<<if ($activeSlave.butt > 10)>>
+			unfathomable
+		<<elseif ($activeSlave.butt > 5)>>
+			incredible
+		<<elseif ($activeSlave.butt > 2)>>
+			healthy
+		<<else>>
+			pert
+		<</if>>
+		buttocks. When $he's close to orgasm from all the stimulation, $he reflexively squeezes <<if $PC.dick == 0>>your body between $his legs<<else>>your dick between $his asscheeks<</if>>, bringing you to climax. At the feeling of your <<if $PC.dick == 0>>juices<<else>>warm cum<</if>> between $his
+		<<if ($activeSlave.weight > 190)>>
+			immense
+		<<elseif ($activeSlave.weight > 160)>>
+			massive
+		<<elseif ($activeSlave.weight > 130)>>
+			huge
+		<<elseif ($activeSlave.weight > 95)>>
+			thick
+		<<elseif ($activeSlave.weight > 10)>>
+			ample
+		<<elseif ($activeSlave.weight >= -10)>>
+			trim
+		<</if>>
+		thighs, $he tips over the edge and
+		<<if ($activeSlave.chastityPenis == 1)>>
+			shivers with orgasm, ejaculate dribbling out of $his chastity cage.
+		<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
+			cums weakly, $his soft dick twitching.
+		<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0 || $activeSlave.ballType == "sterile")>>
+			shivers with orgasm, $his soft dick twitching weakly.
+		<<elseif $activeSlave.balls > 4>>
+			making a massive mess all over $himself.
+		<<elseif $activeSlave.balls > 2>>
+			adding $his own load to the mess.
+		<<elseif $activeSlave.balls > 0>>
+			adding $his own pathetic load to the mess.
+		<<elseif $activeSlave.clit > 0>>
+			pitches forward convulsively, gasping with overstimulation at the sensation on $his huge clit.
+		<<else>>
+			quivers in your grasp, gasping, before relaxing back into you in a puddle of satisfaction.
+		<</if>>
+		$His devotion to you @@.hotpink;has increased.@@
+		<<set $activeSlave.devotion += 4, $activeSlave.counter.mammary++, $mammaryTotal++>>
 	<</replace>>
 <</link>>
 <br><<link "Send $him away">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He tries to hide $his disappointment as $he turns to go, and as $he flees out the door you hear $him begin to cry. By the next morning, however, $his responses to your commands have become less flirtatious and much more attentive. $His obedience to you @@.hotpink;has increased.@@
-	<<set $activeSlave.devotion += 4>>
+		$He tries to hide $his disappointment as $he turns to go, and as $he flees out the door you hear $him begin to cry. By the next morning, however, $his responses to your commands have become less flirtatious and much more attentive. $His obedience to you @@.hotpink;has increased.@@
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 
@@ -10387,145 +10391,145 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Commend $his service">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You clear your throat and compliment $him, commending $his work ethic, trustworthiness, and loyalty. $He blushes much harder as $he understands. "Thank you,
-	<<if $HGFormality == 1>>
-		<<Master>>!"
-	<<else>>
-		<<if def $PC.customTitle>><<Master>><<elseif $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>!"
-	<</if>>
-	$he says fervently, and gestures at the tablet.
-		"I've noti<<c>>ed a couple of the girl<<s>> working better together re<<c>>ently, <<s>>o I'm making <<s>>ome minor adju<<s>>tment<<s>> to give them more <<sh>>ift<<s>> together."
-	<br><br>
-	You're sure $he'll do $his best, and you tell $him so. $He thanks you again, and you both go back to your work. Though your Head Girl continues manipulating $his tablet diligently, $he can't seem to stop $himself from @@.hotpink;stealing the occasional glance at you.@@ $His <<= App.Desc.eyeColor($activeSlave)>> eyes, dark in the dimness of the office, seem to have an unaccountable sheen.
-	<<if $assistant != 0>>
-	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>>'s $assistantAppearance avatar appears on your desktop, glowing brightly, and ruins the moment. "$activeSlave.slaveName loooves $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Maaaster<<else>>Miiistress<</if>>," $he taunts,
-	<<switch $assistantAppearance>>
-	<<case "monstergirl">>
-		$his hair forming a heart shape.
-	<<case "shemale">>
-		using $his hands to make a heart shape over $his balls.
-	<<case "amazon">>
-		grinning far more sweetly than $his muscular form should be able to manage.
-	<<case "businesswoman">>
-		though $he's blushing $himself.
-	<<case "fairy" "pregnant fairy" "cherub">>
-		flitting around and giggling excitedly.
-	<<case "goddess">>
-		massaging $his pregnant belly meaningfully.
-	<<case "hypergoddess">>
-		massaging $his squirming pregnant belly meaningfully.
-	<<case "loli">>
-		giggling playfully.
-	<<case "preggololi">>
-		giggling playfully, though $his hands have wandered to $his crotch.
-	<<case "angel">>
-		using $his hands to make a heart shape.
-	<<case "incubus">>
-		using $his hands to make a heart shape around $his erection as $he thrusts.
-	<<case "succubus">>
-		<<if $PC.dick == 1>>forms an O with $his lips and makes exaggerated head bobbing motions<<else>>forms a V with $his fingers and wiggles $his tongue in it<</if>>.
-	<<case "imp">>
-		flapping around and cackling manically.
-	<<case "witch">>
-		while holding out a mostly empty vial of love potion.
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		forming half of $himself into an enormous pussy, the other into a giant dick and introducing the two to each other.
-	<<case "schoolgirl">>
-		the very picture of a malicious schoolgirl.
-	<<default>>
-		turning $his avatar a throbbing pink.
-	<</switch>>
-	<br><br>
-	Your Head Girl turns a darker shade of red. "Oh, <<sh>>ut up, you little
-	<<switch $assistantAppearance>>
-	<<case "monstergirl">>
-		mon<<s>>ter,"
-	<<case "shemale">>
-		cockmon<<s>>ter,"
-	<<case "amazon">>
-		dyke,"
-	<<case "businesswoman">>
-		witch,"
-	<<case "fairy" "pregnant fairy">>
-		mo<<s>>quito,"
-	<<case "goddess" "hypergoddess">>
-		cow,"
-	<<case "loli">>
-		midget,"
-	<<case "preggololi">>
-		<<s>>lut loli,"
-	<<case "angel">>
-		turkey,"
-	<<case "cherub">>
-		dove,"
-	<<case "incubus">>
-		dick,"
-	<<case "succubus">>
-		cunt,"
-	<<case "imp">>
-		bat,"
-	<<case "witch">>
-		blunderer,"
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		shapeshifter,"
-	<<case "schoolgirl">>
-		<<s>>lut,"
-	<<default>>
-		toa<<s>>ter,"
-	<</switch>>
-	$he says cattily, but $he's smiling.
-	<</if>>
-	<<set $activeSlave.devotion += 4>>
+		You clear your throat and compliment $him, commending $his work ethic, trustworthiness, and loyalty. $He blushes much harder as $he understands. "Thank you,
+		<<if $HGFormality == 1>>
+			<<Master>>!"
+		<<else>>
+			<<if def $PC.customTitle>><<Master>><<elseif $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>!"
+		<</if>>
+		$he says fervently, and gestures at the tablet.
+			"I've noti<<c>>ed a couple of the girl<<s>> working better together re<<c>>ently, <<s>>o I'm making <<s>>ome minor adju<<s>>tment<<s>> to give them more <<sh>>ift<<s>> together."
+		<br><br>
+		You're sure $he'll do $his best, and you tell $him so. $He thanks you again, and you both go back to your work. Though your Head Girl continues manipulating $his tablet diligently, $he can't seem to stop $himself from @@.hotpink;stealing the occasional glance at you.@@ $His <<= App.Desc.eyeColor($activeSlave)>> eyes, dark in the dimness of the office, seem to have an unaccountable sheen.
+		<<if $assistant != 0>>
+		<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>>'s $assistantAppearance avatar appears on your desktop, glowing brightly, and ruins the moment. "$activeSlave.slaveName loooves $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Maaaster<<else>>Miiistress<</if>>," $he taunts,
+		<<switch $assistantAppearance>>
+		<<case "monstergirl">>
+			$his hair forming a heart shape.
+		<<case "shemale">>
+			using $his hands to make a heart shape over $his balls.
+		<<case "amazon">>
+			grinning far more sweetly than $his muscular form should be able to manage.
+		<<case "businesswoman">>
+			though $he's blushing $himself.
+		<<case "fairy" "pregnant fairy" "cherub">>
+			flitting around and giggling excitedly.
+		<<case "goddess">>
+			massaging $his pregnant belly meaningfully.
+		<<case "hypergoddess">>
+			massaging $his squirming pregnant belly meaningfully.
+		<<case "loli">>
+			giggling playfully.
+		<<case "preggololi">>
+			giggling playfully, though $his hands have wandered to $his crotch.
+		<<case "angel">>
+			using $his hands to make a heart shape.
+		<<case "incubus">>
+			using $his hands to make a heart shape around $his erection as $he thrusts.
+		<<case "succubus">>
+			<<if $PC.dick == 1>>forms an O with $his lips and makes exaggerated head bobbing motions<<else>>forms a V with $his fingers and wiggles $his tongue in it<</if>>.
+		<<case "imp">>
+			flapping around and cackling manically.
+		<<case "witch">>
+			while holding out a mostly empty vial of love potion.
+		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+			forming half of $himself into an enormous pussy, the other into a giant dick and introducing the two to each other.
+		<<case "schoolgirl">>
+			the very picture of a malicious schoolgirl.
+		<<default>>
+			turning $his avatar a throbbing pink.
+		<</switch>>
+		<br><br>
+		Your Head Girl turns a darker shade of red. "Oh, <<sh>>ut up, you little
+		<<switch $assistantAppearance>>
+		<<case "monstergirl">>
+			mon<<s>>ter,"
+		<<case "shemale">>
+			cockmon<<s>>ter,"
+		<<case "amazon">>
+			dyke,"
+		<<case "businesswoman">>
+			witch,"
+		<<case "fairy" "pregnant fairy">>
+			mo<<s>>quito,"
+		<<case "goddess" "hypergoddess">>
+			cow,"
+		<<case "loli">>
+			midget,"
+		<<case "preggololi">>
+			<<s>>lut loli,"
+		<<case "angel">>
+			turkey,"
+		<<case "cherub">>
+			dove,"
+		<<case "incubus">>
+			dick,"
+		<<case "succubus">>
+			cunt,"
+		<<case "imp">>
+			bat,"
+		<<case "witch">>
+			blunderer,"
+		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+			<<sh>>ape<<sh>>ifter,"
+		<<case "schoolgirl">>
+			<<s>>lut,"
+		<<default>>
+			toa<<s>>ter,"
+		<</switch>>
+		$he says cattily, but $he's smiles as well.
+		<</if>>
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Share some refreshments with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You reach into the back of your desk, where your private reserves are, and wordlessly offer $him a
-	<<if $PC.refreshmentType == 0>>
-		$PC.refreshment.
-	<<elseif $PC.refreshmentType == 1>>
-		glass of $PC.refreshment.
-	<<elseif $PC.refreshmentType == 2>>
-		plate of $PC.refreshment.
-	<<elseif $PC.refreshmentType == 3>>
-		line of $PC.refreshment.
-	<<elseif $PC.refreshmentType == 4>>
-		syringe of $PC.refreshment.
-	<<elseif $PC.refreshmentType == 5>>
-		pill of $PC.refreshment.
-	<<elseif $PC.refreshmentType == 6>>
-		tab of $PC.refreshment.
-	<</if>>
-	$He stares at you disbelievingly for a moment before stammering $his thanks and accepting it with both hands. $He holds it uncertainly, watching you get one yourself.
-	<br><br>
-	$He is first among your slaves, but $he is still very much a slave. $He neither receives nor expects
-	<<if $PC.refreshmentType == 0>>
-		indulgences like tobacco and other smokables. Carcinogens are sometimes the necessary side effects of slave body modification, not an acceptable downside of luxury.
-	<<elseif $PC.refreshmentType == 1>>
-		drink other than what the slave feeding systems provide $him. $He might be your Head Girl, but the liquid food keeps $his libido charged, $his body healthy, and $his asshole invitingly clean, just like any other slave.
-	<<elseif $PC.refreshmentType == 2>>
-		food other than what the slave feeding systems provide $him. $He might be your Head Girl, but the liquid food keeps $his libido charged, $his body healthy, and $his asshole invitingly clean, just like any other slave.
-	<<else>>
-		drugs other than what the drug dispensers provide $him. Addictive drugs are rarely provided to slaves, replaced instead with slightly healthier, but no less addictive, aphrodisiacs.
-	<</if>>
-	But it'll do no harm, just this once, and you tell $him so. $He nods, not wanting to spoil the moment by speaking.
-	<br><br>
-	<<if $PC.refreshmentType == 0>>
-		After you light $his $PC.refreshment for $him, $he holds the <<if canTaste($activeSlave)>>first taste<<else>>feeling<</if>> of its smoke in $his mouth for a long, sensual moment before letting it trickle back out through $his lips.
-	<<elseif $PC.refreshmentType == 1 || $PC.refreshmentType == 2>>
-		$He holds the <<if canTaste($activeSlave)>>first taste<<else>>feeling<</if>> of it in $his mouth for a long, sensual moment before swallowing reverently.
-	<<else>>
-		$He savors the thrill of using $PC.refreshment for a moment, before turning to you, an almost desperate need on $his face.
-	<</if>>
-	You return to work, and $he follows your example, though $he's rather distracted. When $he finishes $hers, $he sets $his tablet down for a moment and comes over to you, doing $his best to show $his naked body to its best advantage as $he comes. $He gives you a deep kiss,
-	<<if $PC.refreshmentType == 0 || $PC.refreshmentType == 1 || $PC.refreshmentType == 2>>
-		which tastes of fine $PC.refreshment, with a hint of $activeSlave.slaveName,
-	<<else>>
-		with plenty of tongue,
-	<</if>>
-	and then goes back to work, @@.mediumaquamarine;smiling unconsciously@@ as $he savors the lingering <<if $PC.refreshmentType == 3 || $PC.refreshmentType == 4 || $PC.refreshmentType == 5 || $PC.refreshmentType == 6>>rush<<else>><<if canTaste($activeSlave)>>flavor<<else>>sensation<</if>><</if>>.
-	<<set $activeSlave.trust += 4>>
+		You reach into the back of your desk, where your private reserves are, and wordlessly offer $him a
+		<<if $PC.refreshmentType == 0>>
+			$PC.refreshment.
+		<<elseif $PC.refreshmentType == 1>>
+			glass of $PC.refreshment.
+		<<elseif $PC.refreshmentType == 2>>
+			plate of $PC.refreshment.
+		<<elseif $PC.refreshmentType == 3>>
+			line of $PC.refreshment.
+		<<elseif $PC.refreshmentType == 4>>
+			syringe of $PC.refreshment.
+		<<elseif $PC.refreshmentType == 5>>
+			pill of $PC.refreshment.
+		<<elseif $PC.refreshmentType == 6>>
+			tab of $PC.refreshment.
+		<</if>>
+		$He stares at you disbelievingly for a moment before stammering $his thanks and accepting it with both hands. $He holds it uncertainly, watching you get one yourself.
+		<br><br>
+		$He is first among your slaves, but $he is still very much a slave. $He neither receives nor expects
+		<<if $PC.refreshmentType == 0>>
+			indulgences like tobacco and other smokables. Carcinogens are sometimes the necessary side effects of slave body modification, not an acceptable downside of luxury.
+		<<elseif $PC.refreshmentType == 1>>
+			drink other than what the slave feeding systems provide $him. $He might be your Head Girl, but the liquid food keeps $his libido charged, $his body healthy, and $his asshole invitingly clean, just like any other slave.
+		<<elseif $PC.refreshmentType == 2>>
+			food other than what the slave feeding systems provide $him. $He might be your Head Girl, but the liquid food keeps $his libido charged, $his body healthy, and $his asshole invitingly clean, just like any other slave.
+		<<else>>
+			drugs other than what the drug dispensers provide $him. Addictive drugs are rarely provided to slaves, replaced instead with slightly healthier, but no less addictive, aphrodisiacs.
+		<</if>>
+		But it'll do no harm, just this once, and you tell $him so. $He nods, not wanting to spoil the moment by speaking.
+		<br><br>
+		<<if $PC.refreshmentType == 0>>
+			After you light $his $PC.refreshment for $him, $he holds the <<if canTaste($activeSlave)>>first taste<<else>>feeling<</if>> of its smoke in $his mouth for a long, sensual moment before letting it trickle back out through $his lips.
+		<<elseif $PC.refreshmentType == 1 || $PC.refreshmentType == 2>>
+			$He holds the <<if canTaste($activeSlave)>>first taste<<else>>feeling<</if>> of it in $his mouth for a long, sensual moment before swallowing reverently.
+		<<else>>
+			$He savors the thrill of using $PC.refreshment for a moment, before turning to you, an almost desperate need on $his face.
+		<</if>>
+		You return to work, and $he follows your example, though $he's rather distracted. When $he finishes $hers, $he sets $his tablet down for a moment and comes over to you, doing $his best to show $his naked body to its best advantage as $he comes. $He gives you a deep kiss,
+		<<if $PC.refreshmentType == 0 || $PC.refreshmentType == 1 || $PC.refreshmentType == 2>>
+			which tastes of fine $PC.refreshment, with a hint of $activeSlave.slaveName,
+		<<else>>
+			with plenty of tongue,
+		<</if>>
+		and then goes back to work, @@.mediumaquamarine;smiling unconsciously@@ as $he savors the lingering <<if $PC.refreshmentType == 3 || $PC.refreshmentType == 4 || $PC.refreshmentType == 5 || $PC.refreshmentType == 6>>rush<<else>><<if canTaste($activeSlave)>>flavor<<else>>sensation<</if>><</if>>.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 
@@ -10534,221 +10538,221 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Tell $him the truth">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You explain the effects of the
-	<<if ($activeSlave.aphrodisiacs > 0) || $activeSlave.inflationType == "aphrodisiac">>
-		sex drugs
-	<<elseif ($activeSlave.clitPiercing == 3) && ($activeSlave.clitSetting != "none")>>
-		advanced <<if $activeSlave.vagina > -1>>clit<<else>>frenulum<</if>> piercing
-	<<else>>
-		slave food
-	<</if>>
-	briefly. Comprehension dawns across $his<<if $activeSlave.faceShape != "normal">> $activeSlave.faceShape<</if>> face.
-	"Yes <<Master>>," $he <<say>>s quietly, more to buy time to formulate a response than anything else. "Um. I <<s>>till really, really want to cum, though. W-would you plea<<s>>e fuck me? Plea<<s>>e, plea<<s>>e, <<Master>>, plea<<s>>e fuck
-	<<if ($activeSlave.vagina > 0) && ($activeSlave.preg > $activeSlave.pregData.normalBirth/4) && canDoVaginal($activeSlave)>>
-		my pregnant pu<<ss>>y."
-	<<elseif ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
-		me."
-	<<elseif canDoAnal($activeSlave)>>
-		my butt."
-	<<else>>
-		<<if ($activeSlave.vagina > 0) && ($activeSlave.preg > $activeSlave.pregData.normalBirth/4)>>
-			my pregnant pu<<ss>>y.
-		<<elseif ($activeSlave.vagina > 0)>>
-			me.
+		You explain the effects of the
+		<<if ($activeSlave.aphrodisiacs > 0) || $activeSlave.inflationType == "aphrodisiac">>
+			sex drugs
+		<<elseif ($activeSlave.clitPiercing == 3) && ($activeSlave.clitSetting != "none")>>
+			advanced <<if $activeSlave.vagina > -1>>clit<<else>>frenulum<</if>> piercing
 		<<else>>
-			my butt.
+			slave food
 		<</if>>
-		I need it <<s>>o bad right now, plea<<s>>e rip off my cha<<s>>tity and fuck me <<s>>en<<s>>ele<<ss>>."
-	<</if>>
-	A vague hint of embarrassment at begging for <<if $PC.dick == 1>>a hard<<if $PC.vagina == 1>>futa<</if>> dicking<<else>>your strap-on<</if>> flickers across $his face, but hope for sexual release extinguishes it quickly.
-	<br><br>
-	<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-		$He groans with relief as your <<if $PC.dick == 1>>cock<<else>>phallus<</if>> enters $him. $He does not orgasm immediately, but $he knows sweet release is coming. You have $him atop your desk, on $his back, and $he's participating in $his own sexual degradation by holding $his legs spread wide apart for you. "Ohh," $he moans as you fuck $him, "thank you for telling me why I feel thi<<s>> way, <<Master>>. I gue<<ss>> thi<<s>> i<<s>> how I, oh, am now? Oh, oh, it feel<<s>> <<s>>o g-good! Ye<<s>>! AHH!"
-		<<if $PC.dick == 1>>
-			$His
-			<<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
-				cunt
+		briefly. Comprehension dawns across $his<<if $activeSlave.faceShape != "normal">> $activeSlave.faceShape<</if>> face.
+		"Yes <<Master>>," $he <<say>>s quietly, more to buy time to formulate a response than anything else. "Um. I <<s>>till really, really want to cum, though. W-would you plea<<s>>e fuck me? Plea<<s>>e, plea<<s>>e, <<Master>>, plea<<s>>e fuck
+		<<if ($activeSlave.vagina > 0) && ($activeSlave.preg > $activeSlave.pregData.normalBirth/4) && canDoVaginal($activeSlave)>>
+			my pregnant pu<<ss>>y."
+		<<elseif ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
+			me."
+		<<elseif canDoAnal($activeSlave)>>
+			my butt."
+		<<else>>
+			<<if ($activeSlave.vagina > 0) && ($activeSlave.preg > $activeSlave.pregData.normalBirth/4)>>
+				my pregnant pu<<ss>>y.
+			<<elseif ($activeSlave.vagina > 0)>>
+				me.
 			<<else>>
-				asshole
+				my butt.
 			<</if>>
-			tightens around your shaft delightfully as $he climaxes.
-		<<else>>
-			$He shudders with climax.
+			I need it <<s>>o bad right now, plea<<s>>e rip off my cha<<s>>tity and fuck me <<s>>en<<s>>ele<<ss>>."
 		<</if>>
-		$He smiles @@.mediumaquamarine;trustingly@@ up at you in the afterglow,
-		<<if $activeSlave.balls > 0>>
-			$his ejaculate
-			<<if ($activeSlave.chastityPenis == 1)>>
-				seeping from $his chastity cage,
+		A vague hint of embarrassment at begging for <<if $PC.dick == 1>>a hard<<if $PC.vagina == 1>>futa<</if>> dicking<<else>>your strap-on<</if>> flickers across $his face, but hope for sexual release extinguishes it quickly.
+		<br><br>
+		<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
+			$He groans with relief as your <<if $PC.dick == 1>>cock<<else>>phallus<</if>> enters $him. $He does not orgasm immediately, but $he knows sweet release is coming. You have $him atop your desk, on $his back, and $he's participating in $his own sexual degradation by holding $his legs spread wide apart for you. "Ohh," $he moans as you fuck $him, "thank you for telling me why I feel thi<<s>> way, <<Master>>. I gue<<ss>> thi<<s>> i<<s>> how I, oh, am now? Oh, oh, it feel<<s>> <<s>>o g-good! Ye<<s>>! AHH!"
+			<<if $PC.dick == 1>>
+				$His
+				<<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
+					cunt
+				<<else>>
+					asshole
+				<</if>>
+				tightens around your shaft delightfully as $he climaxes.
 			<<else>>
-				glistening on $his<<if $activeSlave.belly > 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> gravid<</if>><</if>> belly,
+				$He shudders with climax.
 			<</if>>
-		<</if>>
-		touched that you would tell $him something like that so honestly.
-		<<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
-			<<= BothVCheck()>>
-		<<else>>
-			<<= AnalVCheck()>>
-		<</if>>
-	<<else>>
-		$He groans with lust as pull $him onto your lap to make out. "Ohh," $he moans as you run your hands across $his
-		<<if $activeSlave.boobsImplant >= 1000 && (($activeSlave.boobsImplant/$activeSlave.boobs) >= .60)>>
-			bimbo
-		<<elseif $activeSlave.boobs >= 1000 && $activeSlave.butt > 5 && $activeSlave.hips > 0>>
-			fecund
-		<<elseif $activeSlave.boobs >= 1000 && $activeSlave.butt > 5>>
-			voluptuous
-		<<elseif $activeSlave.weight > 190>>
-			voluminous
-		<<elseif $activeSlave.belly >= 5000>>
-			<<if $activeSlave.bellyPreg >= 3000>>
-				gravid
-			<<elseif $activeSlave.bellyImplant >= 3000>>
-				rounded
+			$He smiles @@.mediumaquamarine;trustingly@@ up at you in the afterglow,
+			<<if $activeSlave.balls > 0>>
+				$his ejaculate
+				<<if ($activeSlave.chastityPenis == 1)>>
+					seeping from $his chastity cage,
+				<<else>>
+					glistening on $his<<if $activeSlave.belly > 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> gravid<</if>><</if>> belly,
+				<</if>>
+			<</if>>
+			touched that you would tell $him something like that so honestly.
+			<<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
+				<<= BothVCheck()>>
 			<<else>>
-				swollen
+				<<= AnalVCheck()>>
 			<</if>>
-		<<elseif $activeSlave.weight > 30>>
-			soft
-		<<elseif $activeSlave.muscles > 30>>
-			ripped
-		<<elseif $activeSlave.muscles > 5>>
-			toned
-		<<elseif $activeSlave.boobs >= 500>>
-			sultry
 		<<else>>
-			needy
-		<</if>>
-		body, "thank you for telling me why I feel thi<<s>> way, <<Master>>. I gue<<ss>> thi<<s>> i<<s>> how I, oh, am now?" You reward $him for the realization by
-		<<switch $activeSlave.nipples>>
-		<<case "huge">>
-			stroking $his lewdly erect nipples.
-		<<case "puffy">>
-			cupping and fondling $his puffy nipples.
-		<<case "partially inverted">>
-			teasing $his fully exposed nipples.
-		<<case "inverted">>
-			squeezing $his puffy areolae until $his inverted nipples pop out for you to tease.
-		<<case "fuckable">>
-			sticking your fingers deep into $his nipples.
-		<<default>>
-			tweaking $his $activeSlave.nipples nipples.
-		<</switch>>
-		The pent-up $girl is so desperate for release, you can feel $him trembling with ecstasy from the nipple stimulation alone.
-		"Oh, oh, it feel<<s>> <<s>>o g-good! Ye<<s>>! AHH!"
-		$He shudders with climax, smiling @@.mediumaquamarine;trustingly@@ up at you in the afterglow,
-		<<if $activeSlave.balls > 0>>
-			$his ejaculate
-			<<if ($activeSlave.chastityPenis == 1)>>
-				seeping from $his chastity cage,
+			$He groans with lust as pull $him onto your lap to make out. "Ohh," $he moans as you run your hands across $his
+			<<if $activeSlave.boobsImplant >= 1000 && (($activeSlave.boobsImplant/$activeSlave.boobs) >= .60)>>
+				bimbo
+			<<elseif $activeSlave.boobs >= 1000 && $activeSlave.butt > 5 && $activeSlave.hips > 0>>
+				fecund
+			<<elseif $activeSlave.boobs >= 1000 && $activeSlave.butt > 5>>
+				voluptuous
+			<<elseif $activeSlave.weight > 190>>
+				voluminous
+			<<elseif $activeSlave.belly >= 5000>>
+				<<if $activeSlave.bellyPreg >= 3000>>
+					gravid
+				<<elseif $activeSlave.bellyImplant >= 3000>>
+					rounded
+				<<else>>
+					swollen
+				<</if>>
+			<<elseif $activeSlave.weight > 30>>
+				soft
+			<<elseif $activeSlave.muscles > 30>>
+				ripped
+			<<elseif $activeSlave.muscles > 5>>
+				toned
+			<<elseif $activeSlave.boobs >= 500>>
+				sultry
 			<<else>>
-				glistening on $his<<if $activeSlave.belly > 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> gravid<</if>><</if>> belly,
+				needy
+			<</if>>
+			body, "thank you for telling me why I feel thi<<s>> way, <<Master>>. I gue<<ss>> thi<<s>> i<<s>> how I, oh, am now?" You reward $him for the realization by
+			<<switch $activeSlave.nipples>>
+			<<case "huge">>
+				stroking $his lewdly erect nipples.
+			<<case "puffy">>
+				cupping and fondling $his puffy nipples.
+			<<case "partially inverted">>
+				teasing $his fully exposed nipples.
+			<<case "inverted">>
+				squeezing $his puffy areolae until $his inverted nipples pop out for you to tease.
+			<<case "fuckable">>
+				sticking your fingers deep into $his nipples.
+			<<default>>
+				tweaking $his $activeSlave.nipples nipples.
+			<</switch>>
+			The pent-up $girl is so desperate for release, you can feel $him trembling with ecstasy from the nipple stimulation alone.
+			"Oh, oh, it feel<<s>> <<s>>o g-good! Ye<<s>>! AHH!"
+			$He shudders with climax, smiling @@.mediumaquamarine;trustingly@@ up at you in the afterglow,
+			<<if $activeSlave.balls > 0>>
+				$his ejaculate
+				<<if ($activeSlave.chastityPenis == 1)>>
+					seeping from $his chastity cage,
+				<<else>>
+					glistening on $his<<if $activeSlave.belly > 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> gravid<</if>><</if>> belly,
+				<</if>>
 			<</if>>
+			touched that you would tell $him something like that so honestly.
+			<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
 		<</if>>
-		touched that you would tell $him something like that so honestly.
-		<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
-	<</if>>
-	<<set $activeSlave.trust += 4>>
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <<if ($activeSlave.fetish != "cumslut") || ($activeSlave.fetishKnown != 1)>>
-<br><<link "Trade some oral for release">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You observe, noncommittally, that $he seems ready to get off.
-	"Ye<<s>> <<Master>>!" $he squeals, too <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -50>>horny<<else>>stupid<</if>> to notice the sarcasm. Sighing inwardly, you slide yourself back from your desk and glance downward significantly, indicating your <<if $PC.dick == 1>>dick<<if $PC.vagina == 1>> and pussy<</if>><<else>>girl parts<</if>>. $He hurries over, almost throwing $himself at your feet in $his eagerness. "Touch yourself", you say, making it an imperious command rather than kind permission. $He moans into your <<if $PC.dick == 1>>cock<<else>>cunt<</if>> with gratitude as $he
-	<<if canDoVaginal($activeSlave)>>
-		<<if $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
-			wraps one hand around $his dick and slips the other into $his pussy.
-		<<else>>
-			dives for $his pussy with both hands.
-		<</if>>
-	<<elseif $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
-		<<if canAchieveErection($activeSlave)>>
-			<<if $activeSlave.dick > 4>>
-				wraps $his hands around $his huge erection.
-			<<elseif canDoAnal($activeSlave) && $activeSlave.prostate > 0>>
-				wraps a hand around $his throbbing erection and reaches around to finger $his butt and stimulate $his prostate.$his
-			<<else>>
-				wraps a hand around $his throbbing erection.
-			<</if>>
-		<<else>>
-			<<if $activeSlave.dick > 4>>
-				dives for $his huge, soft cock with both hands.
+	<br><<link "Trade some oral for release">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You observe, noncommittally, that $he seems ready to get off.
+			"Ye<<s>> <<Master>>!" $he squeals, too <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -50>>horny<<else>>stupid<</if>> to notice the sarcasm. Sighing inwardly, you slide yourself back from your desk and glance downward significantly, indicating your <<if $PC.dick == 1>>dick<<if $PC.vagina == 1>> and pussy<</if>><<else>>girl parts<</if>>. $He hurries over, almost throwing $himself at your feet in $his eagerness. "Touch yourself", you say, making it an imperious command rather than kind permission. $He moans into your <<if $PC.dick == 1>>cock<<else>>cunt<</if>> with gratitude as $he
+			<<if canDoVaginal($activeSlave)>>
+				<<if $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
+					wraps one hand around $his dick and slips the other into $his pussy.
+				<<else>>
+					dives for $his pussy with both hands.
+				<</if>>
+			<<elseif $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
+				<<if canAchieveErection($activeSlave)>>
+					<<if $activeSlave.dick > 4>>
+						wraps $his hands around $his huge erection.
+					<<elseif canDoAnal($activeSlave) && $activeSlave.prostate > 0>>
+						wraps a hand around $his throbbing erection and reaches around to finger $his butt and stimulate $his prostate.$his
+					<<else>>
+						wraps a hand around $his throbbing erection.
+					<</if>>
+				<<else>>
+					<<if $activeSlave.dick > 4>>
+						dives for $his huge, soft cock with both hands.
+					<<else>>
+						reaches down to fondle $his limp dick.
+					<</if>>
+				<</if>>
+			<<elseif canDoAnal($activeSlave)>>
+				<<if $activeSlave.dick == 0>>
+					reaches down and around to rub $his <<if canDoAnal($activeSlave)>>anus and <</if>>perineum.
+				<<else>>
+					<<if $activeSlave.vagina == -1>>
+						reaches around to finger $his butt, since that's $his only hole.
+					<<elseif $activeSlave.chastityVagina == 1>>
+						reaches around to finger $his butt, since $his pussy's in chastity.
+					<<else>>
+						dives for $his pussy with both hands.
+					<</if>>
+				<</if>>
+			<<elseif $activeSlave.vagina == -1 && $activeSlave.dick == 0>>
+				<<if $activeSlave.balls > 4>>
+					cups $his desperate balls, massaging them and encouraging them to release their pent-up cum.
+				<<else>>
+					reaches down and around to rub $his <<if canDoAnal($activeSlave)>>anus and <</if>>perineum.
+				<</if>>
 			<<else>>
-				reaches down to fondle $his limp dick.
+				brings $his hands to $his breasts to <<if $activeSlave.nipples != "fuckable">>tease $his erect<<else>>finger $his swollen<</if>> nipples.
 			<</if>>
-		<</if>>
-	<<elseif canDoAnal($activeSlave)>>
-		<<if $activeSlave.dick == 0>>
-			reaches down and around to rub $his <<if canDoAnal($activeSlave)>>anus and <</if>>perineum.
-		<<else>>
-			<<if $activeSlave.vagina == -1>>
-				reaches around to finger $his butt, since that's $his only hole.
-			<<elseif $activeSlave.chastityVagina == 1>>
-				reaches around to finger $his butt, since $his pussy's in chastity.
+			<br><br>
+			$He's extremely pent up, and orgasms twice with <<if $PC.dick == 1>>your dick in $his mouth<<if $PC.vagina == 1>> first and $his tongue quivering along your pussylips second<</if>><<else>>$his mouth on your cunt<</if>>. The mental effects of this formative little experience are impossible to control with precision. Over the next few days, you notice that whenever <<if canSee($activeSlave)>>$he sees you<<else>>you see $him<</if>>,
+			<<if (random(0,1) == 1)>>
+				$he licks $his lips unconsciously. $He seems to be developing the beginnings of a lovely @@.lightcoral;oral fixation.@@
+				<<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
 			<<else>>
-				dives for $his pussy with both hands.
+				$he betrays mixed feelings. The shocking intimacy of reaching sexual release as $he used $his mouth to pleasure you seems to be @@.hotpink;affecting $him.@@
+				<<set $activeSlave.devotion += 4>>
 			<</if>>
-		<</if>>
-	<<elseif $activeSlave.vagina == -1 && $activeSlave.dick == 0>>
-		<<if $activeSlave.balls > 4>>
-			cups $his desperate balls, massaging them and encouraging them to release their pent-up cum.
-		<<else>>
-			reaches down and around to rub $his <<if canDoAnal($activeSlave)>>anus and <</if>>perineum.
-		<</if>>
-	<<else>>
-		brings $his hands to $his breasts to <<if $activeSlave.nipples != "fuckable">>tease $his erect<<else>>finger $his swollen<</if>> nipples.
-	<</if>>
-	<br><br>
-	$He's extremely pent up, and orgasms twice with <<if $PC.dick == 1>>your dick in $his mouth<<if $PC.vagina == 1>> first and $his tongue quivering along your pussylips second<</if>><<else>>$his mouth on your cunt<</if>>. The mental effects of this formative little experience are impossible to control with precision. Over the next few days, you notice that whenever <<if canSee($activeSlave)>>$he sees you<<else>>you see $him<</if>>,
-	<<if (random(0,1) == 1)>>
-		$he licks $his lips unconsciously. $He seems to be developing the beginnings of a lovely @@.lightcoral;oral fixation.@@
-		<<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
-	<<else>>
-		$he betrays mixed feelings. The shocking intimacy of reaching sexual release as $he used $his mouth to pleasure you seems to be @@.hotpink;affecting $him.@@
-		<<set $activeSlave.devotion += 4>>
-	<</if>>
-	<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<</replace>>
-<</link>>
+			<<set $activeSlave.counter.oral++, $oralTotal++>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if ($activeSlave.fetish != "buttslut") || ($activeSlave.fetishKnown != 1)>>
-<<if ($activeSlave.vagina == -1) && ($activeSlave.attrXY <= 65)>>
-<br><<link "Make $him cum like a girl">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You order $him to get $his ass up on your desk. $He obeys, though not without a flicker of trepidation. $He points $his butt at you like a sex slave should, and doesn't crane around to see what you're doing behind $him, but $he's stiff with the awareness that <<if $PC.dick == 1>>there's almost certainly a hard<<if $PC.vagina == 1>> futa<</if>> dick about<<else>>you're almost certainly donning a strap-on<</if>> to slide inside $his girly asspussy. $He's not wrong, and $he lets out a little moan as <<if $PC.dick == 1>>your cockhead<<if $PC.vagina == 1>>, which you kindly lubed with a bit of your pussyjuice,<</if>><<else>>its broad tip<</if>> <<if $activeSlave.anus > 2>>slides easily inside $his whorish anus<<elseif $activeSlave.anus == 2>>slides up $his experienced butthole<<else>>forces its way inside $his tight sphincter<</if>>.
-	<br><br>
-	As you fuck $him, you pull $his torso up so you can play with $his <<if $activeSlave.boobs > 2000>>udders<<elseif $activeSlave.boobs > 800>>tits<<else>>nipples<</if>> and whisper manipulation into $his ear. You tell $him $he's about to cum like a girl. $He says nothing, but $his body language communicates incomprehension. Girls, you tell $him, cum when they get fucked. They cum when <<if $PC.title == 1>>guys<<else>>their betters<</if>> stick dick inside them. $He bursts into tears, sobbing with shame and degradation even as $he shakes and <<if $activeSlave.balls > 0>>squirts cum<<else>>dribbles ejaculate<</if>>. The next time $he sees you,
-	<<if (random(0,1) == 1)>>
-		$he visibly gathers $his courage, and flirtily @@.lightcoral;offers you $his ass.@@
-		<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
-	<<else>>
-		$he manages to stop $himself from breaking down, and seems to be @@.hotpink;working hard@@ to convince $himself that $he's a girl.
-		<<set $activeSlave.devotion += 4>>
-	<</if>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>>
-<<elseif ($activeSlave.vagina > -1)>>
-<br><<link "Work on broadening $his sexual horizons">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He seems a little too focused on $his hot cunt. You order $him to get up on your desk, and $he obeys eagerly, $his <<if canSee($activeSlave)>><<= App.Desc.eyeColor($activeSlave)>> eyes shining<<else>>facial expression filled<</if>> with lust. <<if canSee($activeSlave)>>They focus<<else>>$He focuses<</if>> on <<if $PC.dick == 1>>your cock as you bring it to bear<<if $PC.vagina == 1>>, not to mention the pussy at its base<</if>><<else>>your strap-on as you step into it<</if>>, and $he's about to express $his gratitude when you push the slave, who is sitting on the edge of your desk with $his legs spread to provide you access to $his pussy, over onto $his back. $He barely has time to reorient $himself when $he feels <<if $activeSlave.anus > 2>>a sudden fullness in $his loose ass<<elseif $activeSlave.anus == 2>>a presence inside $his experienced ass<<else>>something starting to push its way up $his poor little bottom<</if>>.
-	<br><br>
-	$He cannot hide $his disappointment, but has the presence of mind not to protest as you assfuck $him hard enough that $his <<if $activeSlave.boobs > 2000>>ridiculous tits almost hit $him in the face with each stroke<<elseif $activeSlave.boobs > 800>>big boobs bounce all over the place<<else>>boobs bounce<</if>><<if $activeSlave.belly >= 10000>> and taut belly is forced back<</if>>. $His orgasm sneaks up on $him, and comes by surprise, forcing a squeal out of $him as $his sphincter tightens down involuntarily. $He gets up gingerly, clearly feeling sore,
-	<<if (random(0,1) == 1)>>
-		and looks preoccupied. $He reaches idly around and massages $his well-fucked backdoor meditatively, biting $his lower lip as $he investigates. Maybe, $he seems to be thinking, @@.lightcoral;anal is fun?@@
-		<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
-	<<else>>
-		but @@.hotpink;does $his honest best@@ to look grateful. $He knows $he's a sex slave and can't afford to be particular about little things like getting buttfucked.
-		<<set $activeSlave.devotion += 4>>
+	<<if ($activeSlave.vagina == -1) && ($activeSlave.attrXY <= 65)>>
+		<br><<link "Make $him cum like a girl">>
+			<<EventNameDelink $activeSlave>>
+			<<replace "#result">>
+				You order $him to get $his ass up on your desk. $He obeys, though not without a flicker of trepidation. $He points $his butt at you like a sex slave should, and doesn't crane around to see what you're doing behind $him, but $he's stiff with the awareness that <<if $PC.dick == 1>>there's almost certainly a hard<<if $PC.vagina == 1>> futa<</if>> dick about<<else>>you're almost certainly donning a strap-on<</if>> to slide inside $his girly asspussy. $He's not wrong, and $he lets out a little moan as <<if $PC.dick == 1>>your cockhead<<if $PC.vagina == 1>>, which you kindly lubed with a bit of your pussyjuice,<</if>><<else>>its broad tip<</if>> <<if $activeSlave.anus > 2>>slides easily inside $his whorish anus<<elseif $activeSlave.anus == 2>>slides up $his experienced butthole<<else>>forces its way inside $his tight sphincter<</if>>.
+				<br><br>
+				As you fuck $him, you pull $his torso up so you can play with $his <<if $activeSlave.boobs > 2000>>udders<<elseif $activeSlave.boobs > 800>>tits<<else>>nipples<</if>> and whisper manipulation into $his ear. You tell $him $he's about to cum like a girl. $He says nothing, but $his body language communicates incomprehension. Girls, you tell $him, cum when they get fucked. They cum when <<if $PC.title == 1>>guys<<else>>their betters<</if>> stick dick inside them. $He bursts into tears, sobbing with shame and degradation even as $he shakes and <<if $activeSlave.balls > 0>>squirts cum<<else>>dribbles ejaculate<</if>>. The next time $he sees you,
+				<<if (random(0,1) == 1)>>
+					$he visibly gathers $his courage, and flirtatiously @@.lightcoral;offers you $his ass.@@
+					<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
+				<<else>>
+					$he manages to stop $himself from breaking down, and seems to be @@.hotpink;working hard@@ to convince $himself that $he's a girl.
+					<<set $activeSlave.devotion += 4>>
+				<</if>>
+				<<= AnalVCheck()>>
+			<</replace>>
+		<</link>>
+	<<elseif ($activeSlave.vagina > -1)>>
+		<br><<link "Work on broadening $his sexual horizons">>
+			<<EventNameDelink $activeSlave>>
+			<<replace "#result">>
+				$He seems a little too focused on $his hot cunt. You order $him to get up on your desk, and $he obeys eagerly, $his <<if canSee($activeSlave)>><<= App.Desc.eyeColor($activeSlave)>> eyes shining<<else>>facial expression filled<</if>> with lust. <<if canSee($activeSlave)>>They focus<<else>>$He focuses<</if>> on <<if $PC.dick == 1>>your cock as you bring it to bear<<if $PC.vagina == 1>>, not to mention the pussy at its base<</if>><<else>>your strap-on as you step into it<</if>>, and $he's about to express $his gratitude when you push the slave, who is sitting on the edge of your desk with $his legs spread to provide you access to $his pussy, over onto $his back. $He barely has time to reorient $himself when $he feels <<if $activeSlave.anus > 2>>a sudden fullness in $his loose ass<<elseif $activeSlave.anus == 2>>a presence inside $his experienced ass<<else>>something starting to push its way up $his poor little bottom<</if>>.
+				<br><br>
+				$He cannot hide $his disappointment, but has the presence of mind not to protest as you assfuck $him hard enough that $his <<if $activeSlave.boobs > 2000>>ridiculous tits almost hit $him in the face with each stroke<<elseif $activeSlave.boobs > 800>>big boobs bounce all over the place<<else>>boobs bounce<</if>><<if $activeSlave.belly >= 10000>> and taut belly is forced back<</if>>. $His orgasm sneaks up on $him, and comes by surprise, forcing a squeal out of $him as $his sphincter tightens down involuntarily. $He gets up gingerly, clearly feeling sore,
+				<<if (random(0,1) == 1)>>
+					and looks preoccupied. $He reaches idly around and massages $his well-fucked backdoor meditatively, biting $his lower lip as $he investigates. Maybe, $he seems to be thinking, @@.lightcoral;anal is fun?@@
+					<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
+				<<else>>
+					but @@.hotpink;does $his honest best@@ to look grateful. $He knows $he's a sex slave and can't afford to be particular about little things like getting buttfucked.
+					<<set $activeSlave.devotion += 4>>
+				<</if>>
+				<<= AnalVCheck()>>
+			<</replace>>
+		<</link>>
 	<</if>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>>
-<</if>>
 <</if>>
 
 <<case "cage relief">>
@@ -10756,56 +10760,56 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Help $him get off">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You take $him by the hand and pull $him to $his feet, and then kiss $him. $He knows that this means no, but melts into you anyway, accepting the comforting gesture for what it is. $He's surprised when you do not break the kiss, but continues to make out with you compliantly. You take $him by the hands, intertwining your fingers with $hers and holding them down at your sides for a while before wrapping $his arms around you at your
-	<<if $PC.belly >= 10000>>
-		heavily pregnant
-	<<elseif $PC.belly >= 5000>>
-		gravid
-	<<elseif $PC.belly >= 1500>>
-		swollen
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		muscular
-	<<elseif $PC.title == 0>>
-		feminine
-	<<else>>
-		masculine
-	<</if>>
-	waist. Your hands, thus freed to grope $him, tenderly hold $his head and neck instead, cupping $his <<if $activeSlave.face > 95>>gorgeous<<elseif $activeSlave.face >= -10>>pretty<<else>>homely<</if>> jawline and making $him moan at the intimacy.
-	<br><br>
-	$He's completely forgotten $his troubles, and you see that it stays that way. You consider yourself something of an expert on human stimulation at this point, and you manage $hers expertly. (Admittedly, you're also cheating, using discreet scanning of $his vital signs to check on $his state of arousal.) Whenever $he's in danger of achieving an erection, which would remind $him of $his chastity cage with a twinge of discomfort, you cool your makeout session off slightly, massaging $him capably instead of kissing $him deeply. After some time, $he shudders, to $his own complete surprise and to your unsurprised satisfaction. $He's just done what in a normal sexual encounter would be considered premature ejaculation, since you wrought $him to such a subtle state of arousal that $he got off without really getting hard. $He can muster no coherent response, but @@.mediumaquamarine;hugs you convulsively,@@ sobbing into your
-	<<if $PC.boobsBonus > 2>>
-		enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts
-	<<elseif $PC.boobsBonus == 2>>
-		huge<<if $PC.boobsImplant == 1>> fake<</if>> breasts
-	<<elseif $PC.boobsBonus == 1>>
-		big<<if $PC.boobsImplant == 1>> firm<</if>> breasts
-	<<elseif $PC.boobs == 1>>
-		boobs
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		strong shoulder
-	<<elseif $PC.title == 0>>
-		feminine shoulder
-	<<else>>
-		masculine shoulder
-	<</if>>
-	with gratitude and release.
-	<br><br>
-	The scans suggest $his discomfort will return in less than half an hour.
-	<<set $activeSlave.trust += 4>>
+		You take $him by the hand and pull $him to $his feet, and then kiss $him. $He knows that this means no, but melts into you anyway, accepting the comforting gesture for what it is. $He's surprised when you do not break the kiss, but continues to make out with you compliantly. You take $him by the hands, intertwining your fingers with $hers and holding them down at your sides for a while before wrapping $his arms around you at your
+		<<if $PC.belly >= 10000>>
+			heavily pregnant
+		<<elseif $PC.belly >= 5000>>
+			gravid
+		<<elseif $PC.belly >= 1500>>
+			swollen
+		<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+			muscular
+		<<elseif $PC.title == 0>>
+			feminine
+		<<else>>
+			masculine
+		<</if>>
+		waist. Your hands, thus freed to grope $him, tenderly hold $his head and neck instead, cupping $his <<if $activeSlave.face > 95>>gorgeous<<elseif $activeSlave.face >= -10>>pretty<<else>>homely<</if>> jawline and making $him moan at the intimacy.
+		<br><br>
+		$He's completely forgotten $his troubles, and you see that it stays that way. You consider yourself something of an expert on human stimulation at this point, and you manage $hers expertly. (Admittedly, you're also cheating, using discreet scanning of $his vital signs to check on $his state of arousal.) Whenever $he's in danger of achieving an erection, which would remind $him of $his chastity cage with a twinge of discomfort, you cool your makeout session off slightly, massaging $him capably instead of kissing $him deeply. After some time, $he shudders, to $his own complete surprise and to your unsurprised satisfaction. $He's just done what in a normal sexual encounter would be considered premature ejaculation, since you wrought $him to such a subtle state of arousal that $he got off without really getting hard. $He can muster no coherent response, but @@.mediumaquamarine;hugs you convulsively,@@ sobbing into your
+		<<if $PC.boobsBonus > 2>>
+			enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts
+		<<elseif $PC.boobsBonus == 2>>
+			huge<<if $PC.boobsImplant == 1>> fake<</if>> breasts
+		<<elseif $PC.boobsBonus == 1>>
+			big<<if $PC.boobsImplant == 1>> firm<</if>> breasts
+		<<elseif $PC.boobs == 1>>
+			boobs
+		<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+			strong shoulder
+		<<elseif $PC.title == 0>>
+			feminine shoulder
+		<<else>>
+			masculine shoulder
+		<</if>>
+		with gratitude and release.
+		<br><br>
+		The scans suggest $his discomfort will return in less than half an hour.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Cut $his balls off">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You agree, on the condition that $he be a good little bitch like $he promised. $He thanks you frantically, following you with mixed relief, gratitude, and deep terror as you lead $him to the surgery. It's a medically simple procedure, but $he's @@.red;retained for recovery@@ for some time, a common precaution in your penthouse where the surgery affects an area that might be reinjured by sexual use without a short break for the curatives to take effect. When the medical equipment verifies that $he can be fucked without pain or danger to $his health, you order $him to come back up to your office. $He is a @@.hotpink;very good little bitch,@@
-	<<if canDoAnal($activeSlave)>>
-		taking <<if $PC.dick == 1>>a hard buttfuck<<else>>a hard anal fingerfuck<</if>> with apparent enthusiasm and a strong orgasm, though of course $his continued use of a chastity cage conceals almost all the effects.
-		<<= AnalVCheck()>>
-	<<else>>
-		enduring all of your teasing without the slightest hint of an erection. Even though $his chastity blocks the use of $his ass, you still focus most of your attention on $his rear for the day the belt comes off.
-	<</if>>
-	When $he goes to the bathroom afterward, however, you see $him <<if canSee($activeSlave)>>glance at $himself in the mirror, just once, and then @@.gold;glance away again,@@<<else>>run $his hand under $his cock, just once, and then @@.gold;quickly removing $his hand,@@<</if>> a tear leaking down $his cheek.
-	<<set $activeSlave.balls = 0, $activeSlave.scrotum = 0,$activeSlave.health -= 5, $activeSlave.trust -= 4, $activeSlave.devotion += 4>>
+		You agree, on the condition that $he be a good little bitch like $he promised. $He thanks you frantically, following you with mixed relief, gratitude, and deep terror as you lead $him to the surgery. It's a medically simple procedure, but $he's @@.red;retained for recovery@@ for some time, a common precaution in your penthouse where the surgery affects an area that might be reinjured by sexual use without a short break for the curatives to take effect. When the medical equipment verifies that $he can be fucked without pain or danger to $his health, you order $him to come back up to your office. $He is a @@.hotpink;very good little bitch,@@
+		<<if canDoAnal($activeSlave)>>
+			taking <<if $PC.dick == 1>>a hard buttfuck<<else>>a hard anal fingerfuck<</if>> with apparent enthusiasm and a strong orgasm, though of course $his continued use of a chastity cage conceals almost all the effects.
+			<<= AnalVCheck()>>
+		<<else>>
+			enduring all of your teasing without the slightest hint of an erection. Even though $his chastity blocks the use of $his ass, you still focus most of your attention on $his rear for the day the belt comes off.
+		<</if>>
+		When $he goes to the bathroom afterward, however, you see $him <<if canSee($activeSlave)>>glance at $himself in the mirror, just once, and then @@.gold;glance away again,@@<<else>>run $his hand under $his cock, just once, and then @@.gold;quickly removing $his hand,@@<</if>> a tear leaking down $his cheek.
+		<<set $activeSlave.balls = 0, $activeSlave.scrotum = 0,$activeSlave.health -= 5, $activeSlave.trust -= 4, $activeSlave.devotion += 4>>
 	<</replace>>
 	<<replace "#artFrame">>
 		/* 000-250-006 */
@@ -10818,83 +10822,83 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 		<</if>>
 		/* 000-250-006 */
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0) && canDoAnal($activeSlave)>> //This option will take anal virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0) && canDoAnal($activeSlave)>> //This option will take $his anal virginity//<</if>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "Use $his cage to torture $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You make no reply at all, but walk around to stand behind the slave. $He knows $he's fucked, and starts to shake with fear. You put a foot on $his ass and shove $him down<<if $activeSlave.belly >= 5000>> so $his rear is pointed into the air again<<else>> to lie flat on the floor<</if>>, and then straddle $him, shoving <<if $PC.dick == 1>>your<<if $PC.vagina == 1>> futa<</if>> cock up $his butt<<else>>one more finger than $he can comfortably take up $his butt<</if>>. $He tries to beg some more, but you give $him a warning slap, and $he shuts up. Despite your roughness, $he's so horny that $he starts to get hard. You can't see or feel this directly, of course, but it's easy to tell from $his desperate sobbing and involuntary writhing, and the lovely spasming of $his anal sphincter. $His tears dry up as $he builds towards a climax; orgasm might be an uncomfortable experience for $him, but it will buy $him a few minutes free of discomfort.
-	<br><br>
-	But $he's to be disappointed. You <<if $PC.dick == 1>>worm a hand down between $his ass and your stomach, and shove a finger up inside $him, alongside your dick<<if $PC.vagina == 1>>, dexterously using the thumb of that hand to stroke your own pussy<</if>><<else>>use the hand that isn't fucking $him to pull one of $his arms around behind $him into a painful joint lock<</if>>. The pain ruins $his building orgasm, and $he cries with frustration and @@.gold;despair@@ as $he realizes that $he won't be getting off today. You force $him to experience this horrible near-release twice more, bringing $him to a terribly uncomfortable state of arousal and then using sudden pain to destroy any chance $he has of getting relief. All the wriggling and jerking around is good for you, though.
-	<<set $activeSlave.trust -= 4>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<br><<link "Use $his cage to torture $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You make no reply at all, but walk around to stand behind the slave. $He knows $he's fucked, and starts to shake with fear. You put a foot on $his ass and shove $him down<<if $activeSlave.belly >= 5000>> so $his rear is pointed into the air again<<else>> to lie flat on the floor<</if>>, and then straddle $him, shoving <<if $PC.dick == 1>>your<<if $PC.vagina == 1>> futa<</if>> cock up $his butt<<else>>one more finger than $he can comfortably take up $his butt<</if>>. $He tries to beg some more, but you give $him a warning slap, and $he shuts up. Despite your roughness, $he's so horny that $he starts to get hard. You can't see or feel this directly, of course, but it's easy to tell from $his desperate sobbing and involuntary writhing, and the lovely spasming of $his anal sphincter. $His tears dry up as $he builds towards a climax; orgasm might be an uncomfortable experience for $him, but it will buy $him a few minutes free of discomfort.
+			<br><br>
+			But $he's to be disappointed. You <<if $PC.dick == 1>>worm a hand down between $his ass and your stomach, and shove a finger up inside $him, alongside your dick<<if $PC.vagina == 1>>, dexterously using the thumb of that hand to stroke your own pussy<</if>><<else>>use the hand that isn't fucking $him to pull one of $his arms around behind $him into a painful joint lock<</if>>. The pain ruins $his building orgasm, and $he cries with frustration and @@.gold;despair@@ as $he realizes that $he won't be getting off today. You force $him to experience this horrible near-release twice more, bringing $him to a terribly uncomfortable state of arousal and then using sudden pain to destroy any chance $he has of getting relief. All the wriggling and jerking around is good for you, though.
+			<<set $activeSlave.trust -= 4>>
+			<<= AnalVCheck()>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 <<if ((($activeSlave.fetish == "pregnancy" && $PC.belly >= 5000) || ($activeSlave.fetish == "cumslut" && $PC.balls > 2) || ($activeSlave.fetish == "boobs" && $PC.boobsBonus == 3)) && $activeSlave.fetishKnown == 1) || ((($activeSlave.attrXX > 70 && $activeSlave.attrXY < 50 && $PC.title == 0 && $PC.vagina == 1 && $PC.dick == 0) || ($activeSlave.attrXY > 70 && $activeSlave.attrXX < 50 && $PC.title == 1 && $PC.vagina == 0 && $PC.dick == 1)) && $activeSlave.attrKnown == 1)>>
-<br><<link "Use your body to make $his cage feel even tighter">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-		You order $him to pay close attention<<if canSee($activeSlave)>> and not look away<</if>>.
-	<<if ($activeSlave.fetish == "pregnancy" && $PC.belly >= 5000)>>
-		<<if canSee($activeSlave)>>
-			$He questions what you mean until you begin sensually swaying your
-			<<if $PC.belly >= 100000>>
-				massive pregnancy
-			<<elseif $PC.belly >= 60000>>
-				giant pregnancy
-			<<elseif $PC.belly >= 15000>>
-				advanced pregnancy
-			<<elseif $PC.belly >= 10000>>
-				big, pregnant belly
-			<<else>>
-				pregnant belly
-			<</if>>
-			and slowly stripping down. $He groans at the sight, $his dick rapidly hardening at the view of your motherly body. You make sure to play off $his pregnancy fetish in every way possible until the aroused slave is in tears from the pressure on $his cock.
-		<<else>>
-			$He questions what you mean until you grab $his head and push $his face against your
-			<<if $PC.belly >= 100000>>
-				massive pregnancy.
-			<<elseif $PC.belly >= 60000>>
-				giant pregnancy.
-			<<elseif $PC.belly >= 15000>>
-				advanced pregnancy.
-			<<elseif $PC.belly >= 10000>>
-				big, pregnant belly.
-			<<else>>
-				pregnant belly.
-			<</if>>
-			$He tries to recoil, bringing a hand to your middle. You catch it and run it along your motherly curve to your popped navel. You trace $his hand around is as $he groans at the sensation, $his dick rapidly hardening at the feel of your motherly body. You make sure to play off $his pregnancy fetish in every way possible until the aroused slave is in tears from the pressure on $his cock.
-		<</if>>
-	<<elseif ($activeSlave.fetish == "cumslut" && $PC.balls > 2)>>
-		<<if canSee($activeSlave)>>
-			$He questions what you mean until you begin sensually caressing your massive balls and slowly stripping down. You quickly bring yourself erect and start to jack off. $He groans at the sight, licking $his lips a the thought of your coming load as $his dick rapidly hardens. You tease yourself and hype up just how big and messy your orgasm will be, making $him quiver with painful arousal. You moan as you feel the distinct sensation of your coming ejaculation, the sheer amount of sperm moving through you takes some time to release. You hug your nuts, thrusting repeatedly until the wave of cum forces its way out of your throbbing dick. You sigh with relief, just to rub it in $his face.
-		<<else>>
-			$He questions what you mean until you strip down and pull $his face directly into your massive balls. $He tries to recoil, bringing $his hands to immense spheres. You catch them and use one to massage your nuts and encourage a nice big load for $him and the other the help jack you off. You can feel $him shaking from the pressure on $his dick. Not only do you paint $him with seed, but you sigh loudly with relief, just to rub it in.
-		<</if>>
-	<<elseif ($activeSlave.fetish == "boobs" && $PC.boobsBonus == 3)>>
-		<<if canSee($activeSlave)>>
-			$He questions what you mean until you pull your arms back, forcing your enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts to pop free of your top. $He groans at the sight, $his dick rapidly hardening at the view of your impressive rack. You make sure to play off $his tit fetish in every way possible until the aroused slave is in tears from the pressure on $his cock.
-		<<else>>
-			$He questions what you mean until you grab $his head and push $his face against your enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts. $He tries to recoil, bringing $his hands to your breasts. You continue burying $his face in your rack as $he begins to grope you. $He groans at the sensation, $his dick rapidly hardening at the feel of your lovely tits. You make sure to play off $his boob fetish in every way possible until the aroused slave is in tears from the pressure on $his cock.
-		<</if>>
-	<<elseif ($activeSlave.attrXX > 70 && $activeSlave.attrXY < 50 && $PC.title == 0 && $PC.vagina == 1 && $PC.dick == 0)>>
-		<<if canSee($activeSlave)>>
-			$He questions what you mean until you begin your strip tease. $He groans at the sight, $his dick rapidly hardening at the view of your tits and pussy. You know just how arousing $he finds the female form, and you play off that until the aroused slave is in tears from the pressure on $his cock.
-		<<else>>
-			$He questions what you mean until you grab $his head and push $his face into your pussy. $He tries to recoil, bringing $his hands to your rear. You continue rubbing yourself against $his face as begins to grope you, enjoying your feminine features. $He groans as $his dick rapidly hardens at the feel of your curves and the scent of your arousal. You know just how arousing $he finds the female form, and you play off that until the aroused slave is in tears from the pressure on $his cock.
-		<</if>>
-	<<else>>
-		<<if canSee($activeSlave)>>
-			$He questions what you mean until you begin your strip tease. $He groans at the sight, $his dick rapidly hardening at the view of your erection. You know just how arousing $he finds the male form, and you play off that until the aroused slave is in tears from the pressure on $his cock.
-		<<else>>
-			$He questions what you mean until you grab $his head and push $his face against your dick. $He tries to recoil, bringing $his hands to your balls. You continue rubbing yourself against $his face as begins to fondle you, enjoying your masculine features. $He groans as $his dick rapidly hardens at the feel of your penis against your face and the scent of your arousal and precum. You know just how arousing $he finds the male form, and you play off that until the aroused slave is in tears from the pressure on $his cock.
-		<</if>>
-	<</if>>
-	You leave $him in a @@.gold;worse state than $he started in,@@ as $he's hornier than ever and still lacks any satisfying release. But that's $his problem, not yours.<<if $PC.belly >= 10000>> Even when so heavily pregnant, it feels good to know you can still bring a dick to full attention.<</if>>
-	<<set $activeSlave.trust -= 4>>
-	<</replace>>
-<</link>>
+	<br><<link "Use your body to make $his cage feel even tighter">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You order $him to pay close attention<<if canSee($activeSlave)>> and not look away<</if>>.
+			<<if ($activeSlave.fetish == "pregnancy" && $PC.belly >= 5000)>>
+				<<if canSee($activeSlave)>>
+					$He questions what you mean until you begin sensually swaying your
+					<<if $PC.belly >= 100000>>
+						massive pregnancy
+					<<elseif $PC.belly >= 60000>>
+						giant pregnancy
+					<<elseif $PC.belly >= 15000>>
+						advanced pregnancy
+					<<elseif $PC.belly >= 10000>>
+						big, pregnant belly
+					<<else>>
+						pregnant belly
+					<</if>>
+					and slowly stripping down. $He groans at the sight, $his dick rapidly hardening at the view of your motherly body. You make sure to play off $his pregnancy fetish in every way possible until the aroused slave is in tears from the pressure on $his cock.
+				<<else>>
+					$He questions what you mean until you grab $his head and push $his face against your
+					<<if $PC.belly >= 100000>>
+						massive pregnancy.
+					<<elseif $PC.belly >= 60000>>
+						giant pregnancy.
+					<<elseif $PC.belly >= 15000>>
+						advanced pregnancy.
+					<<elseif $PC.belly >= 10000>>
+						big, pregnant belly.
+					<<else>>
+						pregnant belly.
+					<</if>>
+					$He tries to recoil, bringing a hand to your middle. You catch it and run it along your motherly curve to your popped navel. You trace $his hand around is as $he groans at the sensation, $his dick rapidly hardening at the feel of your motherly body. You make sure to play off $his pregnancy fetish in every way possible until the aroused slave is in tears from the pressure on $his cock.
+				<</if>>
+			<<elseif ($activeSlave.fetish == "cumslut" && $PC.balls > 2)>>
+				<<if canSee($activeSlave)>>
+					$He questions what you mean until you begin sensually caressing your massive balls and slowly stripping down. You quickly bring yourself erect and start to jack off. $He groans at the sight, licking $his lips a the thought of your coming load as $his dick rapidly hardens. You tease yourself and hype up just how big and messy your orgasm will be, making $him quiver with painful arousal. You moan as you feel the distinct sensation of your coming ejaculation, the sheer amount of sperm moving through you takes some time to release. You hug your nuts, thrusting repeatedly until the wave of cum forces its way out of your throbbing dick. You sigh with relief, just to rub it in $his face.
+				<<else>>
+					$He questions what you mean until you strip down and pull $his face directly into your massive balls. $He tries to recoil, bringing $his hands to immense spheres. You catch them and use one to massage your nuts and encourage a nice big load for $him and the other the help jack you off. You can feel $him shaking from the pressure on $his dick. Not only do you paint $him with seed, but you sigh loudly with relief, just to rub it in.
+				<</if>>
+			<<elseif ($activeSlave.fetish == "boobs" && $PC.boobsBonus == 3)>>
+				<<if canSee($activeSlave)>>
+					$He questions what you mean until you pull your arms back, forcing your enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts to pop free of your top. $He groans at the sight, $his dick rapidly hardening at the view of your impressive rack. You make sure to play off $his tit fetish in every way possible until the aroused slave is in tears from the pressure on $his cock.
+				<<else>>
+					$He questions what you mean until you grab $his head and push $his face against your enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts. $He tries to recoil, bringing $his hands to your breasts. You continue burying $his face in your rack as $he begins to grope you. $He groans at the sensation, $his dick rapidly hardening at the feel of your lovely tits. You make sure to play off $his boob fetish in every way possible until the aroused slave is in tears from the pressure on $his cock.
+				<</if>>
+			<<elseif ($activeSlave.attrXX > 70 && $activeSlave.attrXY < 50 && $PC.title == 0 && $PC.vagina == 1 && $PC.dick == 0)>>
+				<<if canSee($activeSlave)>>
+					$He questions what you mean until you begin your strip tease. $He groans at the sight, $his dick rapidly hardening at the view of your tits and pussy. You know just how arousing $he finds the female form, and you play off that until the aroused slave is in tears from the pressure on $his cock.
+				<<else>>
+					$He questions what you mean until you grab $his head and push $his face into your pussy. $He tries to recoil, bringing $his hands to your rear. You continue rubbing yourself against $his face as begins to grope you, enjoying your feminine features. $He groans as $his dick rapidly hardens at the feel of your curves and the <<if canSmell($activeSlave)>>scent of<<else>>warmth from<</if>> your arousal. You know just how arousing $he finds the female form, and you play off that until the aroused slave is in tears from the pressure on $his cock.
+				<</if>>
+			<<else>>
+				<<if canSee($activeSlave)>>
+					$He questions what you mean until you begin your strip tease. $He groans at the sight, $his dick rapidly hardening at the view of your erection. You know just how arousing $he finds the male form, and you play off that until the aroused slave is in tears from the pressure on $his cock.
+				<<else>>
+					$He questions what you mean until you grab $his head and push $his face against your dick. $He tries to recoil, bringing $his hands to your balls. You continue rubbing yourself against $his face as begins to fondle you, enjoying your masculine features. $He groans as $his dick rapidly hardens at the feel of your penis against your face and the <<if canSmell($activeSlave)>>scent of<<else>>warmth from<</if>> your arousal and precum. You know just how arousing $he finds the male form, and you play off that until the aroused slave is in tears from the pressure on $his cock.
+				<</if>>
+			<</if>>
+			You leave $him in a @@.gold;worse state than $he started in,@@ as $he's hornier than ever and still lacks any satisfying release. But that's $his problem, not yours.<<if $PC.belly >= 10000>> Even when so heavily pregnant, it feels good to know you can still bring a dick to full attention.<</if>>
+			<<set $activeSlave.trust -= 4>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 
@@ -10903,262 +10907,262 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Use $him anyway">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You reach out, grab $his shoulder, and shove $him against the wall.
-	<<if !canTalk($activeSlave)>>
-		$He manages to use a gesture to beg you not to,
-	<<else>>
-		$He manages to beg, "Plea<<s>>e no, <<Master>> —"
-	<</if>>
-	before you give $him a hard warning slap on the ass to shut $him up. $He's quiet, but starts to sob a little when $he feels <<if $PC.dick == 0>>the head of a strap-on<<else>>your cock<</if>> against $his
-	<<if canDoAnal($activeSlave)>>
-		anus.
-		<<if ($activeSlave.anus > 2)>>
-			It's gaped before you even touch it, but it's clearly sore enough that $he dreads anal anyway.
-		<<elseif ($activeSlave.anus > 1)>>
-			It's been fucked loose, but it's clearly sore enough that $he dreads anal anyway.
-		<<else>>
-			It's somehow not gaped yet, and $he dreads having it stretched yet again.
-		<</if>>
-		<<if ($activeSlave.height >= 185)>>
-			$He's tall enough that the angle isn't that uncomfortable for $him.
-		<<elseif ($activeSlave.anus > 0)>>
-			$He hikes $himself desperately up on $his tiptoes to make the angle less uncomfortable for $him.
+		You reach out, grab $his shoulder, and shove $him against the wall.
+		<<if !canTalk($activeSlave)>>
+			$He manages to use a gesture to beg you not to,
 		<<else>>
-			$He hikes $himself desperately up on $his tiptoes, but $he's so short the angle is desperately uncomfortable for $him.
+			$He manages to beg, "Plea<<s>>e no, <<Master>> —"
 		<</if>>
-		$He decides to try begging one last time, and
-		<<if canDoVaginal($activeSlave)>>
-			<<if !canTalk($activeSlave)>>
-				signs to ask you to use $his pussy instead
+		before you give $him a hard warning slap on the ass to shut $him up. $He's quiet, but starts to sob a little when $he feels <<if $PC.dick == 0>>the head of a strap-on<<else>>your cock<</if>> against $his
+		<<if canDoAnal($activeSlave)>>
+			anus.
+			<<if ($activeSlave.anus > 2)>>
+				It's gaped before you even touch it, but it's clearly sore enough that $he dreads anal anyway.
+			<<elseif ($activeSlave.anus > 1)>>
+				It's been fucked loose, but it's clearly sore enough that $he dreads anal anyway.
+			<<else>>
+				It's somehow not gaped yet, and $he dreads having it stretched yet again.
+			<</if>>
+			<<if ($activeSlave.height >= 185)>>
+				$He's tall enough that the angle isn't that uncomfortable for $him.
+			<<elseif ($activeSlave.anus > 0)>>
+				$He hikes $himself desperately up on $his tiptoes to make the angle less uncomfortable for $him.
+			<<else>>
+				$He hikes $himself desperately up on $his tiptoes, but $he's so short the angle is desperately uncomfortable for $him.
+			<</if>>
+			$He decides to try begging one last time, and
+			<<if canDoVaginal($activeSlave)>>
+				<<if !canTalk($activeSlave)>>
+					signs to ask you to use $his pussy instead
+				<<else>>
+					whines, "Just u<<s>>e my pu<<ss>>y, plea<<s>>e!"
+				<</if>>
+			<<else>>
+				<<if !canTalk($activeSlave)>>
+					signs to ask you to let $him suck you off instead
+				<<else>>
+					whines, "Let me <<s>>uck you off, plea<<s>>e!"
+				<</if>>
+			<</if>>
+			as you shove <<if $PC.dick == 0>>the strap-on<<else>>yourself<</if>> up $his butt. $He reflexively tries to get away into the wall,
+			<<if $activeSlave.belly > 100000>>
+				$his _belly belly squashing out to either side.
+			<<elseif ($activeSlave.boobs > 2000)>>
+				$his enormous boobs squashing out to either side.
+			<<elseif ($activeSlave.boobs > 1000)>>
+				$his big boobs squashing out to either side.
+			<<elseif ($activeSlave.boobs > 300)>>
+				$his boobs crashing into it.
 			<<else>>
-				whines, "Just u<<s>>e my pu<<ss>>y, plea<<s>>e!"
+				$his sore nipples giving $him a jerk as $he does.
 			<</if>>
+			After some continued whining through $his tears, $he gives up and just @@.gold;lets you@@ rape $his sore ass.
+			<<= AnalVCheck()>>
 		<<else>>
+			pussy lips.
+			<<if ($activeSlave.vagina > 2)>>
+				It's gaped before you even touch it, but it's clearly sore enough that $he dreads penetration anyway.
+			<<elseif ($activeSlave.vagina > 1)>>
+				It's been fucked loose, but it's clearly been used enough that $he dreads penetration anyway.
+			<<else>>
+				It's somehow not loose yet, and $he dreads having it stretched yet again.
+			<</if>>
+			<<if ($activeSlave.height >= 185)>>
+				$He's tall enough that the angle isn't that uncomfortable for $him.
+			<<elseif ($activeSlave.anus > 0)>>
+				$He hikes $himself desperately up on $his tiptoes to make the angle less uncomfortable for $him.
+			<<else>>
+				$He hikes $himself desperately up on $his tiptoes, but $he's so short the angle is desperately uncomfortable for $him.
+			<</if>>
+			$He decides to try begging one last time, and
 			<<if !canTalk($activeSlave)>>
 				signs to ask you to let $him suck you off instead
 			<<else>>
 				whines, "Let me <<s>>uck you off, plea<<s>>e!"
 			<</if>>
+			as you shove <<if $PC.dick == 0>>the strap-on<<else>>yourself<</if>> up $his cunt. $He reflexively tries to get away into the wall,
+			<<if $activeSlave.belly > 100000>>
+				$his _belly belly squashing out to either side.
+			<<elseif ($activeSlave.boobs > 2000)>>
+				$his enormous boobs squashing out to either side.
+			<<elseif ($activeSlave.boobs > 1000)>>
+				$his big boobs squashing out to either side.
+			<<elseif ($activeSlave.boobs > 300)>>
+				$his boobs crashing into it.
+			<<else>>
+				$his sore nipples giving $him a jerk as $he does.
+			<</if>>
+			After some continued whining through $his tears, $he gives up and just @@.gold;lets you@@ rape $his sore vagina.
+			<<= VaginalVCheck()>>
 		<</if>>
-		as you shove <<if $PC.dick == 0>>the strap-on<<else>>yourself<</if>> up $his butt. $He reflexively tries to get away into the wall,
-		<<if $activeSlave.belly > 100000>>
-			$his _belly belly squashing out to either side.
-		<<elseif ($activeSlave.boobs > 2000)>>
-			$his enormous boobs squashing out to either side.
-		<<elseif ($activeSlave.boobs > 1000)>>
-			$his big boobs squashing out to either side.
-		<<elseif ($activeSlave.boobs > 300)>>
-			$his boobs crashing into it.
-		<<else>>
-			$his sore nipples giving $him a jerk as $he does.
-		<</if>>
-		After some continued whining through $his tears, $he gives up and just @@.gold;lets you@@ rape $his sore ass.
-		<<= AnalVCheck()>>
-	<<else>>
-		pussy lips.
-		<<if ($activeSlave.vagina > 2)>>
-			It's gaped before you even touch it, but it's clearly sore enough that $he dreads penetration anyway.
-		<<elseif ($activeSlave.vagina > 1)>>
-			It's been fucked loose, but it's clearly been used enough that $he dreads penetration anyway.
+		When you finally <<if ($PC.dick == 1)>>fill $his <<if canDoAnal($activeSlave)>>butt<<else>>pussy<</if>> with your ejaculate and pull out,<<if $PC.vagina == 1>> the motion releasing a waft of the combined cum and pussyjuice smell of a satisfied futa,<</if>><<else>>shudder with orgasm and withdraw your strap-on,<</if>> $he slumps and turns to go, looking a bit sad for some reason.
+		<<set $activeSlave.trust += 4>>
+	<</replace>>
+<</link>>
+<br><<link "Manipulate $him into asking to suck you off">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You reach out, grab $his shoulder, and shove $him against the wall.
+		<<if !canTalk($activeSlave)>>
+			$He manages to use a gesture to beg you not to,
 		<<else>>
-			It's somehow not loose yet, and $he dreads having it stretched yet again.
+			$He manages to beg, "Plea<<s>>e no, <<Master>> —"
 		<</if>>
-		<<if ($activeSlave.height >= 185)>>
-			$He's tall enough that the angle isn't that uncomfortable for $him.
-		<<elseif ($activeSlave.anus > 0)>>
-			$He hikes $himself desperately up on $his tiptoes to make the angle less uncomfortable for $him.
+		before you give $him a hard warning slap on the ass to shut $him up. $He's quiet, but starts to sob a little when $he feels <<if $PC.dick == 0>>the head of a strap-on<<else>>an invading<<if $PC.vagina == 1>> futa<</if>> cockhead<</if>> against $his
+		<<if canDoAnal($activeSlave)>>
+			anus.
+			<<if ($activeSlave.anus > 2)>>
+				It's gaped before you even touch it, but it's clearly sore enough that $he dreads anal anyway.
+			<<elseif ($activeSlave.anus > 1)>>
+				It's been fucked loose, but it's clearly sore enough that $he dreads anal anyway.
+			<<else>>
+				It's somehow not gaped yet, and $he dreads having it stretched yet again.
+			<</if>>
 		<<else>>
-			$He hikes $himself desperately up on $his tiptoes, but $he's so short the angle is desperately uncomfortable for $him.
+			pussy lips.
+			<<if ($activeSlave.vagina > 2)>>
+				It's gaped before you even touch it, but it's clearly sore enough that $he dreads penetration anyway.
+			<<elseif ($activeSlave.vagina > 1)>>
+				It's been fucked loose, but it's clearly been used enough that $he dreads penetration anyway.
+			<<else>>
+				It's somehow not loose yet, and $he dreads having it stretched yet again.
+			<</if>>
 		<</if>>
-		$He decides to try begging one last time, and
+		$He
 		<<if !canTalk($activeSlave)>>
-			signs to ask you to let $him suck you off instead
+			signs let $him suck you off instead.
 		<<else>>
 			whines, "Let me <<s>>uck you off, plea<<s>>e!"
 		<</if>>
-		as you shove <<if $PC.dick == 0>>the strap-on<<else>>yourself<</if>> up $his cunt. $He reflexively tries to get away into the wall,
-		<<if $activeSlave.belly > 100000>>
-			$his _belly belly squashing out to either side.
-		<<elseif ($activeSlave.boobs > 2000)>>
-			$his enormous boobs squashing out to either side.
-		<<elseif ($activeSlave.boobs > 1000)>>
-			$his big boobs squashing out to either side.
-		<<elseif ($activeSlave.boobs > 300)>>
-			$his boobs crashing into it.
+		Having gotten $him to beg for what you wanted all along, you spin $him so $his
+		<<if $activeSlave.weight > 160>>
+			rippling
+		<<elseif $activeSlave.weight > 95>>
+			fat
+		<<elseif ($activeSlave.muscles > 95)>>
+			powerful
+		<<elseif ($activeSlave.muscles > 30)>>
+			strong
+		<<elseif ($activeSlave.muscles > 5)>>
+			toned
 		<<else>>
-			$his sore nipples giving $him a jerk as $he does.
+			feminine
 		<</if>>
-		After some continued whining through $his tears, $he gives up and just @@.gold;lets you@@ rape $his sore vagina.
-		<<= VaginalVCheck()>>
-	<</if>>
-	When you finally <<if ($PC.dick == 1)>>fill $his <<if canDoAnal($activeSlave)>>butt<<else>>pussy<</if>> with your ejaculate and pull out,<<if $PC.vagina == 1>> the motion releasing a waft of the combined cum and pussyjuice smell of a satisfied futa,<</if>><<else>>shudder with orgasm and withdraw your strap-on,<</if>> $he slumps and turns to go, looking a bit sad for some reason.
-	<<set $activeSlave.trust += 4>>
-	<</replace>>
-<</link>>
-<br><<link "Manipulate $him into asking to suck you off">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You reach out, grab $his shoulder, and shove $him against the wall.
-	<<if !canTalk($activeSlave)>>
-		$He manages to use a gesture to beg you not to,
-	<<else>>
-		$He manages to beg, "Plea<<s>>e no, <<Master>> —"
-	<</if>>
-	before you give $him a hard warning slap on the ass to shut $him up. $He's quiet, but starts to sob a little when $he feels <<if $PC.dick == 0>>the head of a strap-on<<else>>an invading<<if $PC.vagina == 1>> futa<</if>> cockhead<</if>> against $his
-	<<if canDoAnal($activeSlave)>>
-		anus.
-		<<if ($activeSlave.anus > 2)>>
-			It's gaped before you even touch it, but it's clearly sore enough that $he dreads anal anyway.
-		<<elseif ($activeSlave.anus > 1)>>
-			It's been fucked loose, but it's clearly sore enough that $he dreads anal anyway.
+		back hits the wall with a smack and shove $him down it until $his
+		<<if ($activeSlave.lips > 70)>>
+			massive
+		<<elseif ($activeSlave.lips > 40)>>
+			pillowlike
+		<<elseif $activeSlave.lips > 20>>
+			girlish
+		<<elseif $activeSlave.lips > 10>>
+			average
 		<<else>>
-			It's somehow not gaped yet, and $he dreads having it stretched yet again.
+			miniscule
 		<</if>>
-	<<else>>
-		pussy lips.
-		<<if ($activeSlave.vagina > 2)>>
-			It's gaped before you even touch it, but it's clearly sore enough that $he dreads penetration anyway.
-		<<elseif ($activeSlave.vagina > 1)>>
-			It's been fucked loose, but it's clearly been used enough that $he dreads penetration anyway.
+		lips are level with your <<if $PC.dick == 0>>fake dick<<else>>dick<</if>><<if $activeSlave.belly >= 100000>>, straddle $his _belly belly<</if>>, and push it into $his mouth without waiting for $him to get ready. $He gags, but does $his best to work $his tired mouth. When you're finally satisfied and you let $him up, you aim another slap at $his
+		<<if ($activeSlave.butt > 12)>>
+			inhuman ass
+		<<elseif ($activeSlave.butt > 5)>>
+			massive ass
+		<<elseif ($activeSlave.butt > 2)>>
+			big butt
+		<<elseif $activeSlave.butt > 0>>
+			nice ass
 		<<else>>
-			It's somehow not loose yet, and $he dreads having it stretched yet again.
+			flat ass
 		<</if>>
-	<</if>>
-	$He
-	<<if !canTalk($activeSlave)>>
-		signs let $him suck you off instead.
-	<<else>>
-		whines, "Let me <<s>>uck you off, plea<<s>>e!"
-	<</if>>
-	Having gotten $him to beg for what you wanted all along, you spin $him so $his
-	<<if $activeSlave.weight > 160>>
-		rippling
-	<<elseif $activeSlave.weight > 95>>
-		fat
-	<<elseif ($activeSlave.muscles > 95)>>
-		powerful
-	<<elseif ($activeSlave.muscles > 30)>>
-		strong
-	<<elseif ($activeSlave.muscles > 5)>>
-		toned
-	<<else>>
-		feminine
-	<</if>>
-	back hits the wall with a smack and shove $him down it until $his
-	<<if ($activeSlave.lips > 70)>>
-		massive
-	<<elseif ($activeSlave.lips > 40)>>
-		pillowlike
-	<<elseif $activeSlave.lips > 20>>
-		girlish
-	<<elseif $activeSlave.lips > 10>>
-		average
-	<<else>>
-		miniscule
-	<</if>>
-	lips are level with your <<if $PC.dick == 0>>fake dick<<else>>dick<</if>><<if $activeSlave.belly >= 100000>>, straddle $his _belly belly<</if>>, and push it into $his mouth without waiting for $him to get ready. $He gags, but does $his best to work $his tired mouth. When you're finally satisfied and you let $him up, you aim another slap at $his
-	<<if ($activeSlave.butt > 12)>>
-		inhuman ass
-	<<elseif ($activeSlave.butt > 5)>>
-		massive ass
-	<<elseif ($activeSlave.butt > 2)>>
-		big butt
-	<<elseif $activeSlave.butt > 0>>
-		nice ass
-	<<else>>
-		flat ass
-	<</if>>
-	and let $him see it coming; $he @@.hotpink;accepts@@ the spank due to fright at what you might do if $he dodged before fleeing.
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
+		and let $him see it coming; $he @@.hotpink;accepts@@ the spank due to fright at what you might do if $he dodged before fleeing.
+		<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
 <br><<link "Just talk with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You take $him by the hand, lead $him to a nearby couch, and sit down with $him, letting $him seat $himself beside you so $he can
-	<<if $activeSlave.belly >= 5000>>
-		rest $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>bulk against you
-	<<else>>
-		lean against you
-	<</if>>
-	without putting too much weight on $his poor overused butthole. You ask $him about $his day.
-	<<if !canTalk($activeSlave)>>
-		$He uses gestures to recount it through $his tears. Apparently while one guy was using $his anus, another thought it was hot and waited for him to be done before using $him in turn, without letting $him rest or clean $himself. It took four cocks total for another slave to notice and rescue $him.
-	<<else>>
-		$He <<say>>s, a little tearfully, "<<Master>>, thi<<s>> guy wanted to u<<s>>e my butt in public. <<S>>o of cour<<s>>e I let him, and he made me <<s>>it in hi<<s>> lap to do it, and held my leg<<s>> back <<s>>o everyone could <<s>>ee! And then another guy thought it wa<<s>> hot and waited, and then fucked me in my a<<ss>> too. Another girl finally noti<<c>>ed and re<<s>>cued me after four cock<<s>>, <<Master>>. I'm really <<s>>ore."
-	<</if>>
-	$He <<if canSee($activeSlave)>>looks up at you with big <<= App.Desc.eyeColor($activeSlave)>> eyes<<else>>gazes at you<</if>> for a long moment, a final tear leaking down $his $activeSlave.skin cheek, before $he suddenly
-	<<if !canTalk($activeSlave)>>
-		shakes with mute laughter.
-	<<else>>
-		giggles.
-	<</if>>
-	$He explains $himself after a while: it's not what $he thought $he'd be doing with $his life,
-	<<switch $activeSlave.career>>
-	<<case "a bioreactor" "a breeder" "a breeding bull" "a dairy cow" "a dairy slave" "a fuckdoll" "a Futanari Sister" "a slave" 0>>
-		once upon a time.
-	<<default>>
-		back when $he was $activeSlave.career.
-	<</switch>>
-	<<if !canTalk($activeSlave)>>
-		$He points to $himself and uses both hands to mimic sodomy, as though to suggest that's all $he is, before giving you a rueful smile.
-	<<else>>
-		"_slavename the butthole ho, that'<<s>> me," $he <<say>>s sadly, before giving you a rueful smile.
-	<</if>>
-	$He kisses you on the cheek and @@.mediumaquamarine;thanks you@@ for listening instead of raping $him.
-	<<set $activeSlave.trust += 4>>
-	<br><br><span id="result2">
-	<<link "Kiss $him back">>
-		<<replace "#result2">>
-			You turn to kiss $him back, on the lips this time. $He <<if canSee($activeSlave)>>sees<<else>>feels<</if>> your intention and @@.mediumaquamarine;complies trustingly,@@ closing $his eyes and tilting $his head slightly so your lips lock perfectly.
-			<<if ($activeSlave.lips > 70)>>
-				$His ridiculous, pillowlike lips part softly.
-			<<elseif ($activeSlave.teeth == "pointy")>>
-				$He opens $his jaw wide, careful to keep $his shark's teeth well clear of you.
-			<</if>>
-			After a few seconds, $he realizes you aren't planning to break the kiss anytime soon, and softens, $his<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> body relaxing against yours. $He scoots closer to you, bringing $his legs up under $him on the couch cushions so $he can face you comfortably. $He leans one
-			<<if $activeSlave.weight > 160>>
-				extremely well padded
-			<<elseif $activeSlave.weight > 95>>
-				well padded
-			<<elseif ($activeSlave.muscles > 30)>>
-				muscular
-			<<elseif ($activeSlave.weight > 10)>>
-				plush
-			<<elseif $activeSlave.hips > -1>>
-				pretty
-			<</if>>
-			hip against your leg, hiking $himself half onto your lap so $he can make out with you without having to sit with any weight on $his sore butthole.
-			<<set $activeSlave.trust += 2>>
-			<</replace>>
-	<</link>>
-	<br><<link "Rape $him">>
-		<<replace "#result2">>
-			But $he's wrong to place that kind of faith in you. As $he withdraws from the kiss, you snake a betraying hand between $his butt and the couch, and shove
-			<<if $activeSlave.anus <= 1>>
-				two rude fingers up $his sore little anus.
-			<<elseif $activeSlave.anus == 2>>
-				three rude fingers up $his sore anus.
-			<<else>>
-				all four of your fingers and your thumb, formed into a point, as far up $his loose butt as they will go.
-			<</if>>
-			$He lets out a pained "oh," and then goes silent. For such a little sound, it bears a great weight of @@.gold;betrayed trust.@@ You insert your fingers to the knuckle, making $him writhe with discomfort, and then turf $him off the couch to land
-			<<if $activeSlave.belly >= 300000>>
-				across $his _belly stomach
-			<<else>>
-				face first
-			<</if>>
-			on the floor in front of you. $He tries to spread $his butt and angle $his hips like a good $girl, but you slap $his hands away and push your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> inside $him without regard for $his poor anus. $He shudders and begins to cry, and keeps crying as you ravage $his asshole. When you climax and pull out, $he continues to weep, but stumbles off to wash. When $he comes back, $he's still sniffling, but without being prompted,
-			<<if $activeSlave.belly >= 300000>>
-				@@.hotpink;$he leans over $his belly and offers you $his sore butthole again.@@
-			<<else>>
-				@@.hotpink;$he gets down on $his knees and offers you $his sore butthole again.@@
-			<</if>>
-			<<set $activeSlave.trust -= 4, $activeSlave.devotion += 5>>
-			<<= AnalVCheck()>>
-			<</replace>>
-	<</link>>
-	</span>
+		You take $him by the hand, lead $him to a nearby couch, and sit down with $him, letting $him seat $himself beside you so $he can
+		<<if $activeSlave.belly >= 5000>>
+			rest $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>bulk against you
+		<<else>>
+			lean against you
+		<</if>>
+		without putting too much weight on $his poor overused butthole. You ask $him about $his day.
+		<<if !canTalk($activeSlave)>>
+			$He uses gestures to recount it through $his tears. Apparently while one guy was using $his anus, another thought it was hot and waited for him to be done before using $him in turn, without letting $him rest or clean $himself. It took four cocks total for another slave to notice and rescue $him.
+		<<else>>
+			$He <<say>>s, a little tearfully, "<<Master>>, thi<<s>> guy wanted to u<<s>>e my butt in public. <<S>>o of cour<<s>>e I let him, and he made me <<s>>it in hi<<s>> lap to do it, and held my leg<<s>> back <<s>>o everyone could <<s>>ee! And then another guy thought it wa<<s>> hot and waited, and then fucked me in my a<<ss>> too. Another girl finally noti<<c>>ed and re<<s>>cued me after four cock<<s>>, <<Master>>. I'm really <<s>>ore."
+		<</if>>
+		$He <<if canSee($activeSlave)>>looks up at you with big <<= App.Desc.eyeColor($activeSlave)>> eyes<<else>>gazes at you<</if>> for a long moment, a final tear leaking down $his $activeSlave.skin cheek, before $he suddenly
+		<<if !canTalk($activeSlave)>>
+			shakes with mute laughter.
+		<<else>>
+			giggles.
+		<</if>>
+		$He explains $himself after a while: it's not what $he thought $he'd be doing with $his life,
+		<<switch $activeSlave.career>>
+		<<case "a bioreactor" "a breeder" "a breeding bull" "a dairy cow" "a dairy slave" "a fuckdoll" "a Futanari Sister" "a slave" 0>>
+			once upon a time.
+		<<default>>
+			back when $he was $activeSlave.career.
+		<</switch>>
+		<<if !canTalk($activeSlave)>>
+			$He points to $himself and uses both hands to mimic sodomy, as though to suggest that's all $he is, before giving you a rueful smile.
+		<<else>>
+			"_slavename the butthole ho, that'<<s>> me," $he <<say>>s sadly, before giving you a rueful smile.
+		<</if>>
+		$He kisses you on the cheek and @@.mediumaquamarine;thanks you@@ for listening instead of raping $him.
+		<<set $activeSlave.trust += 4>>
+		<br><br><span id="result2">
+			<<link "Kiss $him back">>
+				<<replace "#result2">>
+				You turn to kiss $him back, on the lips this time. $He <<if canSee($activeSlave)>>sees<<else>>feels<</if>> your intention and @@.mediumaquamarine;complies trustingly,@@ closing $his eyes and tilting $his head slightly so your lips lock perfectly.
+				<<if ($activeSlave.lips > 70)>>
+					$His ridiculous, pillowlike lips part softly.
+				<<elseif ($activeSlave.teeth == "pointy")>>
+					$He opens $his jaw wide, careful to keep $his shark's teeth well clear of you.
+				<</if>>
+				After a few seconds, $he realizes you aren't planning to break the kiss anytime soon, and softens, $his<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> body relaxing against yours. $He scoots closer to you, bringing $his legs up under $him on the couch cushions so $he can face you comfortably. $He leans one
+				<<if $activeSlave.weight > 160>>
+					extremely well padded
+				<<elseif $activeSlave.weight > 95>>
+					well padded
+				<<elseif ($activeSlave.muscles > 30)>>
+					muscular
+				<<elseif ($activeSlave.weight > 10)>>
+					plush
+				<<elseif $activeSlave.hips > -1>>
+					pretty
+				<</if>>
+				hip against your leg, hiking $himself half onto your lap so $he can make out with you without having to sit with any weight on $his sore butthole.
+				<<set $activeSlave.trust += 2>>
+				<</replace>>
+			<</link>>
+			<br><<link "Rape $him">>
+				<<replace "#result2">>
+				But $he's wrong to place that kind of faith in you. As $he withdraws from the kiss, you snake a betraying hand between $his butt and the couch, and shove
+				<<if $activeSlave.anus <= 1>>
+					two rude fingers up $his sore little anus.
+				<<elseif $activeSlave.anus == 2>>
+					three rude fingers up $his sore anus.
+				<<else>>
+					all four of your fingers and your thumb, formed into a point, as far up $his loose butt as they will go.
+				<</if>>
+				$He lets out a pained "oh," and then goes silent. For such a little sound, it bears a great weight of @@.gold;betrayed trust.@@ You insert your fingers to the knuckle, making $him writhe with discomfort, and then turf $him off the couch to land
+				<<if $activeSlave.belly >= 300000>>
+					across $his _belly stomach
+				<<else>>
+					face first
+				<</if>>
+				on the floor in front of you. $He tries to spread $his butt and angle $his hips like a good $girl, but you slap $his hands away and push your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> inside $him without regard for $his poor anus. $He shudders and begins to cry, and keeps crying as you ravage $his asshole. When you climax and pull out, $he continues to weep, but stumbles off to wash. When $he comes back, $he's still sniffling, but without being prompted,
+				<<if $activeSlave.belly >= 300000>>
+					@@.hotpink;$he leans over $his belly and offers you $his sore butthole again.@@
+				<<else>>
+					@@.hotpink;$he gets down on $his knees and offers you $his sore butthole again.@@
+				<</if>>
+				<<set $activeSlave.trust -= 4, $activeSlave.devotion += 5>>
+				<<= AnalVCheck()>>
+				<</replace>>
+			<</link>>
+		</span>
 	<</replace>>
 <</link>>
 
@@ -11167,416 +11171,416 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Touch $him enough to get $him off">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him that $he deserves a reward for coming to you. $He almost bursts into tears and nods jerkily, unable to do anything else. You brush a finger across $his cheek, $his ear, $his lips; at each touch $he <<if !canTalk($activeSlave)>>breathes in sharply<<else>>gasps<</if>>. Moving around behind $him, you run a hand down $his flank to $his hip, and then around to $his<<if $activeSlave.belly >= 10000 || $activeSlave.bellyPreg >= 5000>> popped<</if>> navel, and up to cup $his breasts. Your run a thumb <<if $activeSlave.nipples != "fuckable">>over<<else>>into<</if>> each nipple, almost tipping $him over the edge. Your hands move down again,
-	<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
-		spreading $his buttocks to tease $his clenched anus, and then forward across $his perineum. From there, you trace $his labia and end with a pinch of $his clit — and this is enough.
-	<<elseif canDoAnal($activeSlave)>>
-		spreading $his buttocks to tease $his clenched anus, and then forward across $his perineum — and this is enough.
-	<<elseif canDoVaginal($activeSlave)>>
-		tracing $his labia, and then forward to $his clit — and this is enough.
-	<<else>>
-		to give $his buttcheeks a rub down before teasing at $his chastity — and this is enough.
-	<</if>>
-	$He spasms, pitching forward
-	<<if $activeSlave.belly >= 300000>>
-		onto $his obscene belly.
-	<<else>>
-		and almost falling.
-	<</if>>
-	$He hurries to clean up after $himself, sobbing with relief and thanking you; $his submissiveness @@.hotpink;has increased.@@
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>>
-<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish != "none")>>
-<br><<link "Reward $him for coming to you">>
-	<<EventNameDelink $activeSlave>>
-	<<setNonlocalPronouns $seeDicks>>
-	<<replace "#result">>
-	$He almost cries with relief when you tell $him to
-	<<switch $activeSlave.fetish>>
-	<<case "submissive">>
-		lie down on your desk on $his side in the fetal position. $He clambers up hurriedly and hugs $his knees<<if $activeSlave.belly >= 10000>> as best $he can with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy <</if>>in the way<</if>>, spinning $himself around on the smooth surface so $his rear is pointing right at you. You stand up and pull $him over, $his $activeSlave.skin skin sliding across the cool glass desktop, until $his
+		You tell $him that $he deserves a reward for coming to you. $He almost bursts into tears and nods jerkily, unable to do anything else. You brush a finger across $his cheek, $his ear, $his lips; at each touch $he <<if !canTalk($activeSlave)>>breathes in sharply<<else>>gasps<</if>>. Moving around behind $him, you run a hand down $his flank to $his hip, and then around to $his<<if $activeSlave.belly >= 10000 || $activeSlave.bellyPreg >= 5000>> popped<</if>> navel, and up to cup $his breasts. Your run a thumb <<if $activeSlave.nipples != "fuckable">>over<<else>>into<</if>> each nipple, almost tipping $him over the edge. Your hands move down again,
 		<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
-			butt is right at the edge of the desk. You warm yourself up with a pussy fuck before shifting your attention to $his neglected asshole.
-			<<= BothVCheck(3)>>
-			When you finish, you
+			spreading $his buttocks to tease $his clenched anus, and then forward across $his perineum. From there, you trace $his labia and end with a pinch of $his clit — and this is enough.
 		<<elseif canDoAnal($activeSlave)>>
-			butt is right at the edge of the desk.
-			<<= AnalVCheck(3)>>
-			You give it a good fuck and then
-		<<elseif canDoVaginal($activeSlave)>>
-			pussy is right at the edge of the desk.
-			<<= VaginalVCheck(3)>>
-			You give it a good fuck and then
-		<<else>>
-			mouth is right at the edge of the desk. You give it a good fuck and then
-			<<set $activeSlave.counter.oral += 3, $oralTotal += 3>>
-		<</if>>
-		order $him brusquely to clean up and come right back. You use $him as a nice little desktop <<if $PC.dick == 1>>cockholster<<else>>sex toy<</if>> for the rest of the day.
-	<<case "cumslut">>
-		get under your desk and <<if $PC.dick == 1>>suck a dick<<if $PC.vagina == 1>> and eat a pussy<</if>><<else>>eat pussy<</if>> while you work.
-		<<if $activeSlave.belly >= 120000>>
-			As $his _belly belly bumps into you, you sigh and swivel your chair to the side; there is no way $he'll fit under there in $his bloated state.
-		<</if>>
-		$He's so horny that $he's barely got <<if $PC.dick == 1>>your cock into $his mouth<<else>>$his lips and tongue on your cunt<</if>> before $he climaxes spontaneously, shivering and moaning nicely. You keep $him down there for a while, doing light work and orgasming occasionally as $he gently <<if $PC.dick == 1>>blows you<<if $PC.vagina == 1>> and eats you out<</if>><<else>>lavishes attention on your wet vagina<</if>>.
-		<<set $activeSlave.counter.oral += 3, $oralTotal += 3>>
-	<<case "humiliation">>
-		run an unimportant message to a citizen across $arcologies[0].name. Naked. $He blushes with mixed embarrassment and anticipation. $He's so pent up that before taking ten steps out of your penthouse entryway and towards $his objective, the open stares $his naked, horny body is getting push $him over the edge.
-		<<if ($activeSlave.chastityPenis == 1)>>
-			As $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> along, $his chastity cage continues to stream precum. It spatters $his legs, making $his desperation completely obvious to anyone who looks at $his<<if $activeSlave.belly >= 150000>> from behind<</if>>.
-		<<elseif canAchieveErection($activeSlave)>>
-			$His rock hard cock,
-			<<if $activeSlave.belly >= 150000>>
-				forced down by the size of $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, jerks suddenly and shoots out a little squirt of cum down the underside of $his belly.
-			<<else>>
-				sticking straight forward as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, jerks suddenly upward and shoots out a little squirt of cum<<if $activeSlave.belly >= 10000>> across the underside of $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>.
-			<</if>>
-			As $he stumbles forward, each step releases another squirt.
-		<<elseif ($activeSlave.dick > 0)>>
-			$His <<if $activeSlave.dick > 6>>enormous <</if>>soft cock, flopping around as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, starts to twitch weakly and release little dribbles of cum. As $he stumbles forward, each step releases another squirt.
-		<<elseif $activeSlave.anus > 2>>
-			As $he stumbles a little with the orgasm, $his <<if canDoAnal($activeSlave)>>naked anus is easily visible from behind $him, and its lewd spasms attract attention<<else>>anus lewdly spasms under $his chastity, and $his odd motions attract attention<</if>>.
+			spreading $his buttocks to tease $his clenched anus, and then forward across $his perineum — and this is enough.
 		<<elseif canDoVaginal($activeSlave)>>
-			$He focuses $his attention on $his pussy, awkwardly stumbling along as $he tries to walk and finger $himself at the same time.
-		<<elseif canDoAnal($activeSlave)>>
-			$He focuses $his attention on $his asspussy, awkwardly stumbling along as $he tries to walk and play with $his own butt at the same time.
-		<<elseif $activeSlave.vagina > 0>>
-			$He squirts a little femcum down $his inner thighs as $he stumbles along, trailing the odor of a woman's pleasure behind $him.
-		<<else>>
-			$He focuses $his attention on $his breasts, awkwardly stumbling along as $he tries to walk and <<if $activeSlave.nipples != "fuckable">>tweak<<else>>finger<</if>> $his own nipples at the same time.
-		<</if>>
-		Passersby point and laugh, thrilling $him.
-	<<case "buttslut">>
-		sit on your lap.
-		<<if canDoAnal($activeSlave)>>
-			$He climaxes the instant your <<if $PC.dick == 1>>dickhead<<else>>strap-on<</if>> touches $his <<if $activeSlave.anus > 2>>anal gape<<else>>pucker<</if>>, but $he knows this is just the start, and $he laughs with pleasure as $his <<if $activeSlave.anus > 2>>lewd sphincter loosely squeezes<<else>>sphincter tightens against<</if>> the base of <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>. You
-			<<if $activeSlave.belly >= 5000>>
-				spread your legs more and shove the<<if $activeSlave.bellyPreg >= 3000>>pregnant, <</if>>giggling buttslut down so $his _belly belly and chest are between your legs, lower your chair a little, and slide yourself back towards your desk to work.
-			<<else>>
-				shove the giggling buttslut down so $his chest is resting against the tops of your legs, lower your chair a little, and slide yourself back towards your desk to work.
-			<</if>>
-			$He wraps $his legs around the back of the chair and hugs your knees with $his arms, securing $himself
-			<<if $activeSlave.belly >= 100000>>
-				to you as an anal cocksleeve for as long as you feel like keeping <<if $PC.dick == 1>>your penis lodged up a compliant butthole<<else>>the happy buttslut nice and full<</if>>.
-			<<else>>
-				under the desk as an anal cocksleeve for as long as you feel like keeping <<if $PC.dick == 1>>your penis lodged up a compliant butthole<<else>>the happy buttslut trapped under there<</if>>.
-			<</if>>
-			<<= AnalVCheck()>>
+			tracing $his labia, and then forward to $his clit — and this is enough.
 		<<else>>
-			$He climaxes the instant your <<if $PC.dick == 1>>dickhead<<else>>strap-on<</if>> squeezes between $his
-			<<if $activeSlave.butt < 2>>
-				flat, tight cheeks,
-			<<elseif $activeSlave.butt <= 2>>
-				cute cheeks,
-			<<elseif $activeSlave.butt <= 3>>
-				round, firm cheeks,
-			<<elseif $activeSlave.butt <= 4>>
-				curvy, enticing buttcheeks,
-			<<elseif $activeSlave.butt <= 5>>
-				huge cheeks,
-			<<elseif $activeSlave.butt <= 6>>
-				massive, alluring cheeks,
-			<<elseif $activeSlave.butt <= 7>>
-				enormous cheeks,
-			<<elseif $activeSlave.butt <= 10>>
-				gigantic, jiggly cheeks,
-			<<elseif $activeSlave.butt <= 14>>
-				inhuman, cushiony butt cheeks,
-			<<elseif $activeSlave.butt <= 20>>
-				couch-like, super jiggly ass cheeks,
-			<</if>>
-			but $he knows this is just the start, and $he laughs with pleasure as hug $his rear around <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>. You
-			<<if $activeSlave.belly >= 5000>>
-				spread your legs more and shove the<<if $activeSlave.bellyPreg >= 3000>>pregnant, <</if>>giggling buttslut down so $his _belly belly and chest are between your legs, lower your chair a little, and slide yourself back towards your desk to work.
-			<<else>>
-				shove the giggling buttslut down so $his chest is resting against the tops of your legs, lower your chair a little, and slide yourself back towards your desk to work.
-			<</if>>
-			$He wraps $his legs around the back of the chair and hugs your knees with $his arms, securing $himself
-			<<if $activeSlave.belly >= 100000>>
-				to you as an a cockbun for as long as you feel like keeping <<if $PC.dick == 1>>your penis wrapped in a happy buttslut<<else>>the happy buttslut entertained<</if>>.
-			<<else>>
-				under the desk as a cockbun for as long as you feel like keeping the happy buttslut trapped under there.
-			<</if>>
-			under the desk as cockbun for as long as you feel like keeping the happy buttslut trapped under there.
+			to give $his buttcheeks a rub down before teasing at $his chastity — and this is enough.
 		<</if>>
-	<<case "boobs">>
-		lie atop your desk. You don't bother specifying that $he's to lie on $his back, since the boob slut jumps up and presents $his tits without instructions. You keep working with one hand while you idly tease and <<if $activeSlave.nipples != "fuckable">>flick<<else>>finger<</if>> the nearest <<if $activeSlave.lactation > 0>>milky <</if>> nipple with the other. $He's so horny that $he immediately experiences an immodest orgasm, $his back arching away from the cool glass desktop as $he rides its waves. $He giggles a little, and then gasps as you resume playing with $him.
-		<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
-		<<if $activeSlave.lactation > 0>>
-			<<set $activeSlave.lactationDuration = 2>>
-			<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
+		$He spasms, pitching forward
+		<<if $activeSlave.belly >= 300000>>
+			onto $his obscene belly.
 		<<else>>
-			<<set $activeSlave.induceLactation += 4>>
-			<<= induceLactation($activeSlave)>>
+			and almost falling.
 		<</if>>
-	<<case "pregnancy">>
-		<<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>>
-			join you on the couch. Since <<if ($activeSlave.vagina >= 0)>>you're saving $his pussy<<else>>this slave $girl doesn't have a pussy<</if>>, and $his tight little rosebud is off limits, your options are a bit limited. But you work with what you have, playing with $his
-			<<if isFertile($activeSlave)>>
-				<<if $activeSlave.lactation == 0>>
-					nipples and describing in whispers how pregnancy would make them drip with cream.
-				<<else>>
-					breasts and describing in whispers how big they'll swell if $he got pregnant.
-				<</if>>
-			<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
-				<<if $activeSlave.lactation == 1>>
-					nipples and describing in whispers how nice and swollen $he is with milk.
-				<<else>>
-					breasts and describing in whispers how big $he's gotten since $he got pregnant.
-				<</if>>
-			<<elseif $activeSlave.preg > 0>>
-				<<if $activeSlave.lactation == 0>>
-					nipples and describing in whispers how $his pregnancy will soon have them drip with cream.
-				<<else>>
-					breasts and describing in whispers how $his pregnancy will soon swell them to feed $his child<<if $activeSlave.pregType > 1>>ren<</if>>.
-				<</if>>
-			<<else>>
-				<<if $activeSlave.lactation == 0>>
-					nipples and describing in whispers how they'd drip with cream if only $he could get pregnant.
+		$He hurries to clean up after $himself, sobbing with relief and thanking you; $his submissiveness @@.hotpink;has increased.@@
+		<<set $activeSlave.devotion += 4>>
+	<</replace>>
+<</link>>
+<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish != "none")>>
+	<br><<link "Reward $him for coming to you">>
+		<<EventNameDelink $activeSlave>>
+		<<setNonlocalPronouns $seeDicks>>
+		<<replace "#result">>
+			$He almost cries with relief when you tell $him to
+			<<switch $activeSlave.fetish>>
+			<<case "submissive">>
+				lie down on your desk on $his side in the fetal position. $He clambers up hurriedly and hugs $his knees<<if $activeSlave.belly >= 10000>> as best $he can with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy <</if>>in the way<</if>>, spinning $himself around on the smooth surface so $his rear is pointing right at you. You stand up and pull $him over, $his $activeSlave.skin skin sliding across the cool glass desktop, until $his
+				<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
+					butt is right at the edge of the desk. You warm yourself up with a pussy fuck before shifting your attention to $his neglected asshole.
+					<<= BothVCheck(3)>>
+					When you finish, you
+				<<elseif canDoAnal($activeSlave)>>
+					butt is right at the edge of the desk.
+					<<= AnalVCheck(3)>>
+					You give it a good fuck and then
+				<<elseif canDoVaginal($activeSlave)>>
+					pussy is right at the edge of the desk.
+					<<= VaginalVCheck(3)>>
+					You give it a good fuck and then
 				<<else>>
-					breasts and describing in whispers how big they'd swell if only $he could get pregnant.
+					mouth is right at the edge of the desk. You give it a good fuck and then
+					<<set $activeSlave.counter.oral += 3, $oralTotal += 3>>
 				<</if>>
-			<</if>>
-			$He gasps and shudders against you.
-			<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
-		<<elseif ($activeSlave.anus == 0) && ($activeSlave.vagina <= 0)>>
-			join you on the couch. Since <<if ($activeSlave.vagina == 0)>>$he's a virgin and you haven't elected to introduce $him to pussyfucking just yet<<else>>this slave $girl doesn't have a pussy<</if>>, and $his tight little rosebud is fresh and unspoiled, your options are a bit limited. But you work with what you have, playing with $his
-			<<if isFertile($activeSlave)>>
-				<<if $activeSlave.lactation == 0>>
-					nipples and describing in whispers how pregnancy would make them drip with cream.
-				<<else>>
-					breasts and describing in whispers how big they'll swell if $he got pregnant.
+				order $him brusquely to clean up and come right back. You use $him as a nice little desktop <<if $PC.dick == 1>>cockholster<<else>>sex toy<</if>> for the rest of the day.
+			<<case "cumslut">>
+				get under your desk and <<if $PC.dick == 1>>suck a dick<<if $PC.vagina == 1>> and eat a pussy<</if>><<else>>eat pussy<</if>> while you work.
+				<<if $activeSlave.belly >= 120000>>
+					As $his _belly belly bumps into you, you sigh and swivel your chair to the side; there is no way $he'll fit under there in $his bloated state.
 				<</if>>
-			<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
-				<<if $activeSlave.lactation == 1>>
-					nipples and describing in whispers how nice and swollen $he is with milk.
+				$He's so horny that $he's barely got <<if $PC.dick == 1>>your cock into $his mouth<<else>>$his lips and tongue on your cunt<</if>> before $he climaxes spontaneously, shivering and moaning nicely. You keep $him down there for a while, doing light work and orgasming occasionally as $he gently <<if $PC.dick == 1>>blows you<<if $PC.vagina == 1>> and eats you out<</if>><<else>>lavishes attention on your wet vagina<</if>>.
+				<<set $activeSlave.counter.oral += 3, $oralTotal += 3>>
+			<<case "humiliation">>
+				run an unimportant message to a citizen across $arcologies[0].name. Naked. $He blushes with mixed embarrassment and anticipation. $He's so pent up that before taking ten steps out of your penthouse entryway and towards $his objective, the open stares $his naked, horny body is getting push $him over the edge.
+				<<if ($activeSlave.chastityPenis == 1)>>
+					As $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> along, $his chastity cage continues to stream precum. It spatters $his legs, making $his desperation completely obvious to anyone who looks at $his<<if $activeSlave.belly >= 150000>> from behind<</if>>.
+				<<elseif canAchieveErection($activeSlave)>>
+					$His rock hard cock,
+					<<if $activeSlave.belly >= 150000>>
+						forced down by the size of $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, jerks suddenly and shoots out a little squirt of cum down the underside of $his belly.
+					<<else>>
+						sticking straight forward as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, jerks suddenly upward and shoots out a little squirt of cum<<if $activeSlave.belly >= 10000>> across the underside of $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>.
+					<</if>>
+					As $he stumbles forward, each step releases another squirt.
+				<<elseif ($activeSlave.dick > 0)>>
+					$His <<if $activeSlave.dick > 6>>enormous <</if>>soft cock, flopping around as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, starts to twitch weakly and release little dribbles of cum. As $he stumbles forward, each step releases another squirt.
+				<<elseif $activeSlave.anus > 2>>
+					As $he stumbles a little with the orgasm, $his <<if canDoAnal($activeSlave)>>naked anus is easily visible from behind $him, and its lewd spasms attract attention<<else>>anus lewdly spasms under $his chastity, and $his odd motions attract attention<</if>>.
+				<<elseif canDoVaginal($activeSlave)>>
+					$He focuses $his attention on $his pussy, awkwardly stumbling along as $he tries to walk and finger $himself at the same time.
+				<<elseif canDoAnal($activeSlave)>>
+					$He focuses $his attention on $his asspussy, awkwardly stumbling along as $he tries to walk and play with $his own butt at the same time.
+				<<elseif $activeSlave.vagina > 0>>
+					$He squirts a little femcum down $his inner thighs as $he stumbles along, trailing the odor of a woman's pleasure behind $him.
 				<<else>>
-					breasts and describing in whispers how big $he's gotten since $he got pregnant.
+					$He focuses $his attention on $his breasts, awkwardly stumbling along as $he tries to walk and <<if $activeSlave.nipples != "fuckable">>tweak<<else>>finger<</if>> $his own nipples at the same time.
 				<</if>>
-			<<elseif $activeSlave.preg > 0>>
-				<<if $activeSlave.lactation == 0>>
-					nipples and describing in whispers how $his pregnancy will soon have them drip with cream.
+				Passersby point and laugh, thrilling $him.
+			<<case "buttslut">>
+				sit on your lap.
+				<<if canDoAnal($activeSlave)>>
+					$He climaxes the instant your <<if $PC.dick == 1>>dickhead<<else>>strap-on<</if>> touches $his <<if $activeSlave.anus > 2>>anal gape<<else>>pucker<</if>>, but $he knows this is just the start, and $he laughs with pleasure as $his <<if $activeSlave.anus > 2>>lewd sphincter loosely squeezes<<else>>sphincter tightens against<</if>> the base of <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>. You
+					<<if $activeSlave.belly >= 5000>>
+						spread your legs more and shove the<<if $activeSlave.bellyPreg >= 3000>>pregnant, <</if>>giggling buttslut down so $his _belly belly and chest are between your legs, lower your chair a little, and slide yourself back towards your desk to work.
+					<<else>>
+						shove the giggling buttslut down so $his chest is resting against the tops of your legs, lower your chair a little, and slide yourself back towards your desk to work.
+					<</if>>
+					$He wraps $his legs around the back of the chair and hugs your knees with $his arms, securing $himself
+					<<if $activeSlave.belly >= 100000>>
+						to you as an anal cocksleeve for as long as you feel like keeping <<if $PC.dick == 1>>your penis lodged up a compliant butthole<<else>>the happy buttslut nice and full<</if>>.
+					<<else>>
+						under the desk as an anal cocksleeve for as long as you feel like keeping <<if $PC.dick == 1>>your penis lodged up a compliant butthole<<else>>the happy buttslut trapped under there<</if>>.
+					<</if>>
+					<<= AnalVCheck()>>
 				<<else>>
-					breasts and describing in whispers how $his pregnancy will soon swell them to feed $his child<<if $activeSlave.pregType > 1>>ren<</if>>.
+					$He climaxes the instant your <<if $PC.dick == 1>>dickhead<<else>>strap-on<</if>> squeezes between $his
+					<<if $activeSlave.butt < 2>>
+						flat, tight cheeks,
+					<<elseif $activeSlave.butt <= 2>>
+						cute cheeks,
+					<<elseif $activeSlave.butt <= 3>>
+						round, firm cheeks,
+					<<elseif $activeSlave.butt <= 4>>
+						curvy, enticing buttcheeks,
+					<<elseif $activeSlave.butt <= 5>>
+						huge cheeks,
+					<<elseif $activeSlave.butt <= 6>>
+						massive, alluring cheeks,
+					<<elseif $activeSlave.butt <= 7>>
+						enormous cheeks,
+					<<elseif $activeSlave.butt <= 10>>
+						gigantic, jiggly cheeks,
+					<<elseif $activeSlave.butt <= 14>>
+						inhuman, cushiony butt cheeks,
+					<<elseif $activeSlave.butt <= 20>>
+						couch-like, super jiggly ass cheeks,
+					<</if>>
+					but $he knows this is just the start, and $he laughs with pleasure as hug $his rear around <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>. You
+					<<if $activeSlave.belly >= 5000>>
+						spread your legs more and shove the<<if $activeSlave.bellyPreg >= 3000>>pregnant, <</if>>giggling buttslut down so $his _belly belly and chest are between your legs, lower your chair a little, and slide yourself back towards your desk to work.
+					<<else>>
+						shove the giggling buttslut down so $his chest is resting against the tops of your legs, lower your chair a little, and slide yourself back towards your desk to work.
+					<</if>>
+					$He wraps $his legs around the back of the chair and hugs your knees with $his arms, securing $himself
+					<<if $activeSlave.belly >= 100000>>
+						to you as an a cockbun for as long as you feel like keeping <<if $PC.dick == 1>>your penis wrapped in a happy buttslut<<else>>the happy buttslut entertained<</if>>.
+					<<else>>
+						under the desk as a cockbun for as long as you feel like keeping the happy buttslut trapped under there.
+					<</if>>
+					under the desk as cockbun for as long as you feel like keeping the happy buttslut trapped under there.
 				<</if>>
-			<<else>>
-				<<if $activeSlave.lactation == 0>>
-					nipples and describing in whispers how they'd drip with cream if only $he could get pregnant.
+			<<case "boobs">>
+				lie atop your desk. You don't bother specifying that $he's to lie on $his back, since the boob slut jumps up and presents $his tits without instructions. You keep working with one hand while you idly tease and <<if $activeSlave.nipples != "fuckable">>flick<<else>>finger<</if>> the nearest <<if $activeSlave.lactation > 0>>milky <</if>> nipple with the other. $He's so horny that $he immediately experiences an immodest orgasm, $his back arching away from the cool glass desktop as $he rides its waves. $He giggles a little, and then gasps as you resume playing with $him.
+				<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
+				<<if $activeSlave.lactation > 0>>
+					<<set $activeSlave.lactationDuration = 2>>
+					<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
 				<<else>>
-					breasts and describing in whispers how big they'd swell if only $he could get pregnant.
+					<<set $activeSlave.induceLactation += 4>>
+					<<= induceLactation($activeSlave)>>
 				<</if>>
-			<</if>>
-			$He gasps and shudders against you.
-			<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
-		<<elseif $activeSlave.pregKnown == 1>>
-			join you on the couch. <<if $PC.dick == 1>>You orgasm inside $him promptly, and then tell $him you'll be leaving your seed inside $him to do its work while you have $him again.<<else>>You use a strap-on with a fluid reservoir, and you trigger it promptly, releasing a gush of warm fluid into $him. You tell $him you'll be leaving it inside $him to do its work while you have $him again.<</if>> $He gasps at the appeal of the idea and grinds $himself against you hungrily.
-			<<if !canDoVaginal($activeSlave)>>
-				<<if $activeSlave.mpreg == 1>>
-					$He's already pregnant, but that doesn't disrupt $his fantasy of being even more pregnant.
+			<<case "pregnancy">>
+				<<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>>
+					join you on the couch. Since <<if ($activeSlave.vagina >= 0)>>you're saving $his pussy<<else>>this slave $girl doesn't have a pussy<</if>>, and $his tight little rosebud is off limits, your options are a bit limited. But you work with what you have, playing with $his
+					<<if isFertile($activeSlave)>>
+						<<if $activeSlave.lactation == 0>>
+							nipples and describing in whispers how pregnancy would make them drip with cream.
+						<<else>>
+							breasts and describing in whispers how big they'll swell if $he got pregnant.
+						<</if>>
+					<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
+						<<if $activeSlave.lactation == 1>>
+							nipples and describing in whispers how nice and swollen $he is with milk.
+						<<else>>
+							breasts and describing in whispers how big $he's gotten since $he got pregnant.
+						<</if>>
+					<<elseif $activeSlave.preg > 0>>
+						<<if $activeSlave.lactation == 0>>
+							nipples and describing in whispers how $his pregnancy will soon have them drip with cream.
+						<<else>>
+							breasts and describing in whispers how $his pregnancy will soon swell them to feed $his child<<if $activeSlave.pregType > 1>>ren<</if>>.
+						<</if>>
+					<<else>>
+						<<if $activeSlave.lactation == 0>>
+							nipples and describing in whispers how they'd drip with cream if only $he could get pregnant.
+						<<else>>
+							breasts and describing in whispers how big they'd swell if only $he could get pregnant.
+						<</if>>
+					<</if>>
+					$He gasps and shudders against you.
+					<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
+				<<elseif ($activeSlave.anus == 0) && ($activeSlave.vagina <= 0)>>
+					join you on the couch. Since <<if ($activeSlave.vagina == 0)>>$he's a virgin and you haven't elected to introduce $him to pussyfucking just yet<<else>>this slave $girl doesn't have a pussy<</if>>, and $his tight little rosebud is fresh and unspoiled, your options are a bit limited. But you work with what you have, playing with $his
+					<<if isFertile($activeSlave)>>
+						<<if $activeSlave.lactation == 0>>
+							nipples and describing in whispers how pregnancy would make them drip with cream.
+						<<else>>
+							breasts and describing in whispers how big they'll swell if $he got pregnant.
+						<</if>>
+					<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
+						<<if $activeSlave.lactation == 1>>
+							nipples and describing in whispers how nice and swollen $he is with milk.
+						<<else>>
+							breasts and describing in whispers how big $he's gotten since $he got pregnant.
+						<</if>>
+					<<elseif $activeSlave.preg > 0>>
+						<<if $activeSlave.lactation == 0>>
+							nipples and describing in whispers how $his pregnancy will soon have them drip with cream.
+						<<else>>
+							breasts and describing in whispers how $his pregnancy will soon swell them to feed $his child<<if $activeSlave.pregType > 1>>ren<</if>>.
+						<</if>>
+					<<else>>
+						<<if $activeSlave.lactation == 0>>
+							nipples and describing in whispers how they'd drip with cream if only $he could get pregnant.
+						<<else>>
+							breasts and describing in whispers how big they'd swell if only $he could get pregnant.
+						<</if>>
+					<</if>>
+					$He gasps and shudders against you.
+					<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
+				<<elseif $activeSlave.pregKnown == 1>>
+					join you on the couch. <<if $PC.dick == 1>>You orgasm inside $him promptly, and then tell $him you'll be leaving your seed inside $him to do its work while you have $him again.<<else>>You use a strap-on with a fluid reservoir, and you trigger it promptly, releasing a gush of warm fluid into $him. You tell $him you'll be leaving it inside $him to do its work while you have $him again.<</if>> $He gasps at the appeal of the idea and grinds $himself against you hungrily.
+					<<if !canDoVaginal($activeSlave)>>
+						<<if $activeSlave.mpreg == 1>>
+							$He's already pregnant, but that doesn't disrupt $his fantasy of being even more pregnant.
+						<<else>>
+							It's $his butt you're fucking, but that doesn't disrupt $his fantasy.
+						<</if>>
+						<<= AnalVCheck()>>
+					<<else>>
+						$He's already pregnant, but that doesn't disrupt $his fantasy of being even more pregnant.
+						<<= VaginalVCheck()>>
+					<</if>>
 				<<else>>
-					It's $his butt you're fucking, but that doesn't disrupt $his fantasy.
+					join you on the couch. <<if $PC.dick == 1>>You orgasm inside $him promptly, and then tell $him you'll be leaving your seed inside $him to do its work while you have $him again.<<else>>You use a strap-on with a fluid reservoir, and you trigger it promptly, releasing a gush of warm fluid into $him. You tell $him you'll be leaving it inside $him to do its work while you have $him again.<</if>> $He gasps at the appeal of the idea and grinds $himself against you hungrily.
+					<<if !canDoVaginal($activeSlave)>>
+						<<if $activeSlave.mpreg == 1>>
+							$He's eager to get pregnant and intends to put $his asspussy to use.
+						<<else>>
+							It's $his butt you're fucking, but that doesn't disrupt $his fantasy.
+						<</if>>
+						<<= AnalVCheck()>>
+					<<else>>
+						$He's eager to get pregnant and intends to put $his pussy to use.
+						<<= VaginalVCheck()>>
+					<</if>>
 				<</if>>
-				<<= AnalVCheck()>>
-			<<else>>
-				$He's already pregnant, but that doesn't disrupt $his fantasy of being even more pregnant.
-				<<= VaginalVCheck()>>
-			<</if>>
-		<<else>>
-			join you on the couch. <<if $PC.dick == 1>>You orgasm inside $him promptly, and then tell $him you'll be leaving your seed inside $him to do its work while you have $him again.<<else>>You use a strap-on with a fluid reservoir, and you trigger it promptly, releasing a gush of warm fluid into $him. You tell $him you'll be leaving it inside $him to do its work while you have $him again.<</if>> $He gasps at the appeal of the idea and grinds $himself against you hungrily.
-			<<if !canDoVaginal($activeSlave)>>
-				<<if $activeSlave.mpreg == 1>>
-					$He's eager to get pregnant and intends to put $his asspussy to use.
+			<<case "dom">>
+				wait a moment, because you know what $he needs. $He's mystified, but steels $himself and waits. Another slave appears for an inspection, and _heU discovers that _heU's to be inspected with $activeSlave.slaveName's <<if canPenetrate($activeSlave)>>cock up _hisU asshole<<else>>fingers assfucking _himU<</if>>. The dominant $activeSlave.slaveName climaxes immediately to $his use of the poor slave, rubbing <<if $activeSlave.belly >= 5000>>$his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>$himself<</if>> all over the other slave's buttocks while $he continues banging _hisU backdoor.
+				<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+			<<case "sadist">>
+				wait a moment, because you know what $he needs. $He's mystified, but steels $himself and waits. Another slave appears for a trivial punishment, and _heU discovers that _heU's to be punished by $activeSlave.slaveName's <<if canPenetrate($activeSlave)>>dick<<else>>fingers<</if>>, forced up _hisU anus. The dominant $activeSlave.slaveName climaxes quickly, but quickly recovers and keeps assraping the poor _girlU.
+				<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+			<<case "masochist">>
+				get $his ass up on your desk and
+				<<if $activeSlave.belly >= 300000>>
+					lie off the side atop $his _belly stomach.
+				<<elseif $activeSlave.belly < 1500>>
+					lie on $his side.
 				<<else>>
-					It's $his butt you're fucking, but that doesn't disrupt $his fantasy.
+					lie face-down.
 				<</if>>
-				<<= AnalVCheck()>>
+				$He <<if $activeSlave.belly >= 10000>>struggles to heft $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>body<<else>>clambers<</if>> up, and you let $his lie there for a while, tortured by anticipation and arousal, before giving $his nearest buttock a harsh open-handed slap. The shock and pain send $him over the edge immediately, and $he grinds forward into the desk involuntarily; the feeling of the cool desk against $his <<if ($activeSlave.dick > 0)>>dickhead<<elseif $activeSlave.vagina == -1>>crotch<<else>>mons<</if>> slams $him into a second climax, and $he sobs with overstimulation. You keep $him there for a good long while, using $him as a desktop toy that makes interesting noises when you hit it.
+			<</switch>>
+			<<if ($activeSlave.fetishStrength > 95)>>
+				Since $he's totally sure of what gets $him off, this proof you know it too makes $him @@.mediumaquamarine;trust you.@@
+				<<set $activeSlave.trust += 5>>
 			<<else>>
-				$He's eager to get pregnant and intends to put $his pussy to use.
-				<<= VaginalVCheck()>>
+				Since $he's developing $his kinks, this reinforcement of $his sexual identity @@.lightcoral;advances $his fetish.@@
+				<<set $activeSlave.fetishStrength += 4>>
 			<</if>>
-		<</if>>
-	<<case "dom">>
-		wait a moment, because you know what $he needs. $He's mystified, but steels $himself and waits. Another slave appears for an inspection, and _heU discovers that _heU's to be inspected with $activeSlave.slaveName's <<if canPenetrate($activeSlave)>>cock up _hisU asshole<<else>>fingers assfucking _himU<</if>>. The dominant $activeSlave.slaveName climaxes immediately to $his use of the poor slave, rubbing <<if $activeSlave.belly >= 5000>>$his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>$himself<</if>> all over the other slave's buttocks while $he continues banging _hisU backdoor.
-		<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-	<<case "sadist">>
-		wait a moment, because you know what $he needs. $He's mystified, but steels $himself and waits. Another slave appears for a trivial punishment, and _heU discovers that _heU's to be punished by $activeSlave.slaveName's <<if canPenetrate($activeSlave)>>dick<<else>>fingers<</if>>, forced up _hisU anus. The dominant $activeSlave.slaveName climaxes quickly, but quickly recovers and keeps assraping the poor _girlU.
-		<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-	<<case "masochist">>
-		get $his ass up on your desk and
-		<<if $activeSlave.belly >= 300000>>
-			lie off the side atop $his _belly stomach.
-		<<elseif $activeSlave.belly < 1500>>
-			lie on $his side.
-		<<else>>
-			lie face-down.
-		<</if>>
-		$He <<if $activeSlave.belly >= 10000>>struggles to heft $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>body<<else>>clambers<</if>> up, and you let $his lie there for a while, tortured by anticipation and arousal, before giving $his nearest buttock a harsh open-handed slap. The shock and pain send $him over the edge immediately, and $he grinds forward into the desk involuntarily; the feeling of the cool desk against $his <<if ($activeSlave.dick > 0)>>dickhead<<elseif $activeSlave.vagina == -1>>crotch<<else>>mons<</if>> slams $him into a second climax, and $he sobs with overstimulation. You keep $him there for a good long while, using $him as a desktop toy that makes interesting noises when you hit it.
-	<</switch>>
-	<<if ($activeSlave.fetishStrength > 95)>>
-		Since $he's totally sure of what gets $him off, this proof you know it too makes $him @@.mediumaquamarine;trust you.@@
-		<<set $activeSlave.trust += 5>>
-	<<else>>
-		Since $he's developing $his kinks, this reinforcement of $his sexual identity @@.lightcoral;advances $his fetish.@@
-		<<set $activeSlave.fetishStrength += 4>>
-	<</if>>
-	<</replace>>
-<</link>><<if (canDoVaginal($activeSlave) && $activeSlave.vagina == 0) || (canDoAnal($activeSlave) && $activeSlave.anus == 0)>> //This option may take $his virginity//<</if>>
+		<</replace>>
+	<</link>><<if (canDoVaginal($activeSlave) && $activeSlave.vagina == 0) || (canDoAnal($activeSlave) && $activeSlave.anus == 0)>> //This option may take $his virginity//<</if>>
 <</if>>
 <br>Let $him get off:
 <<if ($activeSlave.fetish != "cumslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while $he sucks">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. From now on, $he can come to you and ask to <<if $PC.dick == 0>>perform cunnilingus on you<<else>>blow you<<if $PC.vagina == 1>> and eat you out<</if>><</if>>, and masturbate while $he does. $He nods through $his tears and hurriedly gets to $his knees, gagging in $his clumsy eagerness, crying a little with relief as $he masturbates furiously<<if $PC.vagina == 1>><<if $PC.dick == 1>> and does $his best to simultaneously please both a cock and a cunt with only one mouth<</if>><</if>>. $He doesn't even pause after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
-	<<set $activeSlave.counter.oral += 5, $oralTotal += 5, $activeSlave.devotion += 4>>
-	<<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>> has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1>>
-		Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>>.@@
-	<</if>>
-	<</replace>>
-<</link>>
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while $he sucks">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. From now on, $he can come to you and ask to <<if $PC.dick == 0>>perform cunnilingus on you<<else>>blow you<<if $PC.vagina == 1>> and eat you out<</if>><</if>>, and masturbate while $he does. $He nods through $his tears and hurriedly gets to $his knees, gagging in $his clumsy eagerness, crying a little with relief as $he masturbates furiously<<if $PC.vagina == 1>><<if $PC.dick == 1>> and does $his best to simultaneously please both a cock and a cunt with only one mouth<</if>><</if>>. $He doesn't even pause after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
+			<<set $activeSlave.counter.oral += 5, $oralTotal += 5, $activeSlave.devotion += 4>>
+			<<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
+				<<set $activeSlave.fetishStrength += 4>>
+				@@.lightcoral;$His enjoyment of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>> has increased.@@
+			<<elseif random(1,100) > 50>>
+				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1>>
+				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>>.@@
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if ($activeSlave.fetish != "boobs") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "during nipple play">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. From now on, $he can come to you and offer you $his breasts; $he will be allowed to masturbate while you do. $He nods through $his tears and hurriedly presents $his chest, crying a little with relief as $he feels <<if $activeSlave.nipples != "fuckable">>you nip a nipple with your teeth<<elseif $PC.dick == 1>>your dick slip into a nipple<<else>>your tongue penetrate into $his nipple<</if>>. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
-	<<set $activeSlave.counter.mammary += 5, $mammaryTotal += 5, $activeSlave.devotion += 4>>
-	<<if ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of breast play has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "boobs", $activeSlave.fetishKnown = 1>>
-		Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at every brush against $his breasts.@@
-	<</if>>
-	<</replace>>
-<</link>>
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "during nipple play">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. From now on, $he can come to you and offer you $his breasts; $he will be allowed to masturbate while you do. $He nods through $his tears and hurriedly presents $his chest, crying a little with relief as $he feels <<if $activeSlave.nipples != "fuckable">>you nip a nipple with your teeth<<elseif $PC.dick == 1>>your dick slip into a nipple<<else>>your tongue penetrate into $his nipple<</if>>. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
+			<<set $activeSlave.counter.mammary += 5, $mammaryTotal += 5, $activeSlave.devotion += 4>>
+			<<if ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
+				<<set $activeSlave.fetishStrength += 4>>
+				@@.lightcoral;$His enjoyment of breast play has increased.@@
+			<<elseif random(1,100) > 50>>
+				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "boobs", $activeSlave.fetishKnown = 1>>
+				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at every brush against $his breasts.@@
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if (($activeSlave.fetish != "pregnancy") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)) && canDoVaginal($activeSlave)>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "during insemination play">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.vagina > 3)>>hopelessly gaped pussy<<elseif ($activeSlave.vagina > 2)>>loose pussy<<elseif ($activeSlave.vagina > 1)>>nice pussy<<else>>tight pussy<</if>>; $he will be allowed to masturbate while you fill $him with cum. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a spurting strap-on<<else>>your cock<</if>> into $his spasming cunt. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
-	<<= VaginalVCheck(5)>>
-	<<set $activeSlave.devotion += 4>>
-	<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of pregnancy play has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1>>
-		Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of getting pregnant.@@
-	<</if>>
-	<</replace>>
-<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "during insemination play">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.vagina > 3)>>hopelessly gaped pussy<<elseif ($activeSlave.vagina > 2)>>loose pussy<<elseif ($activeSlave.vagina > 1)>>nice pussy<<else>>tight pussy<</if>>; $he will be allowed to masturbate while you fill $him with cum. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a spurting strap-on<<else>>your cock<</if>> into $his spasming cunt. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
+			<<= VaginalVCheck(5)>>
+			<<set $activeSlave.devotion += 4>>
+			<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
+				<<set $activeSlave.fetishStrength += 4>>
+				@@.lightcoral;$His enjoyment of pregnancy play has increased.@@
+			<<elseif random(1,100) > 50>>
+				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1>>
+				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of getting pregnant.@@
+			<</if>>
+		<</replace>>
+	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
 <</if>>
 <<if ($activeSlave.fetish != "buttslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
-<<if canDoAnal($activeSlave)>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while $he takes it up the ass">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate while you buttfuck $him. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his spasming rectum. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
-	<<= AnalVCheck(5)>>
-	<<set $activeSlave.devotion += 4>>
-	<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of anal has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1>>
-		Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of anal sex.@@
+	<<if canDoAnal($activeSlave)>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while $he takes it up the ass">>
+			<<EventNameDelink $activeSlave>>
+			<<replace "#result">>
+				You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate while you buttfuck $him. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his spasming rectum. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
+				<<= AnalVCheck(5)>>
+				<<set $activeSlave.devotion += 4>>
+				<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
+					<<set $activeSlave.fetishStrength += 4>>
+					@@.lightcoral;$His enjoyment of anal has increased.@@
+				<<elseif random(1,100) > 50>>
+					<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1>>
+					Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of anal sex.@@
+				<</if>>
+			<</replace>>
+		<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 	<</if>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
-<</if>>
 <</if>>
 <<if ($activeSlave.fetish != "humiliation") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "in public">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can masturbate in public, sitting with $his legs spread for as much exposure as possible. $He nods through $his tears and sprints out of your office, dripping as $he goes. $He throws $himself to the ground outside, to the considerable amusement of passersby, spreading $his legs painfully wide. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
-	<<set $activeSlave.devotion += 4>>
-	<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of humiliation has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1>>
-		Before $he realizes what's happening, @@.lightcoral;$he's starting to long for humiliation.@@
-	<</if>>
-	<</replace>>
-<</link>>
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "in public">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can masturbate in public, sitting with $his legs spread for as much exposure as possible. $He nods through $his tears and sprints out of your office, dripping as $he goes. $He throws $himself to the ground outside, to the considerable amusement of passersby, spreading $his legs painfully wide. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
+			<<set $activeSlave.devotion += 4>>
+			<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
+				<<set $activeSlave.fetishStrength += 4>>
+				@@.lightcoral;$His enjoyment of humiliation has increased.@@
+			<<elseif random(1,100) > 50>>
+				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1>>
+				Before $he realizes what's happening, @@.lightcoral;$he's starting to long for humiliation.@@
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if ($activeSlave.fetish != "submissive") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "after submitting to you">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules.
-	<<if canDoVaginal($activeSlave)>>
-		For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.vagina > 3)>>hopelessly loose pussy<<elseif ($activeSlave.vagina > 2)>>big slit of a pussy<<elseif ($activeSlave.vagina > 1)>>nice pussy<<else>>tight pussy<</if>>; $he will be allowed to masturbate after, but only after, you are finished with $him. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his nether lips apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his spasming vagina. You are not gentle, and despite the stimulation $he does not orgasm by the time you <<if $PC.dick == 0>>climax to the vibrations of the strap-on, and the pleasure of buttfucking a bitch<<else>>blow your load in $his ass<</if>>. $He's so eager to get off $he doesn't bother to move, and just
-		<<if $activeSlave.belly >= 1500>>
-			snakes a hand down to fondle $himself.
-		<<else>>
-			rolls onto $his face to hump $himself against $his hand, against the desk.
-		<</if>>
-		<<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina == 1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>Your cum leaks out of $his used cunt and onto $his working hand<</if>>; $his acceptance of sexual slavery @@.hotpink;has increased.@@
-		<<= VaginalVCheck(5)>>
-	<<elseif canDoAnal($activeSlave)>>
-		For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate after, but only after, you are finished with $him. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his spasming rectum. You are not gentle, and despite the anal stimulation $he does not orgasm by the time you <<if $PC.dick == 0>>climax to the vibrations of the strap-on, and the pleasure of buttfucking a bitch<<else>>blow your load in $his ass<</if>>. $He's so eager to get off $he doesn't bother to move, and just
-		<<if $activeSlave.belly >= 1500>>
-			snakes a hand down to fondle $himself.
-		<<else>>
-			rolls onto $his face to hump $himself against $his hand, against the desk.
-		<</if>>
-		<<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina == 1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>Your cum leaks out of $his used backdoor and onto $his working hand<</if>>; $his acceptance of sexual slavery @@.hotpink;has increased.@@
-		<<= AnalVCheck(5)>>
-	<<else>>
-		For the rest of the week, $he can come to you and politely ask to <<if $PC.dick == 1>>suck you off<<else>>eat you out<</if>>; $he will be allowed to masturbate after, but only after, you are satisfied. $He nods through $his tears and
-		<<if $activeSlave.belly >= 300000>>
-			leans over $his _belly stomach,
-		<<else>>
-			<<if $activeSlave.belly >= 10000>>
-				struggles
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "after submitting to you">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules.
+			<<if canDoVaginal($activeSlave)>>
+				For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.vagina > 3)>>hopelessly loose pussy<<elseif ($activeSlave.vagina > 2)>>big slit of a pussy<<elseif ($activeSlave.vagina > 1)>>nice pussy<<else>>tight pussy<</if>>; $he will be allowed to masturbate after, but only after, you are finished with $him. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his nether lips apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his spasming vagina. You are not gentle, and despite the stimulation $he does not orgasm by the time you <<if $PC.dick == 0>>climax to the vibrations of the strap-on, and the pleasure of buttfucking a bitch<<else>>blow your load in $his ass<</if>>. $He's so eager to get off $he doesn't bother to move, and just
+				<<if $activeSlave.belly >= 1500>>
+					snakes a hand down to fondle $himself.
+				<<else>>
+					rolls onto $his face to hump $himself against $his hand, against the desk.
+				<</if>>
+				<<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina == 1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>Your cum leaks out of $his used cunt and onto $his working hand<</if>>; $his acceptance of sexual slavery @@.hotpink;has increased.@@
+				<<= VaginalVCheck(5)>>
+			<<elseif canDoAnal($activeSlave)>>
+				For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate after, but only after, you are finished with $him. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his spasming rectum. You are not gentle, and despite the anal stimulation $he does not orgasm by the time you <<if $PC.dick == 0>>climax to the vibrations of the strap-on, and the pleasure of buttfucking a bitch<<else>>blow your load in $his ass<</if>>. $He's so eager to get off $he doesn't bother to move, and just
+				<<if $activeSlave.belly >= 1500>>
+					snakes a hand down to fondle $himself.
+				<<else>>
+					rolls onto $his face to hump $himself against $his hand, against the desk.
+				<</if>>
+				<<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina == 1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>Your cum leaks out of $his used backdoor and onto $his working hand<</if>>; $his acceptance of sexual slavery @@.hotpink;has increased.@@
+				<<= AnalVCheck(5)>>
 			<<else>>
-				hurriedly gets
+				For the rest of the week, $he can come to you and politely ask to <<if $PC.dick == 1>>suck you off<<else>>eat you out<</if>>; $he will be allowed to masturbate after, but only after, you are satisfied. $He nods through $his tears and
+				<<if $activeSlave.belly >= 300000>>
+					leans over $his _belly stomach,
+				<<else>>
+					<<if $activeSlave.belly >= 10000>>
+						struggles
+					<<else>>
+						hurriedly gets
+					<</if>>
+					to $his knees,
+				<</if>>
+				where $he brings $his face to your <<if $PC.dick == 1>>erect cock<<else>>moist pussy<</if>> and $his hand to $his crotch. $He starts crying a little with relief as $he feels you slowly <<if $PC.dick == 0>>push your slit against<<else>>insert your cock into<</if>> $his mouth. You are not gentle, and by the time you <<if $PC.dick == 1>>blow your load down $his throat<<else>>splash $his face with your girlcum<</if>>, $he still hasn't reached $his climax. $He's so eager to get off $he doesn't bother to move, and just humps $himself against $his hand, against
+				<<if $activeSlave.belly >= 300000>>
+					$his belly.
+				<<else>>
+					your leg.
+				<</if>>
+				<<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina == 1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>After the momentary pause of your climax, you pull $his face back to your crotch for a second round<</if>>; $his acceptance of sexual slavery @@.hotpink;has increased.@@
+				<<set $activeSlave.counter.oral += 5, $oralTotal += 5>>
 			<</if>>
-			to $his knees,
-		<</if>>
-		where $he brings $his face to your <<if $PC.dick == 1>>erect cock<<else>>moist pussy<</if>> and $his hand to $his crotch. $He starts crying a little with relief as $he feels you slowly <<if $PC.dick == 0>>push your slit against<<else>>insert your cock into<</if>> $his mouth. You are not gentle, and by the time you <<if $PC.dick == 1>>blow your load down $his throat<<else>>splash $his face with your girlcum<</if>>, $he still hasn't reached $his climax. $He's so eager to get off $he doesn't bother to move, and just humps $himself against $his hand, against
-		<<if $activeSlave.belly >= 300000>>
-			$his belly.
-		<<else>>
-			your leg.
-		<</if>>
-		<<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina == 1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>After the momentary pause of your climax, you pull $his face back to your crotch for a second round<</if>>; $his acceptance of sexual slavery @@.hotpink;has increased.@@
-		<<set $activeSlave.counter.oral += 5, $oralTotal += 5>>
-	<</if>>
-	<<set $activeSlave.devotion += 4>>
-	<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of submission has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1>>
-		Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of submission.@@
-	<</if>>
-	<</replace>>
-<</link>><<if (canDoVaginal($activeSlave) && $activeSlave.vagina == 0) || (canDoAnal($activeSlave) && $activeSlave.anus == 0)>> //This option may take $his virginity//<</if>>
+			<<set $activeSlave.devotion += 4>>
+			<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
+				<<set $activeSlave.fetishStrength += 4>>
+				@@.lightcoral;$His enjoyment of submission has increased.@@
+			<<elseif random(1,100) > 50>>
+				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1>>
+				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of submission.@@
+			<</if>>
+		<</replace>>
+	<</link>><<if (canDoVaginal($activeSlave) && $activeSlave.vagina == 0) || (canDoAnal($activeSlave) && $activeSlave.anus == 0)>> //This option may take $his virginity//<</if>>
 <</if>>
 <<if ($activeSlave.fetish != "masochist") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while in pain">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and masturbate: but you will abuse $him while $he does. $He starts to cry in fear, but <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk anyway. You swat $his thighs apart so $he can get a hand down there. $He hesitates desperately before touching $himself, knowing that as soon as $he does the pain will start, but $his horniness wins out. You aim a vicious flick at $his <<if ($activeSlave.nipples == "huge")>>absurd nipples<<elseif ($activeSlave.nipples != "tiny")>>big nipples<<else>>nipples<</if>> and then take a crop out of your desk, flogging $his <<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>fake<<elseif ($activeSlave.boobs > 1000)>>jiggling<<else>>firm<</if>> breasts without mercy. $He finally orgasms and flees, falling over $his own feet in $his desperation; $his acceptance of sexual slavery @@.hotpink;has increased.@@
-	<<set $activeSlave.devotion += 4>>
-	<<if ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of pain has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "masochist", $activeSlave.fetishKnown = 1>>
-		Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of $his <<= WrittenMaster()>> beating $him.@@
-	<</if>>
-	<</replace>>
-<</link>>
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while in pain">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and masturbate: but you will abuse $him while $he does. $He starts to cry in fear, but <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk anyway. You swat $his thighs apart so $he can get a hand down there. $He hesitates desperately before touching $himself, knowing that as soon as $he does the pain will start, but $his horniness wins out. You aim a vicious flick at $his <<if ($activeSlave.nipples == "huge")>>absurd nipples<<elseif ($activeSlave.nipples != "tiny")>>big nipples<<else>>nipples<</if>> and then take a crop out of your desk, flogging $his <<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>fake<<elseif ($activeSlave.boobs > 1000)>>jiggling<<else>>firm<</if>> breasts without mercy. $He finally orgasms and flees, falling over $his own feet in $his desperation; $his acceptance of sexual slavery @@.hotpink;has increased.@@
+			<<set $activeSlave.devotion += 4>>
+			<<if ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
+				<<set $activeSlave.fetishStrength += 4>>
+				@@.lightcoral;$His enjoyment of pain has increased.@@
+			<<elseif random(1,100) > 50>>
+				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "masochist", $activeSlave.fetishKnown = 1>>
+				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of $his <<= WrittenMaster()>> beating $him.@@
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "milkgasm">>
@@ -11584,104 +11588,104 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Have some fun with $him once $he's using the milkers">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$activeSlave.slaveName is face-down on a special bench much like one used for massages<<if $activeSlave.belly >= 1500>>, though with a hole for $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> to fit into<</if>>, with $his breasts hanging down so the milkers can work away at $his nipples. As such, $his back and ass are on display as $he grunts and groans with relief. $He starts at your hand on $his back but <<if $activeSlave.devotion > 20>>quickly<<else>>slowly<</if>> relaxes.
-	<<if canDoVaginal($activeSlave)>>
-		The stimulation of the milking has $his soaking wet, and $he whimpers with pleasure as you enter $his sopping pussy. $He's so wet that $his plentiful vaginal secretions make it
-		<<if canDoAnal($activeSlave)>>
-			very easy for you to switch <<if $PC.dick == 0>>your strap-on<<else>>your dick<</if>> to the cow's butt.
-			<<= BothVCheck()>>
+		$activeSlave.slaveName is face-down on a special bench much like one used for massages<<if $activeSlave.belly >= 1500>>, though with a hole for $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> to fit into<</if>>, with $his breasts hanging down so the milkers can work away at $his nipples. As such, $his back and ass are on display as $he grunts and groans with relief. $He starts at your hand on $his back but <<if $activeSlave.devotion > 20>>quickly<<else>>slowly<</if>> relaxes.
+		<<if canDoVaginal($activeSlave)>>
+			The stimulation of the milking has $his soaking wet, and $he whimpers with pleasure as you enter $his sopping pussy. $He's so wet that $his plentiful vaginal secretions make it
+			<<if canDoAnal($activeSlave)>>
+				very easy for you to switch <<if $PC.dick == 0>>your strap-on<<else>>your dick<</if>> to the cow's butt.
+				<<= BothVCheck()>>
+			<<else>>
+				clear that $he needs a second round.
+				<<= VaginalVCheck(2)>>
+			<</if>>
+		<<elseif ($activeSlave.chastityVagina)>>
+			This milk cow's vagina is protected by a chastity belt, but $his butthole isn't. You fuck it<<if $PC.dick == 0>> with a strap-on<</if>> instead as $he bucks and grinds against the chair.
+			<<= AnalVCheck()>>
 		<<else>>
-			clear that $he needs a second round.
-			<<= VaginalVCheck(2)>>
+			Perversely, this milk cow has no pussy, so you spit on $his ass and sodomize $his<<if $PC.dick == 0>> with a strap-on<</if>> instead as $he bucks and grinds against the chair.
+			<<= AnalVCheck()>>
 		<</if>>
-	<<elseif ($activeSlave.chastityVagina)>>
-		This milk cow's vagina is protected by a chastity belt, but $his butthole isn't. You fuck it<<if $PC.dick == 0>> with a strap-on<</if>> instead as $he bucks and grinds against the chair.
-		<<= AnalVCheck()>>
-	<<else>>
-		Perversely, this milk cow has no pussy, so you spit on $his ass and sodomize $his<<if $PC.dick == 0>> with a strap-on<</if>> instead as $he bucks and grinds against the chair.
-		<<= AnalVCheck()>>
-	<</if>>
-	When $he comes, the milkers detect $his orgasm to your fucking and shunt the milk into different reservoirs. Though you've never been able to taste much difference, there's a belief out there that 'milk-cum', the squirts of milk a slave milk $girl produces when climaxing with $his <<= WrittenMaster()>>, have special aphrodisiac powers. @@.yellowgreen;It can be sold at a special premium.@@ Naturally, @@.hotpink;$his devotion to you has also increased.@@
+		When $he comes, the milkers detect $his orgasm to your fucking and shunt the milk into different reservoirs. Though you've never been able to taste much difference, there's a belief out there that 'milk-cum', the squirts of milk a slave milk $girl produces when climaxing with $his <<= WrittenMaster()>>, have special aphrodisiac powers. @@.yellowgreen;It can be sold at a special premium.@@ Naturally, @@.hotpink;$his devotion to you has also increased.@@
 	<</replace>>
 	<<run cashX(100, "event", $activeSlave)>>
 	<<set $activeSlave.devotion += 4>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <br><<link "Delay $his milking and then fuck $him in public">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$activeSlave.slaveName obeys <<if $activeSlave.devotion > 20>>without hesitation<<else>>hesitantly<</if>> when you order $him to kneel next to your desk the next time $he tries to go to the milkers. $His equanimity is severely tested over the next hours as you ignore $him. The occasional glance at $him shows $him growing increasingly frantic as $his breasts grow heavier and $his nipples <<if $activeSlave.nipples != "fuckable">>get prouder<<else>>begin to prolapse<</if>>. <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>Soon, $his child's kicking is forcing milk out of $his swollen breasts.<</if>> Eventually, the slight rising and falling of $his ribcage as $he inhales and exhales induces enough motion in $his overfull breasts that milk spurts out of $him with each breath. Satisfied that $he's ready, you<<if $PC.dick == 0>> don a strap-on and<</if>> lead the whimpering, dripping slave out to a public street. Here, you hold $him upright so you can fuck $him standing. When $he finally comes through the pain of $his overfull udders, you reach forward and squeeze $him so that $he screams in pain and relief, spraying jets of milk. $He continually aftershock orgasms as you continue pounding. You offer $his breasts to the growing crowd, many of whom come forward to taste $his cream.
-	<<if !canDoVaginal($activeSlave)>>
-		You fuck $his butt until they've sucked $him empty.
-		<<= AnalVCheck()>>
-	<<else>>
-		<<if !canDoAnal($activeSlave)>>
-			You fuck $his pussy until they've sucked $him empty.
-			<<= VaginalVCheck()>>
+		$activeSlave.slaveName obeys <<if $activeSlave.devotion > 20>>without hesitation<<else>>hesitantly<</if>> when you order $him to kneel next to your desk the next time $he tries to go to the milkers. $His equanimity is severely tested over the next hours as you ignore $him. The occasional glance at $him shows $him growing increasingly frantic as $his breasts grow heavier and $his nipples <<if $activeSlave.nipples != "fuckable">>get prouder<<else>>begin to prolapse<</if>>. <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>Soon, $his child<<if $activeSlave.pregType > 1>>ren<</if>>'s kicking is forcing milk out of $his swollen breasts.<</if>> Eventually, the slight rising and falling of $his ribcage as $he inhales and exhales induces enough motion in $his overfull breasts that milk spurts out of $him with each breath. Satisfied that $he's ready, you<<if $PC.dick == 0>> don a strap-on and<</if>> lead the whimpering, dripping slave out to a public street. Here, you hold $him upright so you can fuck $him standing. When $he finally comes through the pain of $his overfull udders, you reach forward and squeeze $him so that $he screams in pain and relief, spraying jets of milk. $He continually aftershock orgasms as you continue pounding. You offer $his breasts to the growing crowd, many of whom come forward to taste $his cream.
+		<<if !canDoVaginal($activeSlave)>>
+			You fuck $his butt until they've sucked $him empty.
+			<<= AnalVCheck()>>
 		<<else>>
-			You fuck $his pussy and ass, one after the other, until they've sucked $him empty.
-			<<= BothVCheck()>>
+			<<if !canDoAnal($activeSlave)>>
+				You fuck $his pussy until they've sucked $him empty.
+				<<= VaginalVCheck()>>
+			<<else>>
+				You fuck $his pussy and ass, one after the other, until they've sucked $him empty.
+				<<= BothVCheck()>>
+			<</if>>
 		<</if>>
-	<</if>>
-	@@.hotpink;$His submission to you has increased@@ and the @@.green;public certainly appreciated the service.@@
-	<<set $activeSlave.devotion += 4>>
-	<<run repX(500, "event", $activeSlave)>>
+		@@.hotpink;$His submission to you has increased@@ and the @@.green;public certainly appreciated the service.@@
+		<<set $activeSlave.devotion += 4>>
+		<<run repX(500, "event", $activeSlave)>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <<if ($activeSlave.nipples == "inverted") || ($activeSlave.nipples == "partially inverted") || $activeSlave.nipples == "fuckable">>
-<br><<link "Delay $his milking and torture $him with the pressure">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$activeSlave.slaveName obeys <<if $activeSlave.devotion > 20>>without hesitation<<else>>hesitantly<</if>> when you order $him to kneel next to your desk the next time $he tries to go to the milkers. $His devotion is severely tested over the next hours as you ignore $him. The occasional glance at $him shows $him growing increasingly frantic as $his breasts grow heavier and $his inverted nipples, which prevent any release of pressure without the strong suction of the milkers<<if $activeSlave.nipples != "fuckable">> to protrude them<</if>>, grow more tender. Eventually, $he loses all composure and begins to beg you abjectly to give $his relief. Your cruel smile at the kneeling $girl with tears streaming down $his $activeSlave.skin cheeks fills $him with @@.gold;anticipatory horror.@@ You tell $him to get on all fours like the <<if $activeSlave.pregKnown == 1>>pregnant<</if>> cow $he is.
-	<<if $activeSlave.belly >= 750000>>
-		$He is so horribly <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>bloated<</if>> that it is a struggle just to shift onto $his _belly stomach in the hope that $he can even reach the floor with all four limbs. Even worse, $his efforts are absolutely agonizing to $his engorged breasts; when $he finally does get onto the mass that is $his middle, the sudden shift of $his breasts causes $him to shriek with pain.
-	<<elseif $activeSlave.belly >= 300000>>
-		$He has to crawl onto $his _belly stomach to even get all four limbs on the ground. The drastic shifting of $his breasts is agonizing and $he shrieks in spite of $himself.
-	<<elseif $activeSlave.belly >= 100000>>
-		$He slowly does, $his _belly stomach coming to rest on the floor beneath $him, but the simple movement is agonizing and seems to last forever causing $him to shriek in spite of $himself.
-	<<elseif $activeSlave.belly >= 10000>>
-		$He gingerly does, taking care to give $his _belly stomach room, but the simple movement is agonizing and seems to last forever causing $him to shriek in spite of $himself.
-	<<else>>
-		$He does, but the simple movement is agonizing and $he shrieks in spite of $himself.
-	<</if>>
-	You slide <<if $PC.dick == 1>>your turgid cock<<else>>a big strap-on<</if>> into $him and seize $him by $his
-	<<if $activeSlave.weight > 160>>
-		extremely well padded
-	<<elseif $activeSlave.weight > 95>>
-		well padded
-	<<elseif $activeSlave.weight > 30>>
-		chubby
-	<<elseif ($activeSlave.muscles > 30)>>
-		muscular
-	<<elseif ($activeSlave.weight > 10)>>
-		plush
-	<<elseif $activeSlave.weight >= -30>>
-		trim
-	<<else>>
-		skinny
-	<</if>>
-	hips. $He knows what's coming and tries to ready $himself, but as you begin to pound $him without mercy, the motion of $his breasts forces a huge sobbing scream out of $him.
-	"Plea<<s>>e, <<Master>>! AAAH! It hurt<<s>>! It AAAH hurt<<s>> <<s>>-<<s>>o b-baAAAH!"
-	It hurts so badly, in fact, that $he doesn't seem to notice what you're doing to $his lower half, other than the motion it produces in $his upper half. Amused by the realization,
-	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-		you pull your <<if $PC.dick == 1>>dick<<else>>phallus<</if>> out of $him and shove it up $his butthole without warning.
-	<<else>>
-		you insert a couple of fingers alongside your <<if $PC.dick == 1>>dick<<else>>phallus<</if>>.
-	<</if>>
-	$He just goes on screaming about how much $his boobs hurt. Eventually, you tire of $his bellowing, so you reach around and pop <<if $activeSlave.nipples != "fuckable">>$his nipples out one by one<<else>>finger into each nipple<</if>>. The shrieking reaches a paroxysm, but once they're <<if $activeSlave.nipples != "fuckable">>protruded<<else>>opened<</if>>, the milk begins to jet out of $him in a pair of uninterrupted streams. $He collapses forward onto $his face, crying with relief as the pain in $his breasts recedes. As it does, $he finally begins to notice
-	<<if canDoAnal($activeSlave)>>
-		the pain in $his backdoor as you continue to abuse it<<if $activeSlave.anus == 0>><<set $activeSlave.anus++>>, and that $he is @@.lime;no longer an anal virgin@@<</if>>.
-		<<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>>
-			<<set $activeSlave.vagina++>>
-			$He'll eventually realize that $his @@.lime;virginity was taken@@ while $he was distracted by $his breasts.
-		<</if>>
-		<<= BothVCheck()>>
-	<<else>>
-		the pain in $his cunt as you continue to abuse it<<if $activeSlave.anus == 0>><<set $activeSlave.anus++>>, and that $he is @@.lime;no longer a virgin@@<</if>>.
-		<<= VaginalVCheck()>>
-	<</if>>
-	<<set $activeSlave.trust -= 4>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+	<br><<link "Delay $his milking and torture $him with the pressure">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$activeSlave.slaveName obeys <<if $activeSlave.devotion > 20>>without hesitation<<else>>hesitantly<</if>> when you order $him to kneel next to your desk the next time $he tries to go to the milkers. $His devotion is severely tested over the next hours as you ignore $him. The occasional glance at $him shows $him growing increasingly frantic as $his breasts grow heavier and $his inverted nipples, which prevent any release of pressure without the strong suction of the milkers<<if $activeSlave.nipples != "fuckable">> to protrude them<</if>>, grow more tender. Eventually, $he loses all composure and begins to beg you abjectly to give $his relief. Your cruel smile at the kneeling $girl with tears streaming down $his $activeSlave.skin cheeks fills $him with @@.gold;anticipatory horror.@@ You tell $him to get on all fours like the <<if $activeSlave.pregKnown == 1>>pregnant<</if>> cow $he is.
+			<<if $activeSlave.belly >= 750000>>
+				$He is so horribly <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>bloated<</if>> that it is a struggle just to shift onto $his _belly stomach in the hope that $he can even reach the floor with all four limbs. Even worse, $his efforts are absolutely agonizing to $his engorged breasts; when $he finally does get onto the mass that is $his middle, the sudden shift of $his breasts causes $him to shriek with pain.
+			<<elseif $activeSlave.belly >= 300000>>
+				$He has to crawl onto $his _belly stomach to even get all four limbs on the ground. The drastic shifting of $his breasts is agonizing and $he shrieks in spite of $himself.
+			<<elseif $activeSlave.belly >= 100000>>
+				$He slowly does, $his _belly stomach coming to rest on the floor beneath $him, but the simple movement is agonizing and seems to last forever causing $him to shriek in spite of $himself.
+			<<elseif $activeSlave.belly >= 10000>>
+				$He gingerly does, taking care to give $his _belly stomach room, but the simple movement is agonizing and seems to last forever causing $him to shriek in spite of $himself.
+			<<else>>
+				$He does, but the simple movement is agonizing and $he shrieks in spite of $himself.
+			<</if>>
+			You slide <<if $PC.dick == 1>>your turgid cock<<else>>a big strap-on<</if>> into $him and seize $him by $his
+			<<if $activeSlave.weight > 160>>
+				extremely well padded
+			<<elseif $activeSlave.weight > 95>>
+				well padded
+			<<elseif $activeSlave.weight > 30>>
+				chubby
+			<<elseif ($activeSlave.muscles > 30)>>
+				muscular
+			<<elseif ($activeSlave.weight > 10)>>
+				plush
+			<<elseif $activeSlave.weight >= -30>>
+				trim
+			<<else>>
+				skinny
+			<</if>>
+			hips. $He knows what's coming and tries to ready $himself, but as you begin to pound $him without mercy, the motion of $his breasts forces a huge sobbing scream out of $him.
+			"Plea<<s>>e, <<Master>>! AAAH! It hurt<<s>>! It AAAH hurt<<s>> <<s>>-<<s>>o b-baAAAH!"
+			It hurts so badly, in fact, that $he doesn't seem to notice what you're doing to $his lower half, other than the motion it produces in $his upper half. Amused by the realization,
+			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+				you pull your <<if $PC.dick == 1>>dick<<else>>phallus<</if>> out of $him and shove it up $his butthole without warning.
+			<<else>>
+				you insert a couple of fingers alongside your <<if $PC.dick == 1>>dick<<else>>phallus<</if>>.
+			<</if>>
+			$He just goes on screaming about how much $his boobs hurt. Eventually, you tire of $his bellowing, so you reach around and pop <<if $activeSlave.nipples != "fuckable">>$his nipples out one by one<<else>>finger into each nipple<</if>>. The shrieking reaches a paroxysm, but once they're <<if $activeSlave.nipples != "fuckable">>protruded<<else>>opened<</if>>, the milk begins to jet out of $him in a pair of uninterrupted streams. $He collapses forward onto $his face, crying with relief as the pain in $his breasts recedes. As it does, $he finally begins to notice
+			<<if canDoAnal($activeSlave)>>
+				the pain in $his backdoor as you continue to abuse it<<if $activeSlave.anus == 0>><<set $activeSlave.anus++>>, and that $he is @@.lime;no longer an anal virgin@@<</if>>.
+				<<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>>
+					<<set $activeSlave.vagina++>>
+					$He'll eventually realize that $his @@.lime;virginity was taken@@ while $he was distracted by $his breasts.
+				<</if>>
+				<<= BothVCheck()>>
+			<<else>>
+				the pain in $his cunt as you continue to abuse it<<if $activeSlave.anus == 0>><<set $activeSlave.anus++>>, and that $he is @@.lime;no longer a virgin@@<</if>>.
+				<<= VaginalVCheck()>>
+			<</if>>
+			<<set $activeSlave.trust -= 4>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 
 <<case "whore rebellious">>
@@ -11689,7 +11693,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Increase $his assignment to 24 hours a day">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You give $activeSlave.slaveName no indication that $his public use assignment is about to change. Late in the day, when $his shift would normally end, another of your slaves simply maintains $him as usual and then leaves $him be. $activeSlave.slaveName is so deprived of any way to tell time that $he doesn't realize $he's been left for some time. The first indication $he gets that something's different is when liquid food is squirted down $his throat the next morning. When $he's finally stripped out of the suit at the end of the week, $he's pale and wan and $his holes are puffy and red. @@.red;$His health was damaged.@@ However, $his permanent presence became quite noted. @@.green;Your reputation has increased.@@ And when $he's out of the suit, $he instantly begs you to allow $him to do anything to save $himself from more of that. @@.gold;$His fear of you has increased.@@
+		You give $activeSlave.slaveName no indication that $his public use assignment is about to change. Late in the day, when $his shift would normally end, another of your slaves simply maintains $him as usual and then leaves $him be. $activeSlave.slaveName is so deprived of any way to tell time that $he doesn't realize $he's been left for some time. The first indication $he gets that something's different is when liquid food is squirted down $his throat the next morning. When $he's finally stripped out of the suit at the end of the week, $he's pale and wan and $his holes are puffy and red. @@.red;$His health was damaged.@@ However, $his permanent presence became quite noted. @@.green;Your reputation has increased.@@ And when $he's out of the suit, $he instantly begs you to allow $him to do anything to save $himself from more of that. @@.gold;$His fear of you has increased.@@
 	<</replace>>
 	<<run repX(500, "event", $activeSlave)>>
 	<<set $activeSlave.trust -= 10, $activeSlave.health -= 10, $activeSlave.counter.publicUse += 30>>
@@ -11721,11 +11725,11 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 		$His patrons, however, enjoyed claiming @@.lime;$his anal cherry.@@
 		<<set $activeSlave.anus++>>
 	<</if>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <br><<link "Take the first and last every day">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	When $activeSlave.slaveName feels a cock entering $his mouth right after $he's suited up, $he knows it's you and wriggles as best $he can in the suit. It doesn't help much, and $his struggles don't prevent you from moving from $his mouth to $his ass, either. At the end of the day, on the other hand, the female-shaped latex form is completely still and quiescent as you <<if $PC.dick == 0>>use a couple of fingers to brutally molest<<else>>molest<</if>> each of its holes. It takes viciously hard anal penetration to elicit any response at all, and even then, it's just the slightest hint of a moan. @@.gold;$His fear of you has increased.@@
+		When $activeSlave.slaveName feels a cock entering $his mouth right after $he's suited up, $he knows it's you and wriggles as best $he can in the suit. It doesn't help much, and $his struggles don't prevent you from moving from $his mouth to $his ass, either. At the end of the day, on the other hand, the female-shaped latex form is completely still and quiescent as you <<if $PC.dick == 0>>use a couple of fingers to brutally molest<<else>>molest<</if>> each of its holes. It takes viciously hard anal penetration to elicit any response at all, and even then, it's just the slightest hint of a moan. @@.gold;$His fear of you has increased.@@
 	<</replace>>
 	<<set $activeSlave.trust -= 5, $activeSlave.counter.publicUse += 18>>
 	<<if canDoVaginal($activeSlave)>>
@@ -11765,392 +11769,393 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 		You made sure to claim @@.lime;$his anal cherry@@ before anyone else could.
 		<<set $activeSlave.anus++>>
 	<</if>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <<if $arcade > 0>>
-<br><<link "Sentence $him to a month in the arcade">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate.
-	<<if ($activeSlave.muscles > 30)>>
-		$His powerful form has to be sedated for immurement in the arcade.
-	<<elseif ($activeSlave.weight >= 190)>>
-		$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
-	<<elseif $activeSlave.belly >= 120000>>
-		$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
-	<<elseif ($activeSlave.weight >= -10)>>
-		$His desperate struggles make immuring $him in the arcade difficult.
-	<<elseif $activeSlave.belly >= 1500>>
-		$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
-	<<elseif $activeSlave.muscles < -15>>
-		$His weak body makes immuring $him in the arcade pathetically easy.
-	<<else>>
-		$His thin form makes immuring $him in the arcade pathetically easy.
-	<</if>>
-	After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his butt as $he wriggles desperately against $his restraints.
-	<<= assignJob($activeSlave, "be confined in the arcade")>>
-	<<set $activeSlave.sentence = 4>>
-	<</replace>>
-<</link>>
+	<br><<link "Sentence $him to a month in the arcade">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate.
+			<<if ($activeSlave.muscles > 30)>>
+				$His powerful form has to be sedated for immurement in the arcade.
+			<<elseif ($activeSlave.weight >= 190)>>
+				$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
+			<<elseif $activeSlave.belly >= 120000>>
+				$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
+			<<elseif ($activeSlave.weight >= -10)>>
+				$His desperate struggles make immuring $him in the arcade difficult.
+			<<elseif $activeSlave.belly >= 1500>>
+				$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
+			<<elseif $activeSlave.muscles < -15>>
+				$His weak body makes immuring $him in the arcade pathetically easy.
+			<<else>>
+				$His thin form makes immuring $him in the arcade pathetically easy.
+			<</if>>
+			After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his butt as $he wriggles desperately against $his restraints.
+			<<= assignJob($activeSlave, "be confined in the arcade")>>
+			<<set $activeSlave.sentence = 4>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "serve the public devoted">>
 
 <<if canDoAnal($activeSlave)>>
-<<link "Share $his body with the public">>
+	<<link "Share $his body with the public">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			<<if ($activeSlave.amp != 1)>>
+				$activeSlave.slaveName is surprised to find you walking beside $him, but obediently falls in behind you as a proper slave should.
+			<<else>>
+				You scoop $activeSlave.slaveName's limbless form up and carry $him out.
+			<</if>>
+			You take $him to a lovely open balcony and seat yourself on a bench surrounded by the lush greenery and flowing water of $arcologies[0].name's food systems. You pull $his ass down onto your <<if $PC.dick == 0>>strap-on<<else>>rigid cock<</if>> so $he can offer everything else to the public.<<if $PC.vagina == 1>><<if $PC.dick == 1>> They know not to presume to use the pussy located beneath your thrusting cock.<</if>><</if>>
+			<<if canDoVaginal($activeSlave)>>
+				For several hours, citizens come and go, most choosing to fuck $his wet and available pussy. You climax repeatedly from the <<if $PC.dick == 0>>titillating nature of<<else>>extra fullness of $his butt during<</if>> double penetration, and by the time you're finished $he's dripping ejaculate from both $his holes.
+			<<elseif $activeSlave.belly >= 120000>>
+				Since
+				<<if $activeSlave.bellyPreg >= 3000>>
+					$he's so enormously pregnant that $his _belly stomach blocks $his crotch
+				<<else>>
+					$his _belly stomach is so massive that is blocks $his crotch
+				<</if>>
+				and you're wearing $his backdoor around your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, $his mouth is all that's left. $He gives so many blowjobs by the time you're finished that $his face, hair, chest and belly are liberally spattered with cum.
+			<<elseif ($activeSlave.chastityVagina)>>
+				Since $he's wearing a chastity belt and you're wearing $his backdoor around your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, $his mouth is all that's left. $He gives so many blowjobs by the time you're finished that $his face, hair, chest and <<if $activeSlave.belly >= 5000>><<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly<<else>>even stomach<</if>> are liberally spattered with cum.
+			<<else>>
+				With your cock pumping $his butt as much as you can manage with $him seated in your lap, $his <<if $activeSlave.dick != 0>>dick flops up and down<<if $activeSlave.belly >= 5000>> against the bottom of $his rounded stomach<</if>><<else>>tiny front hole begins to glisten with the promise of a messy little orgasm<</if>>, lewdly advertising $his sexual availability. $He gives so many blowjobs by the time you're finished that $his face, hair, chest and <<if $activeSlave.belly >= 5000>><<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly<<else>>even stomach<</if>> are liberally spattered with cum.
+			<</if>>
+			The public is sure to remember this spectacle; @@.green;your reputation has increased.@@
+			<<run repX(500, "event", $activeSlave)>>
+			<<if canDoVaginal($activeSlave)>>
+				<<set $activeSlave.counter.vaginal += 5, $vaginalTotal += 5, $activeSlave.counter.publicUse += 5>>
+				<<if $activeSlave.vagina == 0>>
+					They have also @@.lime;broken in $activeSlave.slaveName's virgin pussy.@@
+					<<set $activeSlave.vagina = 1>>
+				<</if>>
+				<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
+					<<= knockMeUp($activeSlave, 10, 0, -2)>>
+				<</if>>
+			<<else>>
+				<<set $activeSlave.counter.oral += 5, $oralTotal += 5, $activeSlave.counter.publicUse += 5>>
+			<</if>>
+			<<= AnalVCheck(5)>>
+		<</replace>>
+	<</link>>
+<</if>>
+<<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
+	<br><<link "Give $him some aftercare">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$activeSlave.slaveName returns many hours later. $He carefully took breaks for $his own safety <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>,especially so given $his advanced pregnancy<</if>>, and cleaned $himself periodically, so there isn't much evidence, but $he's obviously bone tired. When you meet $him at the entrance to your penthouse $he's surprised to <<if canSee($activeSlave)>>see<<else>>find<</if>> you, but $he gives you a little smile anyway. You give $him a strong massage and put $him to bed. Afterward you turn to be about your business, but $he wordlessly offers $himself to you as you do.
+			<<if canDoVaginal($activeSlave)>>
+				<<if $activeSlave.vagina == 0>>
+					$His virgin pussy is certainly tempting.
+				<<elseif ($activeSlave.vagina == 1)>>
+					$His tight pussy is certainly tempting.
+				<<elseif ($activeSlave.vagina == 2)>>
+					$His soft pussy is certainly tempting.
+				<<elseif ($activeSlave.labia > 0)>>
+					$His generous petals are certainly tempting.
+				<<elseif ($activeSlave.clit > 0)>>
+					$His prominent clit is certainly eye-catching.
+				<<elseif ($activeSlave.vagina == -1)>>
+					$His relaxed anus is certainly inviting.
+				<<else>>
+					$His capacious pussy is certainly inviting.
+				<</if>>
+			<<else>>
+				<<if $activeSlave.anus == 0>>
+					$His virgin asshole is certainly tempting.
+				<<elseif ($activeSlave.anus == 1)>>
+					$His tight asshole is certainly tempting.
+				<<elseif ($activeSlave.anus == 2)>>
+					$His experienced asshole is certainly tempting.
+				<<else>>
+					$His capacious asshole is certainly inviting.
+				<</if>>
+			<</if>>
+			$He's sore, so you spoon $his<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>> body<</if>> gently in bed, fucking $him slowly to sleep.
+			<<if canDoVaginal($activeSlave)>>
+				<<= VaginalVCheck()>>
+			<<else>>
+				<<= AnalVCheck()>>
+			<</if>>
+			$He falls asleep with a serene expression on $his face. @@.mediumaquamarine;$His trust in you has increased.@@
+			<<set $activeSlave.trust += 4>>
+		<</replace>>
+	<</link>>
+<</if>>
+<br><<link "Chat about $his day">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	<<if ($activeSlave.amp != 1)>>
-		$activeSlave.slaveName is surprised to find you walking beside $him, but obediently falls in behind you as a proper slave should.
-	<<else>>
-		You scoop $activeSlave.slaveName's limbless form up and carry $him out.
-	<</if>>
-	You take $him to a lovely open balcony and seat yourself on a bench surrounded by the lush greenery and flowing water of $arcologies[0].name's food systems. You pull $his ass down onto your <<if $PC.dick == 0>>strap-on<<else>>rigid cock<</if>> so $he can offer everything else to the public.<<if $PC.vagina == 1>><<if $PC.dick == 1>> They know not to presume to use the pussy located beneath your thrusting cock.<</if>><</if>>
-	<<if canDoVaginal($activeSlave)>>
-		For several hours, citizens come and go, most choosing to fuck $his wet and available pussy. You climax repeatedly from the <<if $PC.dick == 0>>titillating nature of<<else>>extra fullness of $his butt during<</if>> double penetration, and by the time you're finished $he's dripping ejaculate from both $his holes.
-	<<elseif $activeSlave.belly >= 120000>>
-		Since
-		<<if $activeSlave.bellyPreg >= 3000>>
-			$he's so enormously pregnant that $his _belly stomach blocks $his crotch
+		$activeSlave.slaveName returns many hours later. $He's obviously bone tired. When you meet $him at the entrance to your penthouse $he's surprised to <<if canSee($activeSlave)>>see<<else>>find<</if>> you, but $he gives you a little smile anyway. You bring $him back to your office, and $he's clearly expecting to get fucked, so $he's surprised when you hand $him a hot beverage and sit down on the couch with $him. $He relaxes quickly and chats with you about $his day, gossiping about all the private doings of all the prominent citizens who fucked $his
+		<<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
+			cunt
+		<<elseif ($activeSlave.anus > 0) && canDoAnal($activeSlave)>>
+			asshole
 		<<else>>
-			$his _belly stomach is so massive that is blocks $his crotch
-		<</if>>
-		and you're wearing $his backdoor around your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, $his mouth is all that's left. $He gives so many blowjobs by the time you're finished that $his face, hair, chest and belly are liberally spattered with cum.
-	<<elseif ($activeSlave.chastityVagina)>>
-		Since $he's wearing a chastity belt and you're wearing $his backdoor around your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, $his mouth is all that's left. $He gives so many blowjobs by the time you're finished that $his face, hair, chest and <<if $activeSlave.belly >= 5000>><<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly<<else>>even stomach<</if>> are liberally spattered with cum.
-	<<else>>
-		With your cock pumping $his butt as much as you can manage with $him seated in your lap, $his <<if $activeSlave.dick != 0>>dick flops up and down<<if $activeSlave.belly >= 5000>> against the bottom of $his rounded stomach<</if>><<else>>tiny front hole begins to glisten with the promise of a messy little orgasm<</if>>, lewdly advertising $his sexual availability. $He gives so many blowjobs by the time you're finished that $his face, hair, chest and <<if $activeSlave.belly >= 5000>><<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly<<else>>even stomach<</if>> are liberally spattered with cum.
-	<</if>>
-	The public is sure to remember this spectacle; @@.green;your reputation has increased.@@
-	<<run repX(500, "event", $activeSlave)>>
-	<<if canDoVaginal($activeSlave)>>
-		<<set $activeSlave.counter.vaginal += 5, $vaginalTotal += 5, $activeSlave.counter.publicUse += 5>>
-		<<if $activeSlave.vagina == 0>>
-			They have also @@.lime;broken in $activeSlave.slaveName's virgin pussy.@@
-			<<set $activeSlave.vagina = 1>>
+			mouth
 		<</if>>
-		<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
-			<<= knockMeUp($activeSlave, 10, 0, -2)>>
+		today.
+		<<if ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 50)>>
+			$He's witty and holds up $his end of the conversation without straying from $his role as a slave.
+		<<elseif ($activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15)>>
+			$He has a few juicy items to share, and even gossiping, $he's mindful of $his role as a slave.
+		<<else>>
+			$He may be an idiot, but $his babble is amusing enough.
 		<</if>>
-	<<else>>
-		<<set $activeSlave.counter.oral += 5, $oralTotal += 5, $activeSlave.counter.publicUse += 5>>
-	<</if>>
-	<<= AnalVCheck(5)>>
+		Time flies, and when you finally stand up to continue with your evening, $he thanks you prettily for listening to $him <<if $activeSlave.belly >= 10000>>as you help $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>heavy<</if>> body off the couch<</if>>. @@.hotpink;$His devotion to you has increased.@@
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
+
+<<case "millenary">>
+
+<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
+	<<link "Give $him $his thousandth fuck">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You decide that a slave's thousandth fuck ought to be representative of sexual slavery. So, you<<if $PC.dick == 0>> don a strap-on,<</if>> push $him over
+			<<if $activeSlave.belly >= 300000>>
+				_belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>
+			<<else>>
+				the arm of the couch next to your desk<<if $activeSlave.belly >= 5000>> so that $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> hangs off its edge<</if>>
+			<</if>>
+			and take $his <<if $seeRace == 1>>$activeSlave.race <</if>>
+			<<if !canDoVaginal($activeSlave)>>
+				ass
+			<<else>>
+				pussy
+			<</if>>
+			hard and fast, doggy style. $He's clearly got a lot of experience, so $he takes the pounding well. Before long $he's happily moaning and begging, pushing $himself back into you<<if $PC.vagina == 1>> and using a hand thrust back between $his own legs to stimulate your pussy<</if>>. You thrust deep inside $him. $He thanks you and wishes you a happy millenary. @@.mediumaquamarine;$He has become much more trusting@@ of $his place with you.
+			<<set $activeSlave.trust += 10>>
+			<<if canDoVaginal($activeSlave)>>
+				<<= VaginalVCheck()>>
+			<<else>>
+				<<= AnalVCheck()>>
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
-<<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
-<br><<link "Give $him some aftercare">>
+<<if $slaves.length > 2>>
+	<br><<link "Include everyone in $his millenary">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You decide to celebrate this happy event with everyone. You beckon to the watching slaves<<if $PC.dick == 0>>, while you don a strap-on,<</if>> and they come eagerly or sullenly according to their natures. They troop in. After some thought, you position a slave on the couch next to your desk, $activeSlave.slaveName <<if $activeSlave.amp != 1>>on all fours<<else>>propped up<</if>> in front of $his giving cunnilingus, a third slave<<if $activeSlave.belly >= 5000>>squeezed<</if>> under $activeSlave.slaveName to orally service $him in turn, and yourself behind $activeSlave.slaveName to
+			<<if canDoVaginal($activeSlave)>>
+				take $his <<if $seeRace == 1>>$activeSlave.race <</if>>pussy.
+			<<elseif canDoAnal($activeSlave)>>
+				take $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass.
+			<<else>>
+				enjoy $his <<if $seeRace == 1>>$activeSlave.race <</if>>asscheeks.
+			<</if>>
+			Each slave besides $activeSlave.slaveName gets a suck from $activeSlave.slaveName on the couch and then slides under $him to reciprocate. $He works $his way through all your slaves one by one, with feminine lips and tongues delighting $his
+			<<if $activeSlave.dick != 0 && !($activeSlave.chastityPenis)>>
+				dickhead
+			<<elseif !canDoVaginal($activeSlave)>>
+				soft perineum
+			<<else>>
+				clit
+			<</if>>
+			and your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> gently pumping $his butt the whole time. When $he's done, $he thanks you exhaustedly and begs you to do this for $his next millenary. @@.hotpink;$His love for you has greatly increased.@@
+			<<set $activeSlave.devotion += 10, $activeSlave.counter.oral += ($slaves.length*2), $oralTotal += ($slaves.length*2)>>
+			<<set $slaves.forEach(function(s) { if (s.ID != $activeSlave.ID) { s.counter.oral++; } })>>
+			<<if canDoVaginal($activeSlave)>>
+				<<= VaginalVCheck()>>
+			<<else>>
+				<<= AnalVCheck()>>
+			<</if>>
+		<</replace>>
+	<</link>>
+	<<if canDoAnal($activeSlave) && $activeSlave.counter.anal != 0>>
+		<br><<link "Drive up $his anal count">>
+			<<EventNameDelink $activeSlave>>
+			<<replace "#result">>
+				<<setNonlocalPronouns $seeDicks>>
+				You make a ceremony of querying $assistantName, aloud for everyone to hear, into $activeSlave.slaveName's sexual history. $He soon realizes this is a sort of recitation of $his service for the benefit of the other slaves, and $he stands a little straighter. $His <<if canSee($activeSlave)>><<= App.Desc.eyeColor($activeSlave)>> eyes glitter<<else>>face beams<</if>> with @@.mediumaquamarine;pride@@ as $assistantName finishes, "...and $his anus has been penetrated $activeSlave.counter.anal times." You announce that $activeSlave.counter.anal isn't nearly enough, detail a slave to fetch you a comfortable chair, seat yourself, and draw the compliant $activeSlave.slaveName's head down towards your <<if $PC.dick == 0>>pussy<<else>>cock<</if>>. $He gets eagerly to work, surrounded by a circle of slaves staring at the show. You select a favored _girlU and tell $him to get to work driving that anal count up. $activeSlave.slaveName keeps <<if $PC.dick == 0>>eating you out<<else>>sucking your dick<</if>> as the chosen _girlU pulls $activeSlave.slaveName's hips up a little and
+				<<if $activeSlave.butt > 18>>
+					struggles into $his immense butt.
+				<<elseif $activeSlave.butt > 10>>
+					pushes between $his massive cheeks.
+				<<elseif $activeSlave.butt > 5>>
+					spreads $his big buttocks.
+				<<elseif $activeSlave.weight > 95>>
+					spreads $his fat rear.
+				<<elseif $activeSlave.muscles > 30>>
+					pushes between $his muscular buttocks.
+				<<else>>
+					massages $his butt a little.
+				<</if>>
+				$activeSlave.slaveName snakes a $activeSlave.skin hand down between $his legs to
+				<<if ($activeSlave.chastityPenis == 1)>>
+					tease $his chastity bound dick
+				<<elseif canAchieveErection($activeSlave)>>
+					jack off
+				<<else>>
+					play with $himself as much as $he can manage
+				<</if>>
+				as $his asshole takes its first fuck of the night. You let $him change positions between each slave, and by the end $he's draped limply across the arm of your chair so $he can tiredly <<if $PC.vagina == 1>>nibble your pussylips<<else>>suck on your balls one at a time<</if>> as the last few slaves, taking advantage of $his enormously gaped butt, slide lubricated hands in and out of $his rectum while giggling at the perversion and playing with each other. As the final slave withdraws their hand, $activeSlave.slaveName crawls into your lap and burrows $his face
+				<<if $PC.boobsBonus > 2>>
+					between your enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts
+				<<elseif $PC.boobsBonus == 2>>
+					between your huge<<if $PC.boobsImplant == 1>> fake<</if>> breasts
+				<<elseif $PC.boobsBonus == 1>>
+					between your big<<if $PC.boobsImplant == 1>> firm<</if>> breasts
+				<<elseif $PC.boobs == 1>>
+					between your breasts
+				<<elseif $PC.title == 0>>
+					into your flat chest
+				<<else>>
+					into your muscular chest
+				<</if>>
+				with an exhausted but @@.hotpink;relaxed@@ sigh.
+				<<set _fuckCount = $slaves.length+1, $activeSlave.devotion += 4, $activeSlave.trust += 4, $activeSlave.counter.anal += _fuckCount, $analTotal += _fuckCount, $penetrativeTotal += _fuckCount, $activeSlave.counter.oral++, $oralTotal++>>
+				<<set $slaves.forEach(function(s) { if (s.ID != $activeSlave.ID) { s.counter.penetrative++; } })>>
+			<</replace>>
+		<</link>>
+	<</if>>
+<</if>>
+<br><<link "Send $him off">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$activeSlave.slaveName returns many hours later. $He carefully took breaks for $his own safety <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>,especially so given $his advanced pregnancy<</if>>, and cleaned $himself periodically, so there isn't much evidence, but $he's obviously bone tired. When you meet $him at the entrance to your penthouse $he's surprised to <<if canSee($activeSlave)>>see<<else>>find<</if>> you, but $he gives you a little smile anyway. You give $him a strong massage and put $him to bed. Afterward you turn to be about your business, but $he wordlessly offers $himself to you as you do.
-	<<if canDoVaginal($activeSlave)>>
-		<<if $activeSlave.vagina == 0>>
-			$His virgin pussy is certainly tempting.
-		<<elseif ($activeSlave.vagina == 1)>>
-			$His tight pussy is certainly tempting.
-		<<elseif ($activeSlave.vagina == 2)>>
-			$His soft pussy is certainly tempting.
-		<<elseif ($activeSlave.labia > 0)>>
-			$His generous petals are certainly tempting.
-		<<elseif ($activeSlave.clit > 0)>>
-			$His prominent clit is certainly eye-catching.
-		<<elseif ($activeSlave.vagina == -1)>>
-			$His relaxed anus is certainly inviting.
+		$He leaves sadly, and you can see a few of the other slaves comforting $him as they prepare for bed.
+		<<if canPenetrate($activeSlave)>>
+			To cheer $him up, a couple of your slaves let $him fuck them before bed.
 		<<else>>
-			$His capacious pussy is certainly inviting.
+			To cheer $him up, a couple of your slaves get $him off before bed.
 		<</if>>
-	<<else>>
-		<<if $activeSlave.anus == 0>>
-			$His virgin asshole is certainly tempting.
-		<<elseif ($activeSlave.anus == 1)>>
-			$His tight asshole is certainly tempting.
-		<<elseif ($activeSlave.anus == 2)>>
-			$His experienced asshole is certainly tempting.
+		This disappointment @@.mediumorchid;reduces $his devotion.@@
+		<<set $activeSlave.devotion -= 5>>
+		<<if canPenetrate($activeSlave)>>
+			<<set $activeSlave.counter.penetrative += 2, $penetrativeTotal += 2>>
 		<<else>>
-			$His capacious asshole is certainly inviting.
+			<<set $activeSlave.counter.oral += 2, $oralTotal += 2>>
 		<</if>>
-	<</if>>
-	$He's sore, so you spoon $his<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>> body<</if>> gently in bed, fucking $him slowly to sleep.
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
-	$He falls asleep with a serene expression on $his face. @@.mediumaquamarine;$His trust in you has increased.@@
-	<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
-<</if>>
-<br><<link "Chat about $his day">>
+
+<<case "birthday">>
+
+<<link "Bake $him a cake">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$activeSlave.slaveName returns many hours later. $He's obviously bone tired. When you meet $him at the entrance to your penthouse $he's surprised to <<if canSee($activeSlave)>>see<<else>>find<</if>> you, but $he gives you a little smile anyway. You bring $him back to your office, and $he's clearly expecting to get fucked, so $he's surprised when you hand $him a hot beverage and sit down on the couch with $him. $He relaxes quickly and chats with you about $his day, gossiping about all the private doings of all the prominent citizens who fucked $his
-	<<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
-		cunt
-	<<elseif ($activeSlave.anus > 0) && canDoAnal($activeSlave)>>
-		asshole
-	<<else>>
-		mouth
-	<</if>>
-	today.
-	<<if ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 50)>>
-		$He's witty and holds up $his end of the conversation without straying from $his role as a slave.
-	<<elseif ($activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15)>>
-		$He has a few juicy items to share, and even gossiping, $he's mindful of $his role as a slave.
-	<<else>>
-		$He may be an idiot, but $his babble is amusing enough.
-	<</if>>
-	Time flies, and when you finally stand up to continue with your evening, $he thanks you prettily for listening to $him <<if $activeSlave.belly >= 10000>>as you help $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>heavy<</if>> body off the couch<</if>>. @@.hotpink;$His devotion to you has increased.@@
-	<<set $activeSlave.devotion += 4>>
+		You bake a simple cake while patiently explaining birthdays. $He slowly remembers, and <<if canSee($activeSlave)>>looks repeatedly at the date display<<else>>focuses intently on the date as $he repeats it to $himself<</if>> to ingrain $his birthday back in $his mind. When the cake is done, you quickly dust it with confectionary sugar, stand a hot wax candle in the middle of it, and invite $him to think of a wish and blow it out. $He sits on your lap and the two of you take turns feeding each other warm cake. When the cake is gone $he gets up to do the dishes and you turn to go. As you go, $he asks <<if ($activeSlave.lips > 70)>>through $his massive dick-sucking lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>through $his inconvenient oral piercings, <</if>>"<<Master>>, may I tell you what my wi<<sh>> wa<<s>>?" You nod, and $he kneels on the kitchen chair with $his eyes closed,
+		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+			$his hands spreading $his buttocks; $his pussy moist and inviting and $his anus begging for penetration. "Take me, <<Master>>."
+			<<= BothVCheck()>>
+		<<elseif canDoVaginal($activeSlave)>>
+			$his hands spreading $his buttocks; $his pussy moist and inviting. "Take me, <<Master>>."
+			<<= VaginalVCheck()>>
+		<<elseif canDoAnal($activeSlave)>>
+			$his hands spreading $his buttocks, and $his mouth open. "Butt<<s>>e<<x>>, <<Master>>."
+			<<= AnalVCheck()>>
+		<<else>>
+			hands to $his breasts, and mouth wide open. "To ta<<s>>te you, <<Master>>."
+			<<set $activeSlave.counter.oral++, $oralTotal++>>
+		<</if>>
+		$He feels so much @@.hotpink;closer to you@@ than before.
+		<<set $activeSlave.devotion += 4>>
+	<</replace>>
+<</link>><<if canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.vagina == 0 && $activeSlave.anus == 0)>> //This option will take $his virginities//<<elseif canDoVaginal($activeSlave) && $activeSlave.vagina == 0>> //This option will take $his virginity//<<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
+<br><<link "Teach $him a new meaning of birthdays">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You explain at length that $he will feel this way once a year, and that this day is special. On the day that makes $him feel this way, $he is to cover $his nipples with whipped cream, add a pattern with chocolate syrup, garnish each with a cherry, and present $himself to $his <<= WrittenMaster()>>. $He nods in understanding and gets to work. When $he's done, you help $him reach the confection on $his left breast $himself while you eat the one on $his right. When you're done, $he @@.hotpink;kisses you impulsively.@@ $He tastes like whipped cream and chocolate.
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
-
-<<case "millenary">>
-
-<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<<link "Give $him $his thousandth fuck">>
+<br><<link "Punish $him for making a mess">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You decide that a slave's thousandth fuck ought to be representative of sexual slavery. So, you<<if $PC.dick == 0>> don a strap-on,<</if>> push $him over
-	<<if $activeSlave.belly >= 300000>>
-		_belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>
-	<<else>>
-		the arm of the couch next to your desk<<if $activeSlave.belly >= 5000>> so that $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> hangs off its edge<</if>>
-	<</if>>
-	and take $his <<if $seeRace == 1>>$activeSlave.race <</if>>
-	<<if !canDoVaginal($activeSlave)>>
-		ass
-	<<else>>
-		pussy
-	<</if>>
-	hard and fast, doggy style. $He's clearly got a lot of experience, so $he takes the pounding well. Before long $he's happily moaning and begging, pushing $himself back into you<<if $PC.vagina == 1>> and using a hand thrust back between $his own legs to stimulate your pussy<</if>>. You thrust deep inside $him. $He thanks you and wishes you a happy millenary. @@.mediumaquamarine;$He has become much more trusting@@ of $his place with you.
-	<<set $activeSlave.trust += 10>>
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
+		$He begs your forgiveness and quickly cleans up the food and candles. $He can't seem to shake the feeling that @@.mediumorchid;something is wrong with this.@@
+		<<set $activeSlave.devotion -= 5>>
 	<</replace>>
 <</link>>
-<</if>>
-<<if $slaves.length > 2>>
-<br><<link "Include everyone in $his millenary">>
+
+<<case "inconvenient labia">>
+
+<<link "Let $him have labiaplasty to resolve the issue">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You decide to celebrate this happy event with everyone. You beckon to the watching slaves<<if $PC.dick == 0>>, while you don a strap-on,<</if>> and they come eagerly or sullenly according to their natures. They troop in. After some thought, you position a slave on the couch next to your desk, $activeSlave.slaveName <<if $activeSlave.amp != 1>>on all fours<<else>>propped up<</if>> in front of $his giving cunnilingus, a third slave<<if $activeSlave.belly >= 5000>>squeezed<</if>> under $activeSlave.slaveName to orally service $him in turn, and yourself behind $activeSlave.slaveName to
-	<<if canDoVaginal($activeSlave)>>
-		take $his <<if $seeRace == 1>>$activeSlave.race <</if>>pussy.
-	<<elseif canDoAnal($activeSlave)>>
-		take $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass.
-	<<else>>
-		enjoy $his <<if $seeRace == 1>>$activeSlave.race <</if>>asscheeks.
-	<</if>>
-	Each slave besides $activeSlave.slaveName gets a suck from $activeSlave.slaveName on the couch and then slides under $him to reciprocate. $He works $his way through all your slaves one by one, with feminine lips and tongues delighting $his
-	<<if $activeSlave.dick != 0 && !($activeSlave.chastityPenis)>>
-		dickhead
-	<<elseif !canDoVaginal($activeSlave)>>
-		soft perineum
-	<<else>>
-		clit
-	<</if>>
-	and your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> gently pumping $his butt the whole time. When $he's done, $he thanks you exhaustedly and begs you to do this for $his next millenary. @@.hotpink;$His love for you has greatly increased.@@
-	<<set $activeSlave.devotion += 10, $activeSlave.counter.oral += ($slaves.length*2), $oralTotal += ($slaves.length*2)>>
-	<<set $slaves.forEach(function(s) { if (s.ID != $activeSlave.ID) { s.counter.oral++; } })>>
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
-	<</replace>>
-<</link>>
-<<if canDoAnal($activeSlave) && $activeSlave.counter.anal != 0>>
-<br><<link "Drive up $his anal count">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You make a ceremony of querying $assistantName, aloud for everyone to hear, into $activeSlave.slaveName's sexual history. $He soon realizes this is a sort of recitation of $his service for the benefit of the other slaves, and $he stands a little straighter. $His <<if canSee($activeSlave)>><<= App.Desc.eyeColor($activeSlave)>> eyes glitter<<else>>face beams<</if>> with @@.mediumaquamarine;pride@@ as $assistantName finishes, "...and $his anus has been penetrated $activeSlave.counter.anal times." You announce that $activeSlave.counter.anal isn't nearly enough, detail a slave to fetch you a comfortable chair, seat yourself, and draw the compliant $activeSlave.slaveName's head down towards your <<if $PC.dick == 0>>pussy<<else>>cock<</if>>. $He gets eagerly to work, surrounded by a circle of slaves staring at the show. You select a favored girl and tell $him to get to work driving that anal count up. $activeSlave.slaveName keeps <<if $PC.dick == 0>>eating you out<<else>>sucking your dick<</if>> as the chosen girl pulls $activeSlave.slaveName's hips up a little and
-	<<if $activeSlave.butt > 18>>
-		struggles into $his immense butt.
-	<<elseif $activeSlave.butt > 10>>
-		pushes between $his massive cheeks.
-	<<elseif $activeSlave.butt > 5>>
-		spreads $his big buttocks.
-	<<elseif $activeSlave.weight > 95>>
-		spreads $his fat rear.
-	<<elseif $activeSlave.muscles > 30>>
-		pushes between $his muscular buttocks.
-	<<else>>
-		massages $his butt a little.
-	<</if>>
-	$activeSlave.slaveName snakes a $activeSlave.skin hand down between $his legs to
-	<<if ($activeSlave.chastityPenis == 1)>>
-		tease $his chastity bound dick
-	<<elseif canAchieveErection($activeSlave)>>
-		jack off
-	<<else>>
-		play with $himself as much as $he can manage
-	<</if>>
-	as $his asshole takes its first fuck of the night. You let $him change positions between each slave, and by the end $he's draped limply across the arm of your chair so $he can tiredly <<if $PC.vagina == 1>>nibble your pussylips<<else>>suck on your balls one at a time<</if>> as the last few slaves, taking advantage of $his enormously gaped butt, slide lubricated hands in and out of $his rectum while giggling at the perversion and playing with each other. As the final slave withdraws their hand, $activeSlave.slaveName crawls into your lap and burrows $his face
-	<<if $PC.boobsBonus > 2>>
-		between your enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts
-	<<elseif $PC.boobsBonus == 2>>
-		between your huge<<if $PC.boobsImplant == 1>> fake<</if>> breasts
-	<<elseif $PC.boobsBonus == 1>>
-		between your big<<if $PC.boobsImplant == 1>> firm<</if>> breasts
-	<<elseif $PC.boobs == 1>>
-		between your breasts
-	<<elseif $PC.title == 0>>
-		into your flat chest
-	<<else>>
-		into your muscular chest
-	<</if>>
-	with an exhausted but @@.hotpink;relaxed@@ sigh.
-	<<set _fuckCount = $slaves.length+1, $activeSlave.devotion += 4, $activeSlave.trust += 4, $activeSlave.counter.anal += _fuckCount, $analTotal += _fuckCount, $penetrativeTotal += _fuckCount, $activeSlave.counter.oral++, $oralTotal++>>
-	<<set $slaves.forEach(function(s) { if (s.ID != $activeSlave.ID) { s.counter.penetrative++; } })>>
-	<</replace>>
-<</link>>
-<</if>>
-<</if>>
-<br><<link "Send $him off">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He leaves sadly, and you can see a few of the other slaves comforting $him as they prepare for bed.
-	<<if canPenetrate($activeSlave)>>
-		To cheer $him up, a couple of your slaves let $him fuck them before bed.
-	<<else>>
-		To cheer $him up, a couple of your slaves get $him off before bed.
-	<</if>>
-	This disappointment @@.mediumorchid;reduces $his devotion.@@
-	<<set $activeSlave.devotion -= 5>>
-	<<if canPenetrate($activeSlave)>>
-		<<set $activeSlave.counter.penetrative += 2, $penetrativeTotal += 2>>
-	<<else>>
-		<<set $activeSlave.counter.oral += 2, $oralTotal += 2>>
-	<</if>>
-	<</replace>>
-<</link>>
-
-<<case "birthday">>
-
-<<link "Bake $him a cake">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You bake a simple cake while patiently explaining birthdays. $He slowly remembers, and <<if canSee($activeSlave)>>looks repeatedly at the date display<<else>>focuses intently on the date as $he repeats it to $himself<</if>> to ingrain $his birthday back in $his mind. When the cake is done, you quickly dust it with confectionary sugar, stand a hotwax candle in the middle of it, and invite $him to think of a wish and blow it out. $He sits on your lap and the two of you take turns feeding each other warm cake. When the cake is gone $he gets up to do the dishes and you turn to go. As you go, $he asks <<if ($activeSlave.lips > 70)>>through $his massive dick-sucking lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>through $his inconvenient oral piercings, <</if>>"<<Master>>, may I tell you what my wi<<sh>> wa<<s>>?" You nod, and $he kneels on the kitchen chair with $his eyes closed,
-	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-		$his hands spreading $his buttocks; $his pussy moist and inviting and $his anus begging for penetration. "Take me, <<Master>>."
-		<<= BothVCheck()>>
-	<<elseif canDoVaginal($activeSlave)>>
-		$his hands spreading $his buttocks; $his pussy moist and inviting. "Take me, <<Master>>."
-		<<= VaginalVCheck()>>
-	<<elseif canDoAnal($activeSlave)>>
-		$his hands spreading $his buttocks, and $his mouth open. "Butt<<s>>e<<x>>, <<Master>>."
-		<<= AnalVCheck()>>
-	<<else>>
-		hands to $his breasts, and mouth wide open. "To ta<<s>>te you, <<Master>>."
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<</if>>
-	$He feels so much @@.hotpink;closer to you@@ than before.
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.vagina == 0 && $activeSlave.anus == 0)>> //This option will take virginities//<<elseif canDoVaginal($activeSlave) && $activeSlave.vagina == 0>> //This option will take $his virginity//<<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
-<br><<link "Teach $him a new meaning of birthdays">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You explain at length that $he will feel this way once a year, and that this day is special. On the day that makes $him feel this way, $he is to cover $his nipples with whipped cream, add a pattern with chocolate syrup, garnish each with a cherry, and present $himself to $his <<= WrittenMaster()>>. $He nods in understanding and gets to work. When $he's done, you help $him reach the confection on $his left breast $himself while you eat the one on $his right. When you're done, $he @@.hotpink;kisses you impulsively.@@ $He tastes like whipped cream and chocolate.
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>>
-<br><<link "Punish $him for making a mess">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He begs your forgiveness and quickly cleans up the food and candles. $He can't seem to shake the feeling that @@.mediumorchid;something is wrong with this.@@
-	<<set $activeSlave.devotion -= 5>>
-	<</replace>>
-<</link>>
-
-<<case "inconvenient labia">>
-
-<<link "Let $him have labiaplasty to resolve the issue">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	When you assent, $he cheers up immediately, looking remarkably happy for a $girl who's just learned $his vagina is about to have a surgical operation performed on it. Then again, having those huge pussylips constantly getting in $his way when $he runs must be extremely uncomfortable, so it's not shocking $he would consider a radical solution to $his problem. When $he exits the remote surgery, $he looks @@.red;sorer than ever,@@ of course, but $he @@.hotpink;smiles gratefully@@ at you the next time $he <<if canSee($activeSlave)>>sees<<else>>meets<</if>> you, and lets you know $he's really looking forward to recovering enough for $him to take $his beloved <<= WrittenMaster()>> into $his @@.orange;newly streamlined cunt.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.health -= 10, $activeSlave.labia = 0>>
+		When you assent, $he cheers up immediately, looking remarkably happy for a $girl who's just learned $his vagina is about to have a surgical operation performed on it. Then again, having those huge pussylips constantly getting in $his way when $he runs must be extremely uncomfortable, so it's not shocking $he would consider a radical solution to $his problem. When $he exits the remote surgery, $he looks @@.red;sorer than ever,@@ of course, but $he @@.hotpink;smiles gratefully@@ at you the next time $he <<if canSee($activeSlave)>>sees<<else>>meets<</if>> you, and lets you know $he's really looking forward to recovering enough for $him to take $his beloved <<= WrittenMaster()>> into $his @@.orange;newly streamlined cunt.@@
+		<<set $activeSlave.devotion += 4, $activeSlave.health -= 10, $activeSlave.labia = 0>>
 	<</replace>>
 <</link>>
 <<if canDoVaginal($activeSlave)>>
-<br><<link "Let $him know $he's got a wonderful vagina">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	By way of an answer, you embrace $him and give $him a deep kiss on $his
-	<<if $activeSlave.lips > 70>>
-		enormous
-	<<elseif $activeSlave.lips > 40>>
-		pillowlike
-	<<elseif $activeSlave.lips > 20>>
-		big
-	<<else>>
-		pretty
-	<</if>>
-	lips, spreading a blush across $his $activeSlave.skin cheeks. Your hands rove down $his
-	<<if $activeSlave.belly >= 1500>>
-		<<if $activeSlave.bellyPreg >= 1500>>
-			pregnant
-		<<else>>
-			swollen
-		<</if>>
-	<<elseif $activeSlave.weight > 190>>
-		expansive
-	<<elseif $activeSlave.weight > 160>>
-		ponderous
-	<<elseif $activeSlave.weight > 130>>
-		big, soft
-	<<elseif $activeSlave.weight > 95>>
-		plump
-	<<elseif $activeSlave.weight > 10>>
-		plush
-	<<elseif $activeSlave.weight < -10>>
-		thin
-	<<else>>
-		nice
-	<</if>>
-	body, coming to rest on $his
-	<<if $activeSlave.butt > 15>>
-		immeasurable
-	<<elseif $activeSlave.butt > 10>>
-		mind-blowing
-	<<elseif $activeSlave.butt > 7>>
-		spectacular
-	<<elseif $activeSlave.butt > 5>>
-		magnificent
-	<<elseif $activeSlave.butt > 3>>
-		rounded
-	<<else>>
-		tight
-	<</if>>
-	butt. You hug $him up and into you, crushing $his <<if $activeSlave.boobs > 2000>>titanic<<elseif $activeSlave.boobs > 800>>big<<else>>small<</if>> breasts against
-	<<if $PC.boobsBonus > 2>>
-		your enormous <<if $PC.boobsImplant == 1>>balloons<<else>>bust<</if>>.
-	<<elseif $PC.boobsBonus == 2>>
-		your huge <<if $PC.boobsImplant == 1>>balloons<<else>>bust<</if>>.
-	<<elseif $PC.boobsBonus == 1>>
-		your big <<if $PC.boobsImplant == 1>>balloons<<else>>bust<</if>>.
-	<<elseif $PC.boobs == 1>>
-		yours.
-	<<elseif $PC.title == 0>>
-		your flat ones.
-	<<else>>
-		your manly chest.
-	<</if>>
-	Before long being kissed and held by $his beloved <<= WrittenMaster()>> has $him playing the slut in your arms, and $he backs against the wall before wrapping $his legs around your middle to bring $his pussy against your
-	<<if $PC.dick == 0>>
-		own.<<if $activeSlave.belly >= 5000>> You move your hands under $him to better support $his <<if $activeSlave.bellyPreg >= 3000>>gravid bulk<<else>>distended body<</if>>.<</if>> $He moans in pain as you scissor against $his sore pussy,
-	<<else>>
-		stiff prick.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> You move your hands under $him to better support $his <<if $activeSlave.bellyPreg >= 3000>>gravid bulk<<else>>distended body<</if>>.<</if>> $He gasps in pain as you press past $his sore pussylips,
-	<</if>>
-	but before long $he's grinding against you with $his back propped against the wall, using the embrace of $his strong legs to provide the power for a vigorous fuck. When $he finally slides down the wall to stand again, a look of @@.hotpink;profound pleasure@@ on $his face, $he lets you know that $he understands your meaning and that $he'll put up with sore petals, since $his <<= WrittenMaster()>> prefers $him that way.
-	<<= VaginalVCheck()>>
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>>
+	<br><<link "Let $him know $he's got a wonderful vagina">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			By way of an answer, you embrace $him and give $him a deep kiss on $his
+			<<if $activeSlave.lips > 70>>
+				enormous
+			<<elseif $activeSlave.lips > 40>>
+				pillowlike
+			<<elseif $activeSlave.lips > 20>>
+				big
+			<<else>>
+				pretty
+			<</if>>
+			lips, spreading a blush across $his $activeSlave.skin cheeks. Your hands rove down $his
+			<<if $activeSlave.belly >= 1500>>
+				<<if $activeSlave.bellyPreg >= 1500>>
+					pregnant
+				<<else>>
+					swollen
+				<</if>>
+			<<elseif $activeSlave.weight > 190>>
+				expansive
+			<<elseif $activeSlave.weight > 160>>
+				ponderous
+			<<elseif $activeSlave.weight > 130>>
+				big, soft
+			<<elseif $activeSlave.weight > 95>>
+				plump
+			<<elseif $activeSlave.weight > 10>>
+				plush
+			<<elseif $activeSlave.weight < -10>>
+				thin
+			<<else>>
+				nice
+			<</if>>
+			body, coming to rest on $his
+			<<if $activeSlave.butt > 15>>
+				immeasurable
+			<<elseif $activeSlave.butt > 10>>
+				mind-blowing
+			<<elseif $activeSlave.butt > 7>>
+				spectacular
+			<<elseif $activeSlave.butt > 5>>
+				magnificent
+			<<elseif $activeSlave.butt > 3>>
+				rounded
+			<<else>>
+				tight
+			<</if>>
+			butt. You hug $him up and into you, crushing $his <<if $activeSlave.boobs > 2000>>titanic<<elseif $activeSlave.boobs > 800>>big<<else>>small<</if>> breasts against
+			<<if $PC.boobsBonus > 2>>
+				your enormous <<if $PC.boobsImplant == 1>>balloons<<else>>bust<</if>>.
+			<<elseif $PC.boobsBonus == 2>>
+				your huge <<if $PC.boobsImplant == 1>>balloons<<else>>bust<</if>>.
+			<<elseif $PC.boobsBonus == 1>>
+				your big <<if $PC.boobsImplant == 1>>balloons<<else>>bust<</if>>.
+			<<elseif $PC.boobs == 1>>
+				yours.
+			<<elseif $PC.title == 0>>
+				your flat ones.
+			<<else>>
+				your manly chest.
+			<</if>>
+			Before long being kissed and held by $his beloved <<= WrittenMaster()>> has $him playing the slut in your arms, and $he backs against the wall before wrapping $his legs around your middle to bring $his pussy against your
+			<<if $PC.dick == 0>>
+				own.<<if $activeSlave.belly >= 5000>> You move your hands under $him to better support $his <<if $activeSlave.bellyPreg >= 3000>>gravid bulk<<else>>distended body<</if>>.<</if>> $He moans in pain as you scissor against $his sore pussy,
+			<<else>>
+				stiff prick.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> You move your hands under $him to better support $his <<if $activeSlave.bellyPreg >= 3000>>gravid bulk<<else>>distended body<</if>>.<</if>> $He gasps in pain as you press past $his sore pussylips,
+			<</if>>
+			but before long $he's grinding against you with $his back propped against the wall, using the embrace of $his strong legs to provide the power for a vigorous fuck. When $he finally slides down the wall to stand again, a look of @@.hotpink;profound pleasure@@ on $his face, $he lets you know that $he understands your meaning and that $he'll put up with sore petals, since $his <<= WrittenMaster()>> prefers $him that way.
+			<<= VaginalVCheck()>>
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
 <</if>>
 
 <<case "restricted smart">>
@@ -12158,180 +12163,180 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Discuss $his future with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You announce matter-of-factly that $he's allowed to speak temporarily, and that you'll be discussing where $he is and where $he sees $himself in the near future. $He's disconcerted by the subject but so desperate for conversation that $he's overjoyed anyway.
-	"I under<<s>>tand what you're doing, <<Master>>," $he <<say>>s forthrightly. "I'm to be broken down into a devoted <<s>>lave." $He looks thoughtful. "I'll help you with that. It'll be ea<<s>>ier if I do, won't it?" $He looks up, and you <<if canSee($activeSlave)>>nod in affirmation<<else>>acknowledge $him<</if>>; $he gives you a rueful smile. "A good <<s>>lut would offer to give you oral now, I think. <<S>>o, <<Master>>, may I plea<<s>>e be allowed to <<if $PC.dick == 0>>lick your pu<<ss>>y<<else>><<s>>uck your cock<</if>>?"
-	You <<if canSee($activeSlave)>>nod<<else>>acknowledge<</if>>, and tell $him that the rules are back in effect. As
-	<<if $activeSlave.amp == 1>>
-		you get $his helpless form into position,
-	<<elseif $activeSlave.belly >= 300000>>
-		$he struggles to get into position with $his _belly stomach in the way,
-	<<elseif $activeSlave.belly >= 10000>>
-		$he gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> form to its knees,
-	<<else>>
-		$he gets down on $his knees,
-	<</if>>
-	$he @@.hotpink;focuses on the task@@ in front of $him with all $his considerable intelligence, clearly having decided to make things easier on $himself by conforming to $his new life.
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
+		You announce matter-of-factly that $he's allowed to speak temporarily, and that you'll be discussing where $he is and where $he sees $himself in the near future. $He's disconcerted by the subject but so desperate for conversation that $he's overjoyed anyway.
+		"I under<<s>>tand what you're doing, <<Master>>," $he <<say>>s forthrightly. "I'm to be broken down into a devoted <<s>>lave." $He looks thoughtful. "I'll help you with that. It'll be ea<<s>>ier if I do, won't it?" $He looks up, and you <<if canSee($activeSlave)>>nod in affirmation<<else>>acknowledge $him<</if>>; $he gives you a rueful smile. "A good <<s>>lut would offer to give you oral now, I think. <<S>>o, <<Master>>, may I plea<<s>>e be allowed to <<if $PC.dick == 0>>lick your pu<<ss>>y<<else>><<s>>uck your cock<</if>>?"
+		You <<if canSee($activeSlave)>>nod<<else>>acknowledge<</if>>, and tell $him that the rules are back in effect. As
+		<<if $activeSlave.amp == 1>>
+			you get $his helpless form into position,
+		<<elseif $activeSlave.belly >= 300000>>
+			$he struggles to get into position with $his _belly stomach in the way,
+		<<elseif $activeSlave.belly >= 10000>>
+			$he gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> form to its knees,
+		<<else>>
+			$he gets down on $his knees,
+		<</if>>
+		$he @@.hotpink;focuses on the task@@ in front of $him with all $his considerable intelligence, clearly having decided to make things easier on $himself by conforming to $his new life.
+		<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "Let $him talk during a rough buttfuck">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You
-	<<if $activeSlave.amp == 1>>
-		lay $his fuckpuppet torso across
-	<<elseif $activeSlave.belly >= 5000>>
-		tip $him <<if $activeSlave.bellyPreg >= 3000>>motherly<<else>>swollen<</if>> body backwards onto
-	<<else>>
-		push $him backwards onto
-	<</if>>
-	your desk, groping $his
-	<<if $activeSlave.butt > 15>>
-		absurd
-	<<elseif $activeSlave.butt > 10>>
-		immense
-	<<elseif $activeSlave.butt > 7>>
-		huge
-	<<elseif $activeSlave.butt > 4>>
-		big
-	<<elseif $activeSlave.butt > 1>>
-		moderate
-	<<else>>
-		meager
-	<</if>>
-	butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a couple of fingers up<<else>>line your cock up with<</if>> $his
-	<<if $activeSlave.anus > 2>>
-		gaping
-	<<elseif $activeSlave.anus > 1>>
-		sizable
-	<<else>>
-		tight
-	<</if>>
-	asshole. As you penetrate $him, you tell $him that the time to talk is now.
-	<<if $activeSlave.anus > 2>>
-		To make the sex sufficiently uncomfortable, you <<if $PC.dick == 0>>finger fuck<<else>>dick<</if>> $him without mercy.
-	<<elseif $activeSlave.anus > 1>>
-		To make the sex sufficiently uncomfortable, you pull yourself out with every stroke, putting $him through initial anal penetration over and over.
-	<<else>>
-		$His butt is so tight that just a simple assfuck makes $him uncomfortable enough.
-	<</if>>
-	$He opens $his mouth, closes it again, grunts at the burning sensation of your rough use of $his poor ass, and then shuts up. You ask $him if $he's sure $he doesn't have anything to say, and $he makes $his one verbal comment of the day: "No, <<Master>>." $He understands the lesson here: fail to @@.hotpink;conform,@@ @@.gold;get assraped.@@ It's as simple as that.
-	<<set $activeSlave.devotion += 3, $activeSlave.trust -= 3>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take virginity//<</if>>
+	<br><<link "Let $him talk during a rough buttfuck">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You
+			<<if $activeSlave.amp == 1>>
+				lay $his fuckpuppet torso across
+			<<elseif $activeSlave.belly >= 5000>>
+				tip $him <<if $activeSlave.bellyPreg >= 3000>>motherly<<else>>swollen<</if>> body backwards onto
+			<<else>>
+				push $him backwards onto
+			<</if>>
+			your desk, groping $his
+			<<if $activeSlave.butt > 15>>
+				absurd
+			<<elseif $activeSlave.butt > 10>>
+				immense
+			<<elseif $activeSlave.butt > 7>>
+				huge
+			<<elseif $activeSlave.butt > 4>>
+				big
+			<<elseif $activeSlave.butt > 1>>
+				moderate
+			<<else>>
+				meager
+			<</if>>
+			butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a couple of fingers up<<else>>line your cock up with<</if>> $his
+			<<if $activeSlave.anus > 2>>
+				gaping
+			<<elseif $activeSlave.anus > 1>>
+				sizable
+			<<else>>
+				tight
+			<</if>>
+			asshole. As you penetrate $him, you tell $him that the time to talk is now.
+			<<if $activeSlave.anus > 2>>
+				To make the sex sufficiently uncomfortable, you <<if $PC.dick == 0>>finger fuck<<else>>dick<</if>> $him without mercy.
+			<<elseif $activeSlave.anus > 1>>
+				To make the sex sufficiently uncomfortable, you pull yourself out with every stroke, putting $him through initial anal penetration over and over.
+			<<else>>
+				$His butt is so tight that just a simple assfuck makes $him uncomfortable enough.
+			<</if>>
+			$He opens $his mouth, closes it again, grunts at the burning sensation of your rough use of $his poor ass, and then shuts up. You ask $him if $he's sure $he doesn't have anything to say, and $he makes $his one verbal comment of the day: "No, <<Master>>." $He understands the lesson here: fail to @@.hotpink;conform,@@ @@.gold;get assraped.@@ It's as simple as that.
+			<<set $activeSlave.devotion += 3, $activeSlave.trust -= 3>>
+			<<= AnalVCheck()>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his virginity//<</if>>
 <</if>>
 <<if canDoVaginal($activeSlave)>>
-<br><<link "Let $him try to talk during a vigorous fucking">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You
-	<<if $activeSlave.amp == 1>>
-		lay $his fuckpuppet torso across
-	<<elseif $activeSlave.belly >= 5000>>
-		tip $him <<if $activeSlave.bellyPreg >= 3000>>motherly<<else>>swollen<</if>> body backwards onto
-	<<else>>
-		push $him backwards onto
-	<</if>>
-	your desk, groping $his
-	<<if $activeSlave.butt > 15>>
-		absurd
-	<<elseif $activeSlave.butt > 10>>
-		immense
-	<<elseif $activeSlave.butt > 7>>
-		huge
-	<<elseif $activeSlave.butt > 4>>
-		big
-	<<elseif $activeSlave.butt > 1>>
-		moderate
-	<<else>>
-		meager
-	<</if>>
-	butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a dildo into<<else>>line your cock up with<</if>> $his
-	<<if $activeSlave.anus > 2>>
-		gaping
-	<<elseif $activeSlave.anus > 1>>
-		sizable
-	<<else>>
-		tight
-	<</if>>
-	pussy. As you penetrate $him, you tell $him that the time to talk is now.
-	<<if $activeSlave.vagina > 2>>
-		To make the sex sufficiently overwhelming, you <<if $PC.dick == 0>>ram<<else>>dick<</if>> $him without mercy.
-	<<elseif $activeSlave.vagina > 1>>
-		To make the sex sufficiently overwhelming, you pull yourself out with every stroke, putting $him through initial penetration over and over.
-	<<else>>
-		$His cunt is so tight that just a simple fucking overwhelms $him with pleasure.
-	<</if>>
-	$He opens $his mouth, closes it again, groaning at the sensation of your rough use of $his body, and then stops trying. You ask $him if $he's sure $he doesn't have anything to say, and $he lets off an orgasmic moan. There's @@.hotpink;no need to talk@@ when your owner is @@.mediumaquamarine;fucking your brains out.@@
-	<<set $activeSlave.devotion += 3, $activeSlave.trust += 3>>
-	<<= VaginalVCheck()>>
-	<</replace>>
-<</link>><<if ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>>
+	<br><<link "Let $him try to talk during a vigorous fucking">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You
+			<<if $activeSlave.amp == 1>>
+				lay $his fuckpuppet torso across
+			<<elseif $activeSlave.belly >= 5000>>
+				tip $him <<if $activeSlave.bellyPreg >= 3000>>motherly<<else>>swollen<</if>> body backwards onto
+			<<else>>
+				push $him backwards onto
+			<</if>>
+			your desk, groping $his
+			<<if $activeSlave.butt > 15>>
+				absurd
+			<<elseif $activeSlave.butt > 10>>
+				immense
+			<<elseif $activeSlave.butt > 7>>
+				huge
+			<<elseif $activeSlave.butt > 4>>
+				big
+			<<elseif $activeSlave.butt > 1>>
+				moderate
+			<<else>>
+				meager
+			<</if>>
+			butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a dildo into<<else>>line your cock up with<</if>> $his
+			<<if $activeSlave.anus > 2>>
+				gaping
+			<<elseif $activeSlave.anus > 1>>
+				sizable
+			<<else>>
+				tight
+			<</if>>
+			pussy. As you penetrate $him, you tell $him that the time to talk is now.
+			<<if $activeSlave.vagina > 2>>
+				To make the sex sufficiently overwhelming, you <<if $PC.dick == 0>>ram<<else>>dick<</if>> $him without mercy.
+			<<elseif $activeSlave.vagina > 1>>
+				To make the sex sufficiently overwhelming, you pull yourself out with every stroke, putting $him through initial penetration over and over.
+			<<else>>
+				$His cunt is so tight that just a simple fucking overwhelms $him with pleasure.
+			<</if>>
+			$He opens $his mouth, closes it again, groaning at the sensation of your rough use of $his body, and then stops trying. You ask $him if $he's sure $he doesn't have anything to say, and $he lets off an orgasmic moan. There's @@.hotpink;no need to talk@@ when your owner is @@.mediumaquamarine;fucking your brains out.@@
+			<<set $activeSlave.devotion += 3, $activeSlave.trust += 3>>
+			<<= VaginalVCheck()>>
+		<</replace>>
+	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
 <</if>>
 
 <<case "restricted profession">>
 
 <<link "Let $him speak briefly if $he's very quiet">>
 	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You stand up from your desk and approach $him very closely without touching $him. Looking straight into $his eyes, which are <<if canSee($activeSlave)>>fixed helplessly on you<<else>>gazing in your general direction<</if>>, you tell $him that you'll let $him say whatever it is $he needs to say to you, but only if $he's very quiet. $He <<if canSee($activeSlave)>>looks at you with huge eyes but<</if>> nods vigorously. $He waits until you lean into $him, making $him shiver at your proximity, before putting $his
-	<<if $activeSlave.lips > 70>>
-		ridiculous
-	<<elseif $activeSlave.lips > 40>>
-		enormous
-	<<elseif $activeSlave.lips > 20>>
-		pillowlike
-	<<else>>
-		girlish
-	<</if>>
-	lips next to your ear and whispering nervously, "I love you, <<Master>>." $He recoils a little as if burned by the audacity of $his words, but only manages to back off a little before you gather $his
-	<<if $activeSlave.amp == 1>>
-		limbless
-	<<elseif $activeSlave.bellyPreg >= 1500>>
-		gravid
-	<<elseif $activeSlave.belly >= 1500>>
-		_belly
-	<<else>>
-		rocking
-	<</if>>
-	torso into your arms, holding the back of $his head with one hand and rubbing $his quivering back with the other. Eventually, $he relaxes into
-	<<if ($PC.boobs > 0)>>
-		<<if $PC.boobsImplant == 1>>
-			your fake breasts,
+		<<replace "#result">>
+		You stand up from your desk and approach $him very closely without touching $him. Looking straight into $his eyes, which are <<if canSee($activeSlave)>>fixed helplessly on you<<else>>gazing in your general direction<</if>>, you tell $him that you'll let $him say whatever it is $he needs to say to you, but only if $he's very quiet. $He <<if canSee($activeSlave)>>looks at you with huge eyes but<</if>> nods vigorously. $He waits until you lean into $him, making $him shiver at your proximity, before putting $his
+		<<if $activeSlave.lips > 70>>
+			ridiculous
+		<<elseif $activeSlave.lips > 40>>
+			enormous
+		<<elseif $activeSlave.lips > 20>>
+			pillowlike
 		<<else>>
-			your soft chest,
+			girlish
 		<</if>>
-	<<else>>
-		you,
-	<</if>>
-	knowing that $his <<= WrittenMaster($activeSlave)>> can never and will never reciprocate, but @@.hotpink;accepting@@ that the loving physical contact is a tremendously kind gesture for a master to make.
-	<<set $activeSlave.devotion += 4>>
+		lips next to your ear and whispering nervously, "I love you, <<Master>>." $He recoils a little as if burned by the audacity of $his words, but only manages to back off a little before you gather $his
+		<<if $activeSlave.amp == 1>>
+			limbless
+		<<elseif $activeSlave.bellyPreg >= 1500>>
+			gravid
+		<<elseif $activeSlave.belly >= 1500>>
+			_belly
+		<<else>>
+			rocking
+		<</if>>
+		torso into your arms, holding the back of $his head with one hand and rubbing $his quivering back with the other. Eventually, $he relaxes into
+		<<if ($PC.boobs > 0)>>
+			<<if $PC.boobsImplant == 1>>
+				your fake breasts,
+			<<else>>
+				your soft chest,
+			<</if>>
+		<<else>>
+			you,
+		<</if>>
+		knowing that $his <<= WrittenMaster($activeSlave)>> can never and will never reciprocate, but @@.hotpink;accepting@@ that the loving physical contact is a tremendously kind gesture for a master to make.
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Make $him say it in public">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Since you suspect you know what it is $he wants to say, you <<if $activeSlave.amp == 1>>carry $him out<<else>>lead $him by the hand<</if>> onto the club, busy with citizens. You tell $him quietly that $he's to shout whatever it is $he wanted to say, if it's something everyone should hear; otherwise $he's to keep it to $himself. $He <<if canSee($activeSlave)>>looks around<<elseif canHear($activeSlave)>>listens<<else>>opens $his mouth<</if>> nervously, $his $activeSlave.skin skin betraying a growing blush, before clearing $his throat twice, licking $his lips, and howling "I LOVE MY _shoutitoutloud" at the tops of $his lungs. When this is out of $him $he collapses a little, as though the pressure of holding it inside were propping $him up. This attracted a considerable amount of attention, almost all of it @@.green;positive,@@ with many passersby laughing at the fun, and your fellow slaveowners giving you discreet winks and quiet congratulations.
-	<<run repX(750, "event", $activeSlave)>>
+		Since you suspect you know what it is $he wants to say, you <<if $activeSlave.amp == 1>>carry $him out<<else>>lead $him by the hand<</if>> onto the club, busy with citizens. You tell $him quietly that $he's to shout whatever it is $he wanted to say, if it's something everyone should hear; otherwise $he's to keep it to $himself. $He <<if canSee($activeSlave)>>looks around<<elseif canHear($activeSlave)>>listens<<else>>opens $his mouth<</if>> nervously, $his $activeSlave.skin skin betraying a growing blush, before clearing $his throat twice, licking $his lips, and howling "I LOVE MY _shoutitoutloud" at the tops of $his lungs. When this is out of $him $he collapses a little, as though the pressure of holding it inside were propping $him up. This attracted a considerable amount of attention, almost all of it @@.green;positive,@@ with many passersby laughing at the fun, and your fellow slaveowners giving you discreet winks and quiet congratulations.
+		<<run repX(750, "event", $activeSlave)>>
 	<</replace>>
 <</link>>
 <br><<link "Keep $him quiet but spend some time with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You announce that you're finished with business for the day, and feel like some quiet time. $He cannot keep <<if canSee($activeSlave)>>a gleam of humor out of $his eye<<else>>the corners of $his lips from rising slightly<</if>> at <<if canHear($activeSlave)>>hearing<<else>>the phrase<</if>> 'quiet time,' and $he <<if $activeSlave.amp == 1>>presents $himself to be carried<<else>>follows you<</if>> happily enough. When $he <<if canSee($activeSlave)>>sees<<else>>realizes<</if>> you're headed to your bedroom $he begins to anticipate $his <<= WrittenMaster($activeSlave)>>'s <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, but is surprised to find that instead of using $him you simply
-	<<if $activeSlave.amp == 1>>
-		place $him in bed and curl up around $his limbless torso.
-	<<elseif $activeSlave.bellyPreg >= 5000>>
-		help $him into bed and curl up with $him, your arms encircling $his prominent baby bump.
-	<<elseif $activeSlave.belly >= 5000>>
-		help $him into bed and curl up with $him, your arms encircling $his _belly dome of a middle.
-	<<else>>
-		climb into bed and pull $him under the sheets with you.
-	<</if>>
-	$He's almost disappointed, but after looking into your resting face for a while, nestles $his head onto your broad chest and goes to sleep with a @@.hotpink;look of contentment@@ on $his face. When the two of you wake from your brief nap, you ask $him if $he has anything else to communicate to you. $He smiles sleepily and shakes $his head no.
-	<<set $activeSlave.devotion += 4>>
+		You announce that you're finished with business for the day, and feel like some quiet time. $He cannot keep <<if canSee($activeSlave)>>a gleam of humor out of $his eye<<else>>the corners of $his lips from rising slightly<</if>> at <<if canHear($activeSlave)>>hearing<<else>>the phrase<</if>> 'quiet time,' and $he <<if $activeSlave.amp == 1>>presents $himself to be carried<<else>>follows you<</if>> happily enough. When $he <<if canSee($activeSlave)>>sees<<else>>realizes<</if>> you're headed to your bedroom $he begins to anticipate $his <<= WrittenMaster($activeSlave)>>'s <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, but is surprised to find that instead of using $him you simply
+		<<if $activeSlave.amp == 1>>
+			place $him in bed and curl up around $his limbless torso.
+		<<elseif $activeSlave.bellyPreg >= 5000>>
+			help $him into bed and curl up with $him, your arms encircling $his prominent baby bump.
+		<<elseif $activeSlave.belly >= 5000>>
+			help $him into bed and curl up with $him, your arms encircling $his _belly dome of a middle.
+		<<else>>
+			climb into bed and pull $him under the sheets with you.
+		<</if>>
+		$He's almost disappointed, but after looking into your resting face for a while, nestles $his head onto your broad chest and goes to sleep with a @@.hotpink;look of contentment@@ on $his face. When the two of you wake from your brief nap, you ask $him if $he has anything else to communicate to you. $He smiles sleepily and shakes $his head no.
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 
@@ -12340,230 +12345,230 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "That's nice">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	It's not just a feeling. However, slapping slaves for idiotic devotion isn't wise, since the idiotic part of idiotic devotion is less important than the devotion part. You thank $him kindly, tell $him to put $his offering on your desk, and go back to your work. $He flees, feeling relieved but foolish. When $he's gone, you direct another slave to return the napkin to its proper place.
+		It's not just a feeling. However, slapping slaves for idiotic devotion isn't wise, since the idiotic part of idiotic devotion is less important than the devotion part. You thank $him kindly, tell $him to put $his offering on your desk, and go back to your work. $He flees, feeling relieved but foolish. When $he's gone, you direct another slave to return the napkin to its proper place.
 	<</replace>>
 <</link>>
 <br><<link "These slaves clearly have too much time on their hands">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You thank $him kindly, tell $him to put $his offering on your desk, and go back to your work. $He flees, and once $he's gone, you <<if $HeadGirl != 0>>have $assistantName pass a note to your Head Girl instructing $him<<else>>instruct $assistantName<</if>> to tighten up your slaves' schedules, since you feel that they have too much time on their hands. Then you direct another slave to return the napkin to its proper place. Your slaves find their spare moments occupied by household minutiae during the coming week, @@.yellowgreen;saving you some money@@ on penthouse and slave upkeep.
-	<<run cashX(2000, "event", $activeSlave)>>
+		You thank $him kindly, tell $him to put $his offering on your desk, and go back to your work. $He flees, and once $he's gone, you <<if $HeadGirl != 0>>have $assistantName pass a note to your Head Girl instructing $him<<else>>instruct $assistantName<</if>> to tighten up your slaves' schedules, since you feel that they have too much time on their hands. Then you direct another slave to return the napkin to its proper place. Your slaves find their spare moments occupied by household minutiae during the coming week, @@.yellowgreen;saving you some money@@ on penthouse and slave upkeep.
+		<<run cashX(2000, "event", $activeSlave)>>
 	<</replace>>
 <</link>>
 <<if $activeSlave.fetishKnown == 1 && $activeSlave.fetish != "none">>
-<br><<link "Give $him something in return">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You thank $him, and tell $him you're considering what to give $him in return. $He looks flirty, and says,
-	<<switch $activeSlave.fetish>>
-	<<case "submissive">>
-		<<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>>
-			"Plea<<s>>e, would you hold me down and fuck me, <<Master>>?" $He drapes $himself submissively
-			<<if $activeSlave.belly >= 300000>>
-				over $his _belly middle,
-			<<else>>
-				over the couch,
-			<</if>>
-			lest you misunderstand. You could hold $him down and fuck $him, and you do.
-			<<if canDoAnal($activeSlave)>>
-				<<= AnalVCheck()>>
-			<<else>>
-				<<= VaginalVCheck()>>
-			<</if>>
-		<<else>>
-			"Plea<<s>>e, would you hold me down and <<if $PC.dick == 1>>fuck my throat<<else>>grind again<<s>>t my fa<<c>>e<</if>>, <<Master>>?" $He drapes $himself submissively
-			<<if $activeSlave.belly >= 300000>>
-				over $his _belly middle
-			<<else>>
-				over the couch
-			<</if>>
-			and opens wide, lest you misunderstand. You could hold $him down and <<if $PC.dick == 1>>facefuck $him<<else>>make $him eat you out<</if>>, and you do.
-			<<set $activeSlave.counter.oral++, $oralTotal++>>
-		<</if>>
-	<<case "cumslut">>
-		"Plea<<s>>e, may I <<if $PC.dick == 1>>give you a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>, <<Master>>?" $He
-		<<if $activeSlave.belly >= 300000>>
-			leans onto $his _belly middle
-		<<elseif $activeSlave.belly >= 10000>>
-			gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>heavy<</if>> body to its knees
-		<<else>>
-			gets down on $his knees
-		<</if>>
-		and licks $his lips, lest you misunderstand. You could let $him <<if $PC.dick == 1>>give you a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>, and you do.
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<case "humiliation">>
-		<<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>>
-			"Plea<<s>>e, would you fuck me in public, <<Master>>?" $He edges towards the door, lest you misunderstand. You could fuck $him in public, and you do.
-			<<if canDoAnal($activeSlave)>>
-				<<= AnalVCheck()>>
-			<<else>>
-				<<= VaginalVCheck()>>
-			<</if>>
-		<<else>>
-			"Plea<<s>>e, may I <<if $PC.dick == 1>>give you a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>> in public, <<Master>>?" $He edges towards the door, lest you misunderstand. You could <<if $PC.dick == 1>>give you a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>> in public, and you do.
-			<<set $activeSlave.counter.oral++, $oralTotal++>>
-		<</if>>
-	<<case "buttslut">>
-		<<if canDoAnal($activeSlave)>>
-			"Plea<<s>>e, would you fuck my butt, <<Master>>?" $He turns halfway and shakes $his rear enticingly, lest you misunderstand. You could fuck $his butt, and you do.
-			<<= AnalVCheck()>>
-		<<else>>
-			"Plea<<s>>e, would you play with my butt, <<Master>>?" $He turns halfway and shakes $his rear enticingly, lest you misunderstand. You could play with $his butt, and you do, managing intercourse several ways without penetrating $him.
-		<</if>>
-	<<case "boobs">>
-		"Plea<<s>>e, would you play with my boob<<s>>, <<Master>>?" $He sticks out $his chest and bounces $his breasts for you, lest you misunderstand. You could play with $his boobs, and you do, managing mammary intercourse several ways.
-		<<set $activeSlave.counter.mammary += 3, $mammaryTotal += 3>>
-	<<case "pregnancy">>
-		<<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave) && $PC.vagina == 1>>
-			<<if isPlayerFertile($PC)>>
-				"Plea<<s>>e, can I try to get you pregnant, <<Master>>?" $His eyes are glued to your middle. You could let $him seed you, and you do, enjoying the feeling of $his hot cum jetting into your fertile pussy.
-				<<if canImpreg($PC, $activeSlave)>>
-					<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
+	<br><<link "Give $him something in return">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You thank $him, and tell $him you're considering what to give $him in return. $He looks flirty, and says,
+			<<switch $activeSlave.fetish>>
+			<<case "submissive">>
+				<<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>>
+					"Plea<<s>>e, would you hold me down and fuck me, <<Master>>?" $He drapes $himself submissively
+					<<if $activeSlave.belly >= 300000>>
+						over $his _belly middle,
+					<<else>>
+						over the couch,
+					<</if>>
+					lest you misunderstand. You could hold $him down and fuck $him, and you do.
+					<<if canDoAnal($activeSlave)>>
+						<<= AnalVCheck()>>
+					<<else>>
+						<<= VaginalVCheck()>>
+					<</if>>
+				<<else>>
+					"Plea<<s>>e, would you hold me down and <<if $PC.dick == 1>>fuck my throat<<else>>grind again<<s>>t my fa<<c>>e<</if>>, <<Master>>?" $He drapes $himself submissively
+					<<if $activeSlave.belly >= 300000>>
+						over $his _belly middle
+					<<else>>
+						over the couch
+					<</if>>
+					and opens wide, lest you misunderstand. You could hold $him down and <<if $PC.dick == 1>>facefuck $him<<else>>make $him eat you out<</if>>, and you do.
+					<<set $activeSlave.counter.oral++, $oralTotal++>>
 				<</if>>
-			<<elseif $PC.belly >= 1500>>
-				"Plea<<s>>e, could I play with your pregnan<<c>>y while I fuck you, <<Master>>?" $His eyes are glued to your gravid middle. You could let $him play with your pregnancy, and you do, enjoying $his fondling as $he fucks your pussy.
-			<<else>>
-				"Plea<<s>>e, would you pretend to be pregnant with my baby, <<Master>>?" $His eyes are glued to your middle. You could play pretend with $him, and you do,
-				<<if isItemAccessible("a small empathy belly")>>
-					strapping an empathy belly on yourself before bending over for $him.
+			<<case "cumslut">>
+				"Plea<<s>>e, may I <<if $PC.dick == 1>>give you a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>, <<Master>>?" $He
+				<<if $activeSlave.belly >= 300000>>
+					leans onto $his _belly middle
+				<<elseif $activeSlave.belly >= 10000>>
+					gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>heavy<</if>> body to its knees
 				<<else>>
-					tossing on a camisole and sticking a pillow under it before bending over for $him.
+					gets down on $his knees
 				<</if>>
-			<</if>>
-			<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-		<<else>>
-			<<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
-				"Plea<<s>>e, would you <<if $PC.dick == 1>>fill me with your <<s>>eed<<else>>fuck me<</if>>, <<Master>>?" $He reclines on the couch and offers $himself to you, lest you misunderstand. You could <<if $PC.dick == 1>>fill $him with your seed<<else>>fuck $him<</if>>, and you do.
-				<<if canDoVaginal($activeSlave)>>
-					<<= VaginalVCheck()>>
+				and licks $his lips, lest you misunderstand. You could let $him <<if $PC.dick == 1>>give you a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>, and you do.
+				<<set $activeSlave.counter.oral++, $oralTotal++>>
+			<<case "humiliation">>
+				<<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>>
+					"Plea<<s>>e, would you fuck me in public, <<Master>>?" $He edges towards the door, lest you misunderstand. You could fuck $him in public, and you do.
+					<<if canDoAnal($activeSlave)>>
+						<<= AnalVCheck()>>
+					<<else>>
+						<<= VaginalVCheck()>>
+					<</if>>
 				<<else>>
+					"Plea<<s>>e, may I <<if $PC.dick == 1>>give you a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>> in public, <<Master>>?" $He edges towards the door, lest you misunderstand. You could <<if $PC.dick == 1>>give you a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>> in public, and you do.
+					<<set $activeSlave.counter.oral++, $oralTotal++>>
+				<</if>>
+			<<case "buttslut">>
+				<<if canDoAnal($activeSlave)>>
+					"Plea<<s>>e, would you fuck my butt, <<Master>>?" $He turns halfway and shakes $his rear enticingly, lest you misunderstand. You could fuck $his butt, and you do.
 					<<= AnalVCheck()>>
+				<<else>>
+					"Plea<<s>>e, would you play with my butt, <<Master>>?" $He turns halfway and shakes $his rear enticingly, lest you misunderstand. You could play with $his butt, and you do, managing intercourse several ways without penetrating $him.
 				<</if>>
-			<<elseif $activeSlave.pregKnown == 1>>
-				"Plea<<s>>e, would you play with my pregnan<<c>>y, <<Master>>?" $He pokes out $his belly and sways it enticingly, lest you misunderstand. You could play with $his pregnancy, and you do, managing to get off several ways.
-			<<else>>
-				"Plea<<s>>e, would you pretend that I'm pregnant with your baby, <<Master>>?" $He pokes out $his belly and sways it enticingly, lest you misunderstand. You could play pretend with $him, and you do,
-				<<if isItemAccessible("a small empathy belly")>>
-					strapping an empathy belly on $him before feeling $him up.
+			<<case "boobs">>
+				"Plea<<s>>e, would you play with my boob<<s>>, <<Master>>?" $He sticks out $his chest and bounces $his breasts for you, lest you misunderstand. You could play with $his boobs, and you do, managing mammary intercourse several ways.
+				<<set $activeSlave.counter.mammary += 3, $mammaryTotal += 3>>
+			<<case "pregnancy">>
+				<<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave) && $PC.vagina == 1>>
+					<<if isPlayerFertile($PC)>>
+						"Plea<<s>>e, can I try to get you pregnant, <<Master>>?" $His eyes are glued to your middle. You could let $him seed you, and you do, enjoying the feeling of $his hot cum jetting into your fertile pussy.
+						<<if canImpreg($PC, $activeSlave)>>
+							<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
+						<</if>>
+					<<elseif $PC.belly >= 1500>>
+						"Plea<<s>>e, could I play with your pregnan<<c>>y while I fuck you, <<Master>>?" $His eyes are glued to your gravid middle. You could let $him play with your pregnancy, and you do, enjoying $his fondling as $he fucks your pussy.
+					<<else>>
+						"Plea<<s>>e, would you pretend to be pregnant with my baby, <<Master>>?" $His eyes are glued to your middle. You could play pretend with $him, and you do,
+						<<if isItemAccessible("a small empathy belly")>>
+							strapping an empathy belly on yourself before bending over for $him.
+						<<else>>
+							tossing on a camisole and sticking a pillow under it before bending over for $him.
+						<</if>>
+					<</if>>
+					<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
 				<<else>>
-					tossing $him a camisole and a pillow before feeling $him up.
+					<<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
+						"Plea<<s>>e, would you <<if $PC.dick == 1>>fill me with your <<s>>eed<<else>>fuck me<</if>>, <<Master>>?" $He reclines on the couch and offers $himself to you, lest you misunderstand. You could <<if $PC.dick == 1>>fill $him with your seed<<else>>fuck $him<</if>>, and you do.
+						<<if canDoVaginal($activeSlave)>>
+							<<= VaginalVCheck()>>
+						<<else>>
+							<<= AnalVCheck()>>
+						<</if>>
+					<<elseif $activeSlave.pregKnown == 1>>
+						"Plea<<s>>e, would you play with my pregnan<<c>>y, <<Master>>?" $He pokes out $his belly and sways it enticingly, lest you misunderstand. You could play with $his pregnancy, and you do, managing to get off several ways.
+					<<else>>
+						"Plea<<s>>e, would you pretend that I'm pregnant with your baby, <<Master>>?" $He pokes out $his belly and sways it enticingly, lest you misunderstand. You could play pretend with $him, and you do,
+						<<if isItemAccessible("a small empathy belly")>>
+							strapping an empathy belly on $him before feeling $him up.
+						<<else>>
+							tossing $him a camisole and a pillow before feeling $him up.
+						<</if>>
+					<</if>>
 				<</if>>
-			<</if>>
-		<</if>>
-	<<case "dom">>
-		<<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>>
-			"Plea<<s>>e, could I bang you, <<Master>>?" $He bounces on $his heels, rock-hard and biting $his lip with anticipation. You could let $him fuck your brains out, and you do, enjoying playing the sub for once.
-			<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-			<<if canImpreg($PC, $activeSlave)>>
-				<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
-			<</if>>
-		<<else>>
-			"Plea<<s>>e, would you fuck my brain<<s>> out, <<Master>>?" $He bounces on $his heels, biting $his lip with anticipation. You could fuck $his brains out, and you do, enjoying the dominant slave's constant sexual one-upmanship.
-			<<if canDoVaginal($activeSlave)>>
-				<<= VaginalVCheck()>>
-			<<elseif canDoAnal($activeSlave)>>
-				<<= AnalVCheck()>>
-			<<else>>
-				<<set $activeSlave.counter.oral++, $oralTotal++>>
-			<</if>>
-		<</if>>
-	<<case "sadist">>
-		<<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>>
-			"Plea<<s>>e, can I pretend to rape you, <<Master>>?" $His eyes are wild. You could let $him rape you, and you do, pretending to go about your day until $he shoves you onto the couch and roughly fucks your
-			<<if $PC.vagina == 1>>
-				pussy.
-				<<if canImpreg($PC, $activeSlave)>>
-					<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
+			<<case "dom">>
+				<<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>>
+					"Plea<<s>>e, could I bang you, <<Master>>?" $He bounces on $his heels, rock-hard and biting $his lip with anticipation. You could let $him fuck your brains out, and you do, enjoying playing the sub for once.
+					<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+					<<if canImpreg($PC, $activeSlave)>>
+						<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
+					<</if>>
+				<<else>>
+					"Plea<<s>>e, would you fuck my brain<<s>> out, <<Master>>?" $He bounces on $his heels, biting $his lip with anticipation. You could fuck $his brains out, and you do, enjoying the dominant slave's constant sexual one-upmanship.
+					<<if canDoVaginal($activeSlave)>>
+						<<= VaginalVCheck()>>
+					<<elseif canDoAnal($activeSlave)>>
+						<<= AnalVCheck()>>
+					<<else>>
+						<<set $activeSlave.counter.oral++, $oralTotal++>>
+					<</if>>
 				<</if>>
+			<<case "sadist">>
+				<<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>>
+					"Plea<<s>>e, can I pretend to rape you, <<Master>>?" $His eyes are wild. You could let $him rape you, and you do, pretending to go about your day until $he shoves you onto the couch and roughly fucks your
+					<<if $PC.vagina == 1>>
+						pussy.
+						<<if canImpreg($PC, $activeSlave)>>
+							<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
+						<</if>>
+					<<else>>
+						ass.
+					<</if>>
+				<<else>>
+					"Plea<<s>>e, would you let me rape <<s>>omeone, <<Master>>?" $His eyes are wild. You could let $him rape someone, and you do, bringing in an appropriate slave and letting $him have $his way with the poor _girlU.
+				<</if>>
+				<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+			<<case "masochist">>
+				<<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>>
+					"Plea<<s>>e, would you rape me, <<Master>>?" $His eyes are hungry. You could rape $him, and you do, throwing $him across the couch and riding $him through so many orgasms that $he begs for mercy.
+					<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+					<<if canImpreg($PC, $activeSlave)>>
+						<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
+					<</if>>
+				<<else>>
+					"Plea<<s>>e, would you rape me, <<Master>>?" $His eyes are hungry. You could rape $him, and you do, throwing $him across the couch and fucking $him so hard $he begs for mercy as $he orgasms.
+					<<if canDoVaginal($activeSlave)>>
+						<<= VaginalVCheck()>>
+					<<elseif canDoAnal($activeSlave)>>
+						<<= AnalVCheck()>>
+					<<else>>
+						<<set $activeSlave.counter.oral++, $oralTotal++>>
+					<</if>>
+				<</if>>
+			<<default>>
+				"I forgot what my feti<<sh>> i<<s>>, but I think it i<<s>> //<<print $activeSlave.fetish>>//; plea<<s>>e report thi<<s>> after you u<<s>>e me."
+			<</switch>>
+			<<if ($activeSlave.fetishStrength > 95)>>
+				This is very close to $his dream of the ideal sexual encounter, and getting rewarded for such devoted behavior with pleasure on such a level encourages $him to @@.mediumaquamarine;trust you.@@
+				<<set $activeSlave.trust += 5>>
 			<<else>>
-				ass.
-			<</if>>
-		<<else>>
-			"Plea<<s>>e, would you let me rape <<s>>omeone, <<Master>>?" $His eyes are wild. You could let $him rape someone, and you do, bringing in an appropriate slave and letting $him have $his way with the poor _girlU.
-		<</if>>
-		<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-	<<case "masochist">>
-		<<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>>
-			"Plea<<s>>e, would you rape me, <<Master>>?" $His eyes are hungry. You could rape $him, and you do, throwing $him across the couch and riding $him through so many orgasms that $he begs for mercy.
-			<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-			<<if canImpreg($PC, $activeSlave)>>
-				<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
-			<</if>>
-		<<else>>
-			"Plea<<s>>e, would you rape me, <<Master>>?" $His eyes are hungry. You could rape $him, and you do, throwing $him across the couch and fucking $him so hard $he begs for mercy as $he orgasms.
-			<<if canDoVaginal($activeSlave)>>
-				<<= VaginalVCheck()>>
-			<<elseif canDoAnal($activeSlave)>>
-				<<= AnalVCheck()>>
-			<<else>>
-				<<set $activeSlave.counter.oral++, $oralTotal++>>
+				It isn't exactly an old world romance, but sharing this with you @@.lightcoral;advances $his fetish.@@ In the Free Cities, it will do for romance.
+				<<set $activeSlave.fetishStrength += 4>>
 			<</if>>
-		<</if>>
-	<<default>>
-		"I forgot what my feti<<sh>> i<<s>>, but I think it i<<s>> //<<print $activeSlave.fetish>>//; plea<<s>>e report thi<<s>> after you u<<s>>e me."
-	<</switch>>
-	<<if ($activeSlave.fetishStrength > 95)>>
-		This is very close to $his dream of the ideal sexual encounter, and getting rewarded for such devoted behavior with pleasure on such a level encourages $him to @@.mediumaquamarine;trust you.@@
-		<<set $activeSlave.trust += 5>>
-	<<else>>
-		It isn't exactly an old world romance, but sharing this with you @@.lightcoral;advances $his fetish.@@ In the Free Cities, it will do for romance.
-		<<set $activeSlave.fetishStrength += 4>>
-	<</if>>
-	When $he's gone, you direct another slave to return the napkin to its proper place.
-	<</replace>>
-	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option may take virginity//<</if>>
+			When $he's gone, you direct another slave to return the napkin to its proper place.
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option may take $his virginity//<</if>>
 <</if>>
 <br><<link "$He's already gift enough">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You smile gently at $him and tell $him to put $his gift down on your desk. $He does, looking doubtful, but then you thank $him, going on to say that it was very nice of $him to have the thought, but $he's already gift enough. $He looks momentarily confused, but you continue, describing $his body in rhapsodic terms, lingering on $his
-	<<if ($activeSlave.boobs > 5000)>>
-		gargantuan tits
-	<<elseif ($activeSlave.butt > 5)>>
-		massive ass
-	<<elseif ($activeSlave.face > 40)>>
-		model's face
-	<<elseif $activeSlave.bellyPreg > 1500>>
-		rounded pregnancy
-	<<elseif $activeSlave.belly > 1500>>
-		_belly belly
-	<<elseif ($activeSlave.muscles > 30)>>
-		ripped abs
-	<<elseif ($activeSlave.weight > 10)>>
-		plush belly
-	<<else>>
-		nice butt
-	<</if>>
-	and
-	<<if ($activeSlave.boobs < 500)>>
-		cute chest.
-	<<elseif ($activeSlave.butt < 3)>>
-		cute rear.
-	<<elseif ($activeSlave.anus > 1)>>
-		wonderful butthole.
-	<<elseif ($activeSlave.clit > 1)>>
-		cute clit.
-	<<elseif ($activeSlave.waist < -10)>>
-		wasp waist.
-	<<elseif $activeSlave.nipples == "fuckable">>
-		fuckable chest.
-	<<else>>
-		nice nipples.
-	<</if>>
-	$He blushes more and more furiously as you continue, alternately <<if canSee($activeSlave)>>glancing back down at $his feet and stealing looks at you, @@.hotpink;adoration@@ in $his eyes<<else>>facing $his feet and facing you, @@.hotpink;adoration@@ on $his face<</if>>. When $he's gone, you direct another slave to return the napkin to its proper place.
-	<<set $activeSlave.devotion += 4>>
+		You smile gently at $him and tell $him to put $his gift down on your desk. $He does, looking doubtful, but then you thank $him, going on to say that it was very nice of $him to have the thought, but $he's already gift enough. $He looks momentarily confused, but you continue, describing $his body in rhapsodic terms, lingering on $his
+		<<if ($activeSlave.boobs > 5000)>>
+			gargantuan tits
+		<<elseif ($activeSlave.butt > 5)>>
+			massive ass
+		<<elseif ($activeSlave.face > 40)>>
+			model's face
+		<<elseif $activeSlave.bellyPreg > 1500>>
+			rounded pregnancy
+		<<elseif $activeSlave.belly > 1500>>
+			_belly belly
+		<<elseif ($activeSlave.muscles > 30)>>
+			ripped abs
+		<<elseif ($activeSlave.weight > 10)>>
+			plush belly
+		<<else>>
+			nice butt
+		<</if>>
+		and
+		<<if ($activeSlave.boobs < 500)>>
+			cute chest.
+		<<elseif ($activeSlave.butt < 3)>>
+			cute rear.
+		<<elseif ($activeSlave.anus > 1)>>
+			wonderful butthole.
+		<<elseif ($activeSlave.clit > 1)>>
+			cute clit.
+		<<elseif ($activeSlave.waist < -10)>>
+			wasp waist.
+		<<elseif $activeSlave.nipples == "fuckable">>
+			fuckable chest.
+		<<else>>
+			nice nipples.
+		<</if>>
+		$He blushes more and more furiously as you continue, alternately <<if canSee($activeSlave)>>glancing back down at $his feet and stealing looks at you, @@.hotpink;adoration@@ in $his eyes<<else>>facing $his feet and facing you, @@.hotpink;adoration@@ on $his face<</if>>. When $he's gone, you direct another slave to return the napkin to its proper place.
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <<if ndef $activeSlave.napkin>>
-<br><<link "Place it in your display case">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You thank $him kindly, and hold out your hand. $He places $his creation in your hands with something like reverence. You enter a secure command on your desk, and the display case behind you slides open. You place the folded napkin in its own little place within. $activeSlave.slaveName watches incredulously, unable to believe what you're doing. When $he finally processes it, $he bursts into inelegant tears. Cuffing them away from $his eyes and sniffling, $he tells you @@.hotpink;$he loves you.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.napkin = 1>>
-	<<set _napkin = "a cloth napkin skillfully folded into the shape of " + _napkin + " given to you by " + $activeSlave.slaveName>>
-	<<set $trinkets.push(_napkin)>>
-	<</replace>>
-<</link>>
+	<br><<link "Place it in your display case">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You thank $him kindly, and hold out your hand. $He places $his creation in your hands with something like reverence. You enter a secure command on your desk, and the display case behind you slides open. You place the folded napkin in its own little place within. $activeSlave.slaveName watches incredulously, unable to believe what you're doing. When $he finally processes it, $he bursts into inelegant tears. Cuffing them away from $his eyes and sniffling, $he tells you @@.hotpink;$he loves you.@@
+			<<set $activeSlave.devotion += 4, $activeSlave.napkin = 1>>
+			<<set _napkin = "a cloth napkin skillfully folded into the shape of " + _napkin + " given to you by " + $activeSlave.slaveName>>
+			<<set $trinkets.push(_napkin)>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "mods please">>
@@ -12571,96 +12576,96 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Perform it yourself">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You stand up from behind your desk and head towards the body modification studio, <<if canSee($activeSlave)>>crooking a finger at<<else>>calling<</if>> $him as you as you go. $He follows bouncily, thanking you profusely, and then thanking you again when it becomes apparent to $him that you intend to do the body art yourself. $He snuggles into the chair, relaxing as the restraints bind $him in. They're not really necessary to modify a willing $girl, never mind one this enthusiastic, but they could possibly prevent $him from flinching, and it's not like $he resents being bound at this point.
-	<br><br>
-	Manipulating the machine, you
-	<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
-		place the first piercing, eliciting a hum of mild pain and abject submission from $activeSlave.slaveName. The piercing session goes on and on, with the slave sinking into a boneless, mindless state in which $his being is completely in your hands. $He's almost sleepy when you finally release $him, but $he rises and <<if canSee($activeSlave)>>turns, craning around to see in the mirror<<else>>gingerly feeling around $his new piercings<</if>>. $He @@.hotpink;smiles devotedly,@@ and asks you when $he'll be healed enough that $he can be laced up.
-		<<set $activeSlave.corsetPiercing = 1>>
-	<<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
-		hold $his mouth agape and place the first piercing. $He can't make much of a facial expression with $his mouth that wide, but there is a lewd <<if canSee($activeSlave)>>glint in $his eye<<else>>look on $his face<</if>> when $he realizes $he's getting more than one. When you're done, $he's sore enough that $he gestures $his thanks, @@.hotpink;smiling devotedly,@@ and begs you to try $him out when $he's healed up.
-		<<set $activeSlave.tonguePiercing = 2>>
-	<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
-		activate the ink gun, its low buzzing drawing a moan of anticipation out of $activeSlave.slaveName. Working at a touchscreen, you exercise your artistic talents, inscribing the slave's status as a sex object on $his forehead. The pain is intense, but $he tolerates it, the tears running fast out of the corners of $his eyes and low groans rising out of $his throat. When $he's finally allowed to rise<<if canSee($activeSlave)>> and sees $himself in a mirror<<elseif canHear($activeSlave)>>and listens intently on your descriptions of $his new face<</if>>, $he blushes furiously and cries harder, knowing that $his status as a humiliation slut is now permanent. This culmination of $his deeply perverse sense of self @@.hotpink;draws $him closer to you.@@
-		<<set $activeSlave.lipsTat = "degradation">>
-	<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
-		place a spreader to keep $his legs and cheeks apart and start piercing. $He whines with the pain, and then gasps when $he realizes that the piercing is going on much longer than $he expected. You give $him a couple of huge piercings below $his anus, big enough that $he'll never be free of them rubbing against $his slutty butthole. Not done yet, you put some small, smooth studs around it, just to make sure nobody can possibly misunderstand where to fuck this bitch. $He gets up gingerly, but @@.hotpink;smiling sluttily.@@
-		<<set $activeSlave.anusPiercing = 2>>
-	<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
-		<<if ($activeSlave.nipples.includes("inverted"))>>
-			use a couple of its actuators to stimulate $his nipples until they're almost all the way protruded, and then direct them to pull them out all the way. $He screams wholeheartedly at the pain, yelling on and on until $he's out of breath and relaxes against the restraints, gasping and crying.
-		<<else>>
-			use its actuators to pull $his nipples out as far as they will go, forcing a gasp of pain out of $him.
-		<</if>>
-		$He expects a simple nipple piercing, one for each boob; what $he gets is a set of heavy rings in each nipple. $He's no masochist, so the pleasure will come later, but $he moans as $he feels the gradual addition of weight to $his nipples. $He rises very carefully, trying to keep $his boobs still, and @@.hotpink;smiles devotedly@@ at you. Soon enough, $he'll be able to orgasm by walking.
-		<<set $activeSlave.nipplesPiercing = 2>>
-	<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
-		<<if $activeSlave.belly >= 10001>>
-			hold $his _belly stomach steady and pierce $his navel with the largest, heaviest ring available. There is a lewd <<if canSee($activeSlave)>>glint in $his eye<<else>>look on $his face<</if>> as $he feels the new weight settle against $his middle. $He rises very carefully, trying to keep $his new piercing from moving, and @@.hotpink;smiles devotedly@@ at you. Soon enough, all eyes will be on $his belly as $he waddles by.
-			<<set $activeSlave.navelPiercing = 2>>
-		<<else>>
-			activate the ink gun, its low buzzing drawing a moan of anticipation out of $activeSlave.slaveName. Working at a touchscreen, you exercise your artistic talents, beautifying $his <<if $activeSlave.belly >= 150>> _belly stomach<<else>>abdomen<</if>> with an inducement to fuck $him.
-			<<if canSee($activeSlave)>>
-				<<if $activeSlave.belly >= 5000>>
-					$He can't see what you are inking into the underside of $his belly, but $he tries anyway.
+		You stand up from behind your desk and head towards the body modification studio, <<if canSee($activeSlave)>>crooking a finger at<<else>>calling<</if>> $him as you as you go. $He follows bouncily, thanking you profusely, and then thanking you again when it becomes apparent to $him that you intend to do the body art yourself. $He snuggles into the chair, relaxing as the restraints bind $him in. They're not really necessary to modify a willing $girl, never mind one this enthusiastic, but they could possibly prevent $him from flinching, and it's not like $he resents being bound at this point.
+		<br><br>
+		Manipulating the machine, you
+		<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
+			place the first piercing, eliciting a hum of mild pain and abject submission from $activeSlave.slaveName. The piercing session goes on and on, with the slave sinking into a boneless, mindless state in which $his being is completely in your hands. $He's almost sleepy when you finally release $him, but $he rises and <<if canSee($activeSlave)>>turns, craning around to see in the mirror<<else>>gingerly feeling around $his new piercings<</if>>. $He @@.hotpink;smiles devotedly,@@ and asks you when $he'll be healed enough that $he can be laced up.
+			<<set $activeSlave.corsetPiercing = 1>>
+		<<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
+			hold $his mouth agape and place the first piercing. $He can't make much of a facial expression with $his mouth that wide, but there is a lewd <<if canSee($activeSlave)>>glint in $his eye<<else>>look on $his face<</if>> when $he realizes $he's getting more than one. When you're done, $he's sore enough that $he gestures $his thanks, @@.hotpink;smiling devotedly,@@ and begs you to try $him out when $he's healed up.
+			<<set $activeSlave.tonguePiercing = 2>>
+		<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
+			activate the ink gun, its low buzzing drawing a moan of anticipation out of $activeSlave.slaveName. Working at a touchscreen, you exercise your artistic talents, inscribing the slave's status as a sex object on $his forehead. The pain is intense, but $he tolerates it, the tears running fast out of the corners of $his eyes and low groans rising out of $his throat. When $he's finally allowed to rise<<if canSee($activeSlave)>> and sees $himself in a mirror<<elseif canHear($activeSlave)>>and listens intently on your descriptions of $his new face<</if>>, $he blushes furiously and cries harder, knowing that $his status as a humiliation slut is now permanent. This culmination of $his deeply perverse sense of self @@.hotpink;draws $him closer to you.@@
+			<<set $activeSlave.lipsTat = "degradation">>
+		<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
+			place a spreader to keep $his legs and cheeks apart and start piercing. $He whines with the pain, and then gasps when $he realizes that the piercing is going on much longer than $he expected. You give $him a couple of huge piercings below $his anus, big enough that $he'll never be free of them rubbing against $his slutty butthole. Not done yet, you put some small, smooth studs around it, just to make sure nobody can possibly misunderstand where to fuck this bitch. $He gets up gingerly, but @@.hotpink;smiling sluttily.@@
+			<<set $activeSlave.anusPiercing = 2>>
+		<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
+			<<if ($activeSlave.nipples.includes("inverted"))>>
+				use a couple of its actuators to stimulate $his nipples until they're almost all the way protruded, and then direct them to pull them out all the way. $He screams wholeheartedly at the pain, yelling on and on until $he's out of breath and relaxes against the restraints, gasping and crying.
+			<<else>>
+				use its actuators to pull $his nipples out as far as they will go, forcing a gasp of pain out of $him.
+			<</if>>
+			$He expects a simple nipple piercing, one for each boob; what $he gets is a set of heavy rings in each nipple. $He's no masochist, so the pleasure will come later, but $he moans as $he feels the gradual addition of weight to $his nipples. $He rises very carefully, trying to keep $his boobs still, and @@.hotpink;smiles devotedly@@ at you. Soon enough, $he'll be able to orgasm by walking.
+			<<set $activeSlave.nipplesPiercing = 2>>
+		<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
+			<<if $activeSlave.belly >= 10001>>
+				hold $his _belly stomach steady and pierce $his navel with the largest, heaviest ring available. There is a lewd <<if canSee($activeSlave)>>glint in $his eye<<else>>look on $his face<</if>> as $he feels the new weight settle against $his middle. $He rises very carefully, trying to keep $his new piercing from moving, and @@.hotpink;smiles devotedly@@ at you. Soon enough, all eyes will be on $his belly as $he waddles by.
+				<<set $activeSlave.navelPiercing = 2>>
+			<<else>>
+				activate the ink gun, its low buzzing drawing a moan of anticipation out of $activeSlave.slaveName. Working at a touchscreen, you exercise your artistic talents, beautifying $his <<if $activeSlave.belly >= 150>> _belly stomach<<else>>abdomen<</if>> with an inducement to fuck $him.
+				<<if canSee($activeSlave)>>
+					<<if $activeSlave.belly >= 5000>>
+						$He can't see what you are inking into the underside of $his belly, but $he tries anyway.
+					<<else>>
+						$He's just able to crane $his head enough to see the work, and eagerly watches.
+					<</if>>
+					When you're done, $he stares at $himself for a long time,
 				<<else>>
-					$He's just able to crane $his head enough to see the work, and eagerly watches.
+					Once you finish $his new tattoo, you describe it to $him in detail. $He pauses for a moment,
 				<</if>>
-				When you're done, $he stares at $himself for a long time,
+				a curiously mixed expression on $his face. This is $his life now; it's permanently written on $him, and @@.hotpink;$he knows it.@@
+				<<set $activeSlave.vaginaTat = "degradation">>
+			<</if>>
+		<<elseif ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1)>>
+			activate the ink gun, its low buzzing drawing a moan of anticipation out of $activeSlave.slaveName. Working at a touchscreen, you exercise your artistic talents, making the side of $his face fierce with tribal patterns. Tattooing over such thin and sensitive skin is intensely painful, but $he tolerates it, permitting nothing but a low and continuing growl to escape. $He's obviously tired out by the pain when $he's finally allowed to rise, but $he <<if canSee($activeSlave)>>looks at $himself in the mirror<<elseif canHear($activeSlave)>>listens to your description<<else>>traces the design with $his fingertips<</if>> with @@.hotpink;obvious approval.@@
+			<<set $activeSlave.lipsTat = "tribal patterns">>
+		<<elseif ($activeSlave.fetish == "sadist") && ($activeSlave.fetishKnown == 1)>>
+			<<if canAchieveErection($activeSlave)>>
+				take hold of $his most intimate parts and put a set of massive piercings straight through $his shaft. $He shrieks with agony, the noise going on and on before diminishing into breathless sobbing. Much later, when $he gets gingerly up from the chair, $he doesn't look eager to stick $his cock in anything, but $he's @@.hotpink;thankful enough.@@
+				<<set $activeSlave.dickPiercing = 2>>
+			<<elseif $activeSlave.dick > 0>>
+				hold $his mouth agape and place the first piercing. $He can't make much of a facial expression with $his mouth that wide, but there is a lewd <<if canSee($activeSlave)>>glint in $his eye<<else>>look on $his face<</if>> when $he realizes $he's getting more than one. When you're done, $he's sore enough that $he gestures $his thanks, @@.hotpink;smiling devotedly;@@ $he looks eager to try out $his new piercing on a fresh pussy.
+				<<set $activeSlave.tonguePiercing = 2>>
 			<<else>>
-				Once you finish $his new tattoo, you describe it to $him in detail. $He pauses for a moment,
+				take hold of $his most intimate parts and put a set of massive piercings straight through $his pussylips. $He shrieks with agony, the noise going on and on before diminishing into breathless sobbing. Much later, when $he gets gingerly up from the chair, $he doesn't look eager to trib anything, but $he's @@.hotpink;thankful enough.@@
+				<<set $activeSlave.vaginaPiercing = 2>>
 			<</if>>
-			a curiously mixed expression on $his face. This is $his life now; it's permanently written on $him, and @@.hotpink;$he knows it.@@
-			<<set $activeSlave.vaginaTat = "degradation">>
-		<</if>>
-	<<elseif ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1)>>
-		activate the ink gun, its low buzzing drawing a moan of anticipation out of $activeSlave.slaveName. Working at a touchscreen, you exercise your artistic talents, making the side of $his face fierce with tribal patterns. Tattooing over such thin and sensitive skin is intensely painful, but $he tolerates it, permitting nothing but a low and continuing growl to escape. $He's obviously tired out by the pain when $he's finally allowed to rise, but $he <<if canSee($activeSlave)>>looks at $himself in the mirror<<elseif canHear($activeSlave)>>listens to your description<<else>>traces the design with $his fingertips<</if>> with @@.hotpink;obvious approval.@@
-		<<set $activeSlave.lipsTat = "tribal patterns">>
-	<<elseif ($activeSlave.fetish == "sadist") && ($activeSlave.fetishKnown == 1)>>
-		<<if canAchieveErection($activeSlave)>>
-			take hold of $his most intimate parts and put a set of massive piercings straight through $his shaft. $He shrieks with agony, the noise going on and on before diminishing into breathless sobbing. Much later, when $he gets gingerly up from the chair, $he doesn't look eager to stick $his cock in anything, but $he's @@.hotpink;thankful enough.@@
-			<<set $activeSlave.dickPiercing = 2>>
-		<<elseif $activeSlave.dick > 0>>
-			hold $his mouth agape and place the first piercing. $He can't make much of a facial expression with $his mouth that wide, but there is a lewd <<if canSee($activeSlave)>>glint in $his eye<<else>>look on $his face<</if>> when $he realizes $he's getting more than one. When you're done, $he's sore enough that $he gestures $his thanks, @@.hotpink;smiling devotedly;@@ $he looks eager to try out $his new piercing on a fresh pussy.
-			<<set $activeSlave.tonguePiercing = 2>>
-		<<else>>
-			take hold of $his most intimate parts and put a set of massive piercings straight through $his pussylips. $He shrieks with agony, the noise going on and on before diminishing into breathless sobbing. Much later, when $he gets gingerly up from the chair, $he doesn't look eager to trib anything, but $he's @@.hotpink;thankful enough.@@
-			<<set $activeSlave.vaginaPiercing = 2>>
-		<</if>>
-	<<elseif ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
-		take hold of $his most intimate parts and put a series of massive piercing straight through $his
-		<<if $activeSlave.dick > 0>>
-			shaft.
-			<<set $activeSlave.dickPiercing = 2>>
-		<<else>>
-			pussylips.
-			<<set $activeSlave.vaginaPiercing = 2>>
-		<</if>>
-		$He shrieks with agony and then orgasms as strongly as you've ever seen a slave climax, $his every fiber tensing against the restraints. For a long, long time $he has to work to breathe, the overstimulation clearing slowly. When you finally let $him up, $he hasn't remembered how to talk yet, but $his gaze says it for $him. It looks like $he's just had @@.hotpink;the best sex of $his life.@@
-	<<else>>
-		<<if ($activeSlave.nipples.includes("inverted"))>>
-			use a couple of its actuators to stimulate $his nipples until they're almost all the way protruded, and then direct them to pull them out all the way. $He screams wholeheartedly at the pain, yelling on and on until $he's out of breath and relaxes against the restraints, gasping and crying.
+		<<elseif ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
+			take hold of $his most intimate parts and put a series of massive piercing straight through $his
+			<<if $activeSlave.dick > 0>>
+				shaft.
+				<<set $activeSlave.dickPiercing = 2>>
+			<<else>>
+				pussylips.
+				<<set $activeSlave.vaginaPiercing = 2>>
+			<</if>>
+			$He shrieks with agony and then orgasms as strongly as you've ever seen a slave climax, $his every fiber tensing against the restraints. For a long, long time $he has to work to breathe, the overstimulation clearing slowly. When you finally let $him up, $he hasn't remembered how to talk yet, but $his gaze says it for $him. It looks like $he's just had @@.hotpink;the best sex of $his life.@@
 		<<else>>
-			use its actuators to pull $his nipples out as far as they will go, forcing a gasp of pain out of $him.
+			<<if ($activeSlave.nipples.includes("inverted"))>>
+				use a couple of its actuators to stimulate $his nipples until they're almost all the way protruded, and then direct them to pull them out all the way. $He screams wholeheartedly at the pain, yelling on and on until $he's out of breath and relaxes against the restraints, gasping and crying.
+			<<else>>
+				use its actuators to pull $his nipples out as far as they will go, forcing a gasp of pain out of $him.
+			<</if>>
+			This done, you give $him a simple pair of barbell nipple piercings. The machine makes this take less time than it takes to describe it, and after a shocked squeal of pain $he's released. $He rises carefully, trying to keep $his boobs still, and @@.hotpink;smiles thankfully@@ at you. $He <<if canSee($activeSlave)>>glances at $himself in the mirror<<else>>listens to your description of $him<</if>>, looking pleased.
+			<<set $activeSlave.nipplesPiercing = 1>>
 		<</if>>
-		This done, you give $him a simple pair of barbell nipple piercings. The machine makes this take less time than it takes to describe it, and after a shocked squeal of pain $he's released. $He rises carefully, trying to keep $his boobs still, and @@.hotpink;smiles thankfully@@ at you. $He <<if canSee($activeSlave)>>glances at $himself in the mirror<<else>>listens to your description of $him<</if>>, looking pleased.
-		<<set $activeSlave.nipplesPiercing = 1>>
-	<</if>>
-	<<set $activeSlave.devotion += 5>>
+		<<set $activeSlave.devotion += 5>>
 	<</replace>>
 <</link>>
 <br><<link "$He's beautiful just the way $he is">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him firmly that $he's beautiful just the way $he is. $He blushes and giggles at the absurdly trite statement. You conclude the inspection, and $he continues on to the next item in $his life as a sex slave, @@.mediumaquamarine;pleased and reassured@@ that you have a plan for what $he should look like.
-	<<set $activeSlave.trust += 4>>
+		You tell $him firmly that $he's beautiful just the way $he is. $He blushes and giggles at the absurdly trite statement. You conclude the inspection, and $he continues on to the next item in $his life as a sex slave, @@.mediumaquamarine;pleased and reassured@@ that you have a plan for what $he should look like.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <br><<link "No, and slaves should not make requests of this kind">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him firmly that you don't intend to apply body modifications to $him, your tone communicating that further requests on this subject are not permitted. $He understands clearly and looks a little crushed, but trusts that $he won't be punished for violating a rule you hadn't promulgated. You repair the oversight immediately, directing your personal assistant to spread notice that decisions about body modifications are yours alone.
-	<<set $modRequestsAllowed = 0>>
+		You tell $him firmly that you don't intend to apply body modifications to $him, your tone communicating that further requests on this subject are not permitted. $He understands clearly and looks a little crushed, but trusts that $he won't be punished for violating a rule you hadn't promulgated. You repair the oversight immediately, directing your personal assistant to spread notice that decisions about body modifications are yours alone.
+		<<set $modRequestsAllowed = 0>>
 	<</replace>>
 <</link>>
 
@@ -12669,106 +12674,106 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Give $him the necessary injections">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You load the injection gun you keep in your desk, and tap it repeatedly against the cooperative slave's
-	<<if _injection == "boobs">>
-		tits,
-	<<elseif _injection == "butt">>
-		rear end,
-	<<elseif _injection == "lips">>
-		lips,
-	<<elseif _injection == "dick">>
-		cock,
-	<<elseif _injection == "dickMinus">>
-		girly dick,
-	<<elseif _injection == "balls">>
-		sack,
-	<<elseif _injection == "ballsMinus">>
-		useless sack,
-	<<elseif _injection == "clit">>
-		clit,
-	<</if>>
-	producing a hiss each time as pressurized gas painlessly drives the drugs deep into $his tissues. $He leaves @@.hotpink;thanking@@ you profusely, massaging $himself in anticipation.
-	<<set $activeSlave.devotion += 2>>
-	Before the end of the week, $his
-	<<if _injection == "boobs">>
-		@@.lime;boobs have grown,@@ delighting $him.
-		<<if ($activeSlave.markings == "freckles") || ($activeSlave.markings == "heavily freckled")>>
-			$He proudly shows your other slaves $his breast growth by keeping track of the increasing distance between a couple of chosen freckles on the front of $his boobs.
-		<</if>>
-		The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-		<<if $activeSlave.geneMods.NCS == 0>>
-			<<set $activeSlave.health -= 10, $activeSlave.boobs += 200>>
-		<<else>>
-			<<set $activeSlave.health -= 10, $activeSlave.boobs += 100>>
-		<</if>>
-	<<elseif _injection == "butt">>
-		@@.lime;buttocks have grown,@@ delighting $him.
-		<<set $activeSlave.butt++>>
-		The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-		<<set $activeSlave.health -= 10>>
-	<<elseif _injection == "lips">>
-		@@.lime;lips have swelled,@@ delighting $him. The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-		<<set $activeSlave.health -= 10, $activeSlave.lips += 10>>
-	<<elseif _injection == "clit">>
-		@@.lime;clit has grown,@@ delighting $him. The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-		<<set $activeSlave.health -= 10, $activeSlave.clit++>>
-	<<elseif _injection == "dick">>
-		@@.lime;cock has grown,@@ delighting $him.
-		<<set $activeSlave.dick++>>
-		<<if $activeSlave.balls < 5 && random(1,100) > 70>>
-			As a side effect, $his @@.lime;balls have also swelled,@@ which $he sees as an added benefit.
-			<<set $activeSlave.balls++>>
-		<</if>>
-		The dose of growth hormones and male hormone treatment necessary to cause such rapid change left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-		<<set $activeSlave.health -= 10>>
-	<<elseif _injection == "dickMinus">>
-		@@.orange;dick has shrunk,@@ delighting $him.
-		<<set $activeSlave.dick-->>
-		<<if (($activeSlave.geneMods.NCS == 1) && ($activeSlave.dick > 1) && (random(1,100) > 50))>>
+		You load the injection gun you keep in your desk, and tap it repeatedly against the cooperative slave's
+		<<if _injection == "boobs">>
+			tits,
+		<<elseif _injection == "butt">>
+			rear end,
+		<<elseif _injection == "lips">>
+			lips,
+		<<elseif _injection == "dick">>
+			cock,
+		<<elseif _injection == "dickMinus">>
+			girly dick,
+		<<elseif _injection == "balls">>
+			sack,
+		<<elseif _injection == "ballsMinus">>
+			useless sack,
+		<<elseif _injection == "clit">>
+			clit,
+		<</if>>
+		producing a hiss each time as pressurized gas painlessly drives the drugs deep into $his tissues. $He leaves @@.hotpink;thanking@@ you profusely, massaging $himself in anticipation.
+		<<set $activeSlave.devotion += 2>>
+		Before the end of the week, $his
+		<<if _injection == "boobs">>
+			@@.lime;boobs have grown,@@ delighting $him.
+			<<if ($activeSlave.markings == "freckles") || ($activeSlave.markings == "heavily freckled")>>
+				$He proudly shows your other slaves $his breast growth by keeping track of the increasing distance between a couple of chosen freckles on the front of $his boobs.
+			<</if>>
+			The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
+			<<if $activeSlave.geneMods.NCS == 0>>
+				<<set $activeSlave.health -= 10, $activeSlave.boobs += 200>>
+			<<else>>
+				<<set $activeSlave.health -= 10, $activeSlave.boobs += 100>>
+			<</if>>
+		<<elseif _injection == "butt">>
+			@@.lime;buttocks have grown,@@ delighting $him.
+			<<set $activeSlave.butt++>>
+			The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
+			<<set $activeSlave.health -= 10>>
+		<<elseif _injection == "lips">>
+			@@.lime;lips have swelled,@@ delighting $him. The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
+			<<set $activeSlave.health -= 10, $activeSlave.lips += 10>>
+		<<elseif _injection == "clit">>
+			@@.lime;clit has grown,@@ delighting $him. The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
+			<<set $activeSlave.health -= 10, $activeSlave.clit++>>
+		<<elseif _injection == "dick">>
+			@@.lime;cock has grown,@@ delighting $him.
+			<<set $activeSlave.dick++>>
+			<<if $activeSlave.balls < 5 && random(1,100) > 70>>
+				As a side effect, $his @@.lime;balls have also swelled,@@ which $he sees as an added benefit.
+				<<set $activeSlave.balls++>>
+			<</if>>
+			The dose of growth hormones and male hormone treatment necessary to cause such rapid change left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
+			<<set $activeSlave.health -= 10>>
+		<<elseif _injection == "dickMinus">>
+			@@.orange;dick has shrunk,@@ delighting $him.
 			<<set $activeSlave.dick-->>
-		<</if>>
-		<<if $activeSlave.balls > 1 && random(1,100) > 70>>
-			As a side effect, $his @@.orange;balls have also atrophied,@@ which $he sees as an added benefit.
-			<<set $activeSlave.balls-->>
+			<<if (($activeSlave.geneMods.NCS == 1) && ($activeSlave.dick > 1) && (random(1,100) > 50))>>
+				<<set $activeSlave.dick-->>
+			<</if>>
+			<<if $activeSlave.balls > 1 && random(1,100) > 70>>
+				As a side effect, $his @@.orange;balls have also atrophied,@@ which $he sees as an added benefit.
+				<<set $activeSlave.balls-->>
+				<<if (($activeSlave.geneMods.NCS == 1) && ($activeSlave.balls > 1) && (random(1,100) > 50))>>
+					<<set $activeSlave.balls-->>
+				<</if>>
+			<</if>>
+			The dose of growth hormones and hormone treatment necessary to cause such rapid tissue reduction left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
+			<<set $activeSlave.health -= 10>>
+		<<elseif _injection == "balls">>
+			@@.lime;testicles have grown,@@ delighting $him. The dose of growth hormones and male hormone treatment necessary to cause such rapid change left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
+			<<set $activeSlave.health -= 10, $activeSlave.balls++>>
+		<<elseif _injection == "ballsMinus">>
+			@@.orange;testicles have shrunk,@@ delighting $him. The dose of growth hormones and hormone treatment necessary to cause such rapid tissue reduction left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
+			<<set $activeSlave.balls--, $activeSlave.health -= 10>>
 			<<if (($activeSlave.geneMods.NCS == 1) && ($activeSlave.balls > 1) && (random(1,100) > 50))>>
 				<<set $activeSlave.balls-->>
 			<</if>>
 		<</if>>
-		The dose of growth hormones and hormone treatment necessary to cause such rapid tissue reduction left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-		<<set $activeSlave.health -= 10>>
-	<<elseif _injection == "balls">>
-		@@.lime;testicles have grown,@@ delighting $him. The dose of growth hormones and male hormone treatment necessary to cause such rapid change left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-		<<set $activeSlave.health -= 10, $activeSlave.balls++>>
-	<<elseif _injection == "ballsMinus">>
-		@@.orange;testicles have shrunk,@@ delighting $him. The dose of growth hormones and hormone treatment necessary to cause such rapid tissue reduction left $him feeling @@.red;rather ill,@@ but $he is recovering normally.
-		<<set $activeSlave.balls--, $activeSlave.health -= 10>>
-		<<if (($activeSlave.geneMods.NCS == 1) && ($activeSlave.balls > 1) && (random(1,100) > 50))>>
-			<<set $activeSlave.balls-->>
-		<</if>>
-	<</if>>
 	<</replace>>
 <</link>>
 <<if $activeSlave.pregKnown == 1>>
-<br><<link "Not when you're pregnant">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that you would prefer not to inject your pregnant slaves with large doses of growth hormones, and $he must respect your judgment in this regard. $He leaves looking disappointed, but vows to return once $he has given birth. $He isn't satisfied with $his body, but @@.mediumaquamarine;trusts@@ that $his <<= WrittenMaster($activeSlave)>> cares for $him and $his unborn child<<if $activeSlave.pregType > 1>>ren<</if>>'s health.
-	<<set $activeSlave.trust++>>
-	<</replace>>
-<</link>>
+	<br><<link "Not when you're pregnant">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him that you would prefer not to inject your pregnant slaves with large doses of growth hormones, and $he must respect your judgment in this regard. $He leaves looking disappointed, but vows to return once $he has given birth. $He isn't satisfied with $his body, but @@.mediumaquamarine;trusts@@ that $his <<= WrittenMaster($activeSlave)>> cares for $him and $his unborn child<<if $activeSlave.pregType > 1>>ren<</if>>'s health.
+			<<set $activeSlave.trust++>>
+		<</replace>>
+	<</link>>
 <</if>>
 <br><<link "Decline">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him that $he's better as $he is, and $he must respect your judgment in this regard. $He leaves looking more @@.hotpink;flattered@@ than disappointed. $He's less insecure in $his own body, and @@.mediumaquamarine;trusts@@ that $his <<= WrittenMaster($activeSlave)>> has a plan for $him.
-	<<set $activeSlave.devotion++, $activeSlave.trust++>>
+		You tell $him that $he's better as $he is, and $he must respect your judgment in this regard. $He leaves looking more @@.hotpink;flattered@@ than disappointed. $He's less insecure in $his own body, and @@.mediumaquamarine;trusts@@ that $his <<= WrittenMaster($activeSlave)>> has a plan for $him.
+		<<set $activeSlave.devotion++, $activeSlave.trust++>>
 	<</replace>>
 <</link>>
 <br><<link "No, and slaves should not make requests of this kind">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him firmly that you don't intend to apply growth hormones to $him at the moment, your tone communicating that further requests on this subject are not permitted. $He understands clearly and looks a little crushed, but trusts that $he won't be punished for violating a rule you hadn't promulgated. You repair the oversight immediately, directing your personal assistant to spread notice that decisions about asset size are yours alone.
-	<<set $expansionRequestsAllowed = 0>>
+		You tell $him firmly that you don't intend to apply growth hormones to $him at the moment, your tone communicating that further requests on this subject are not permitted. $He understands clearly and looks a little crushed, but trusts that $he won't be punished for violating a rule you hadn't promulgated. You repair the oversight immediately, directing your personal assistant to spread notice that decisions about asset size are yours alone.
+		<<set $expansionRequestsAllowed = 0>>
 	<</replace>>
 <</link>>
 
@@ -12777,214 +12782,214 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Not so fast">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	As $he goes, $he follows the natural human impulse when embarrassed, and turns $his head resolutely away from you, trying very hard to forget making such a fool of $himself. This means that $he does not see your rapid, predatory pursuit of $him; nor does $he hear your careful stride across the flooring. $His first indication that $he's prey is when your hands grab $him around $his
-	<<if $activeSlave.bellyPreg >= 5000>>
-		pregnant belly
-	<<elseif $activeSlave.belly >= 5000>>
-		_belly belly
-	<<elseif $activeSlave.weight > 130>>
-		gut
-	<<elseif $activeSlave.weight > 95>>
-		fat belly
-	<<elseif $activeSlave.muscles > 30>>
-		own well-muscled middle
-	<<elseif $activeSlave.weight > 10>>
-		plush belly
-	<<else>>
-		middle
-	<</if>>
-	and hug $him hard against your
-	<<if $PC.belly >= 100000>>
-		massive sweaty pregnancy.
-	<<elseif $PC.belly >= 60000>>
-		giant sweaty pregnancy.
-	<<elseif $PC.belly >= 15000>>
-		huge sweaty pregnancy.
-	<<elseif $PC.belly >= 5000>>
-		sweaty pregnancy.
-	<<elseif $PC.boobsBonus > 2>>
-		enormous sweaty boobs.
-	<<elseif $PC.boobsBonus == 2>>
-		huge sweaty boobs.
-	<<elseif $PC.boobsBonus == 1>>
-		big sweaty boobs.
-	<<elseif $PC.boobs == 1>>
-		sweaty boobs.
-	<<else>>
-		<<if $PC.title == 0>>
-			sweaty, flat chest.
+		As $he goes, $he follows the natural human impulse when embarrassed, and turns $his head resolutely away from you, trying very hard to forget making such a fool of $himself. This means that $he does not see your rapid, predatory pursuit of $him; nor does $he <<if canHear($activeSlave)>>hear<<else>>notice<</if>> your careful stride across the flooring. $His first indication that $he's prey is when your hands grab $him around $his
+		<<if $activeSlave.bellyPreg >= 5000>>
+			pregnant belly
+		<<elseif $activeSlave.belly >= 5000>>
+			_belly belly
+		<<elseif $activeSlave.weight > 130>>
+			gut
+		<<elseif $activeSlave.weight > 95>>
+			fat belly
+		<<elseif $activeSlave.muscles > 30>>
+			own well-muscled middle
+		<<elseif $activeSlave.weight > 10>>
+			plush belly
 		<<else>>
-			sweaty, bare chest.
+			middle
 		<</if>>
-	<</if>>
-	$He stiffens<<if $activeSlave.voice != 0>> and shrieks<</if>> with surprise, but relaxes obediently within your embrace. Your warm, animal presence has an immediate effect. You hear $him suck in $his breath and then feel $him begin to breathe increasingly hard as your scent sinks into $him and $his embarrassment fades.
-	<br><br><span id="result2">
-	<<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
-	<<link "Fuck $him right here">>
-		<<replace "#result2">>
-			<<if $PC.title == 0 || $PC.boobs == 1 || $PC.belly >= 1500>>
-				Despite your feminine appearance, you have capable hands.
-			<<else>>
-				You have strong hands to go with your masculine appeal.
-			<</if>>
-			They rove across $his front, hugging $him hard against you as you massage and grope.
-			<<if $activeSlave.boobs > 4000>>
-				$His tits are so big that hefting them creates a bit of a burn in your biceps, in addition to making $him writhe against you.
-			<<elseif $activeSlave.belly >= 10000>>
-				The skin that covers $his swollen belly is erotically taught, and you run your fingers across it possessively.
-			<<elseif $activeSlave.nipples == "inverted">>
-				You wrap your hands around the bases of $his inverted nipples, and use your strong grip to stimulate and squeeze them until they protrude, much to the writhing slave's anguish.
-			<<elseif $activeSlave.nipples == "fuckable">>
-				You slip your fingers into $his nipples and spread $him wide, making the slave writhe and buck against you.
-			<<else>>
-				You pinch $his nipples and tug them hard, making the slave writhe and buck against you.
-			<</if>>
-		<<if $PC.dick == 0>>
-			You grab one of $his hands and guide it down to $his
-			<<if $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
-				cock,
-			<<elseif canDoVaginal($activeSlave)>>
-				pussy,
-			<<elseif $activeSlave.scrotum > 0 && $activeSlave.balls > 1>>
-				testicles,
-			<<elseif ($activeSlave.chastityPenis == 1)>>
-				caged dick,
-			<<elseif ($activeSlave.chastityVagina)>>
-				chastity belt,
-			<<elseif $activeSlave.vagina == -1>>
-				perineum,
-			<</if>>
-			making $him play with $himself. Meanwhile, you look after your womanhood with your other hand, schlicking expertly while holding $him close, ensuring that $he feels every motion of what you're doing. When your fingers are thoroughly coated with pussyjuice, you drop $his hand, letting $him continue masturbating on $his own, and then use the freed hand to replace the one you're using to touch yourself. Then, you take the wet fingers and push them into $his mouth; $he willingly sucks them clean, using $his tongue to gather every trace of your secretions. You gather sweat from between your breasts, and make $him suck that off $his fingers too. When $he orgasms, you shove $him against the wall and hump against $him and your hand both, climaxing yourself.
+		and hug $him hard against your
+		<<if $PC.belly >= 100000>>
+			massive sweaty pregnancy.
+		<<elseif $PC.belly >= 60000>>
+			giant sweaty pregnancy.
+		<<elseif $PC.belly >= 15000>>
+			huge sweaty pregnancy.
+		<<elseif $PC.belly >= 5000>>
+			sweaty pregnancy.
+		<<elseif $PC.boobsBonus > 2>>
+			enormous sweaty boobs.
+		<<elseif $PC.boobsBonus == 2>>
+			huge sweaty boobs.
+		<<elseif $PC.boobsBonus == 1>>
+			big sweaty boobs.
+		<<elseif $PC.boobs == 1>>
+			sweaty boobs.
 		<<else>>
-			You pull $him up onto $his toes and slide yourself inside $him, the slave gasping when $he feels your hot dick enter $his
-			<<if canDoVaginal($activeSlave)>>
-				cunt.
+			<<if $PC.title == 0>>
+				sweaty, flat chest.
 			<<else>>
-				anus.
+				sweaty, bare chest.
 			<</if>>
-			<<if $PC.belly >= 5000 && $activeSlave.belly >= 10000>>
-				You'd like to lift $him up into a standing fuck, but there is so much distended stomach between the both of you that it's impossible so you opt for a position where you can both penetrate $him and continue your work out.
-				<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-					After a while, you shift positions, freeing your member, and force yourself up $his butt despite the slave's anxious begging.
-					<<= BothVCheck()>>
-					It doesn't take long before you fill $his ass with cum.
-				<<elseif canDoVaginal($activeSlave)>>
-					<<= VaginalVCheck()>>
-					It doesn't take long before you fill $his pussy with cum.
+		<</if>>
+		$He stiffens<<if $activeSlave.voice != 0>> and shrieks<</if>> with surprise, but relaxes obediently within your embrace. Your warm, animal presence has an immediate effect. You hear $him suck in $his breath and then feel $him begin to breathe increasingly hard as your <<if canSmell($activeSlave)>>scent<<else>>body heat<</if>> sinks into $him and $his embarrassment fades.
+		<br><br><span id="result2">
+			<<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
+				<<link "Fuck $him right here">>
+					<<replace "#result2">>
+						<<if $PC.title == 0 || $PC.boobs == 1 || $PC.belly >= 1500>>
+							Despite your feminine appearance, you have capable hands.
+						<<else>>
+							You have strong hands to go with your masculine appeal.
+						<</if>>
+						They rove across $his front, hugging $him hard against you as you massage and grope.
+						<<if $activeSlave.boobs > 4000>>
+							$His tits are so big that hefting them creates a bit of a burn in your biceps, in addition to making $him writhe against you.
+						<<elseif $activeSlave.belly >= 10000>>
+							The skin that covers $his swollen belly is erotically taught, and you run your fingers across it possessively.
+						<<elseif $activeSlave.nipples == "inverted">>
+							You wrap your hands around the bases of $his inverted nipples, and use your strong grip to stimulate and squeeze them until they protrude, much to the writhing slave's anguish.
+						<<elseif $activeSlave.nipples == "fuckable">>
+							You slip your fingers into $his nipples and spread $him wide, making the slave writhe and buck against you.
+						<<else>>
+							You pinch $his nipples and tug them hard, making the slave writhe and buck against you.
+						<</if>>
+					<<if $PC.dick == 0>>
+						You grab one of $his hands and guide it down to $his
+						<<if $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
+							cock,
+						<<elseif canDoVaginal($activeSlave)>>
+							pussy,
+						<<elseif $activeSlave.scrotum > 0 && $activeSlave.balls > 1>>
+							testicles,
+						<<elseif ($activeSlave.chastityPenis == 1)>>
+							caged dick,
+						<<elseif ($activeSlave.chastityVagina)>>
+							chastity belt,
+						<<elseif $activeSlave.vagina == -1>>
+							perineum,
+						<</if>>
+						making $him play with $himself. Meanwhile, you look after your womanhood with your other hand, schlicking expertly while holding $him close, ensuring that $he feels every motion of what you're doing. When your fingers are thoroughly coated with pussyjuice, you drop $his hand, letting $him continue masturbating on $his own, and then use the freed hand to replace the one you're using to touch yourself. Then, you take the wet fingers and push them into $his mouth; $he willingly sucks them clean, using $his tongue to gather every trace of your secretions. You gather sweat from between your breasts, and make $him suck that off $his fingers too. When $he orgasms, you shove $him against the wall and hump against $him and your hand both, climaxing yourself.
+					<<else>>
+						You pull $him up onto $his toes and slide yourself inside $him, the slave gasping when $he feels your hot dick enter $his
+						<<if canDoVaginal($activeSlave)>>
+							cunt.
+						<<else>>
+							anus.
+						<</if>>
+						<<if $PC.belly >= 5000 && $activeSlave.belly >= 10000>>
+							You'd like to lift $him up into a standing fuck, but there is so much distended stomach between the both of you that it's impossible so you opt for a position where you can both penetrate $him and continue your work out.
+							<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+								After a while, you shift positions, freeing your member, and force yourself up $his butt despite the slave's anxious begging.
+								<<= BothVCheck()>>
+								It doesn't take long before you fill $his ass with cum.
+							<<elseif canDoVaginal($activeSlave)>>
+								<<= VaginalVCheck()>>
+								It doesn't take long before you fill $his pussy with cum.
+							<<else>>
+								<<= AnalVCheck()>>
+								It doesn't take long before you fill $his ass with cum.
+							<</if>>
+						<<elseif $PC.belly >= 5000>>
+							You'd like to lift $him up into a standing fuck, but you are far too pregnant to manage. Instead, you lie on your back and have $him work your legs as you fuck $him.
+							<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+								After a while, you lift $him up as high as you can, freeing your member, and then lower $him back down again, forcing yourself up $his butt instead despite the slave's anxious begging.
+								<<= BothVCheck()>>
+								It doesn't take long before you fill $his ass with cum.
+							<<elseif canDoVaginal($activeSlave)>>
+								<<= VaginalVCheck()>>
+								It doesn't take long before you fill $his pussy with cum.
+							<<else>>
+								<<= AnalVCheck()>>
+								It doesn't take long before you fill $his ass with cum.
+							<</if>>
+						<<elseif $activeSlave.belly >= 300000>>
+							You'd like to lift $him up into a standing fuck, but even you aren't strong enough to lift $his extreme weight. Instead, you choose to have $him ride you; supporting $his _belly middle is a workout in its own right.
+							<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+								After a while, you push $him up as high as you can, freeing your member, and then lower $him back down again, forcing yourself up $his butt instead despite the slave's anxious begging.
+								<<= BothVCheck()>>
+								It doesn't take long before you fill $his ass with cum.
+							<<elseif canDoVaginal($activeSlave)>>
+								<<= VaginalVCheck()>>
+								It doesn't take long before you fill $his pussy with cum.
+							<<else>>
+								<<= AnalVCheck()>>
+								It doesn't take long before you fill $his ass with cum.
+							<</if>>
+						<<elseif $activeSlave.belly >= 100000>>
+							Once you're hilted, you hoist $him up by the underarms, shifting your stance to handle $his _belly stomach's weight, and hold $him in midair, impaled on your dick. You can't pound $him all that hard in this challenging position, but the effort of holding $him this way forces you to work out hard, producing an excellent sensation.<<if $PC.vagina == 1>> The position angles your dick upward, producing a lovely massaging sensation in your pussy as you slide in and out of $him.<</if>>
+							<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+								After a while, you lift $him up as high as you can, freeing your member, and then lower $him back down again, forcing yourself up $his butt instead despite the slave's anxious begging.
+								<<= BothVCheck()>>
+								It doesn't take long before you fill $his ass with cum.
+							<<elseif canDoVaginal($activeSlave)>>
+								<<= VaginalVCheck()>>
+								It doesn't take long before you fill $his pussy with cum.
+							<<else>>
+								<<= AnalVCheck()>>
+								It doesn't take long before you fill $his ass with cum.
+							<</if>>
+							You're going to be feeling this tomorrow.
+						<<else>>
+							Once you're hilted, you bring $his hands up on either side of $his head to grasp your shoulders behind $him, and then scoop $his legs up and hoist $him to rest against your chest, held in midair and impaled on your dick. You can't pound $him all that hard in this challenging position, but the effort of holding $himself this way forces $him to tighten $his muscles down hard, producing an excellent sensation.<<if $PC.vagina == 1>> The position angles your dick upward, producing a lovely massaging sensation in your pussy as you slide in and out of $him.<</if>>
+							<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+								After a while, you lift $him up as high as you can, freeing your member, and then lower $him back down again, forcing yourself up $his butt instead despite the slave's anxious begging.
+								<<= BothVCheck()>>
+								It doesn't take long before you fill $his ass with cum.
+							<<elseif canDoVaginal($activeSlave)>>
+								<<= VaginalVCheck()>>
+								It doesn't take long before you fill $his pussy with cum.
+							<<else>>
+								<<= AnalVCheck()>>
+								It doesn't take long before you fill $his ass with cum.
+							<</if>>
+						<</if>>
+					<</if>>
+					You tell your quivering sex toy that $he doesn't have to be embarrassed about $his needs. @@.mediumaquamarine;$He seems relieved@@ that the sexual being $he's becoming is acceptable, at least to you.
+					<<set $activeSlave.trust += 4>>
+				<</replace>>
+			<</link>><<if (($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) && ($PC.dick == 1)>> //This option will take $his virginity//<</if>>
+		<</if>>
+		<br><<link "Have $him lick you clean">>
+			<<replace "#result2">>
+				You take $him by the hand and <<if $PC.belly >= 10000>>waddle<<else>>walk<</if>> towards the shower. The sudden loss of your closeness jerks $him rudely out of $his sexual reverie, but $he follows willingly, perhaps distracted by the view as you shed your workout clothes on the way. When you get there, you pull $him in with you, but you do not turn on the water. Instead, you tell $him to wash you. Not understanding, $he turns to switch on the shower, but you catch $him, and insert two sweaty fingers into the slave's compliant mouth. $He sucks on them, taking refuge in the simple task, and then understands what you mean. $He runs $his tongue up your arm, sucking the salty sweat off you as best $he can. Soon, $he bends down and heads for your
+				<<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>>
+				but you pull $him up again and tell $him to do that last.
+				<<if $PC.belly >= 60000>>
+					$He quickly finds something almost as good by licking and sucking $his way up your linea nigra. When $he reaches your <<if $PC.preg >= 22>>popped<<else>>flattened<</if>> navel, you hold $his head there for a while, savoring the erotic sensation before pushing $him along to the rest of your expansive midriff.
+				<<elseif $PC.belly >= 5000>>
+					$He quickly finds something almost as good by licking and sucking $his way up your linea nigra. When $he reaches your <<if $PC.preg >= 22>>popped<<else>>flattened<</if>> navel, you hold $his head there for a while, savoring the erotic sensation.
+				<<elseif $PC.boobsBonus > 2>>
+					$He quickly finds something almost as good by licking and sucking $his way up the sweaty crevice between your enormous breasts. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue.
+				<<elseif $PC.boobsBonus == 2>>
+					$He quickly finds something almost as good by licking and sucking $his way up the sweaty crevice between your huge breasts. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue.
+				<<elseif $PC.boobsBonus == 1>>
+					$He quickly finds something almost as good by licking and sucking $his way up the sweaty crevice between your big breasts. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue.
+				<<elseif $PC.boobs == 1>>
+					$He quickly finds something almost as good by licking and sucking $his way up the sweaty crevice between your breasts. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue.
 				<<else>>
-					<<= AnalVCheck()>>
-					It doesn't take long before you fill $his ass with cum.
+					<<if $PC.title == 0>>
+						$He settles for kissing and licking $his way up your abs, pecs, and non-existent tits. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue.
+					<<else>>
+						$He settles for kissing and licking $his way up your abs, pecs, and collarbone, before shyly sucking the line of sweat that runs down each of your temples when you perspire heavily off of you.
+					<</if>>
 				<</if>>
-			<<elseif $PC.belly >= 5000>>
-				You'd like to lift $him up into a standing fuck, but you are far too pregnant to manage. Instead, you lie on your back and have $him work your legs as you fuck $him.
-				<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-					After a while, you lift $him up as high as you can, freeing your member, and then lower $him back down again, forcing yourself up $his butt instead despite the slave's anxious begging.
-					<<= BothVCheck()>>
-					It doesn't take long before you fill $his ass with cum.
-				<<elseif canDoVaginal($activeSlave)>>
-					<<= VaginalVCheck()>>
-					It doesn't take long before you fill $his pussy with cum.
+				When you've enjoyed the tongue bath enough, you reach over and activate the shower, the warm water producing a hum from the slave. You coach $him towards your
+				<<if $PC.dick == 0>>
+					cunt, and $he eats you out with enthusiasm
 				<<else>>
-					<<= AnalVCheck()>>
-					It doesn't take long before you fill $his ass with cum.
+					stiff prick, and $he gives you an enthusiastic blowjob<<if $PC.vagina == 1>> before turning $his oral attentions to your pussy<</if>>
 				<</if>>
-			<<elseif $activeSlave.belly >= 300000>>
-				You'd like to lift $him up into a standing fuck, but even you aren't strong enough to lift $his extreme weight. Instead, you choose to have $him ride you; supporting $his _belly middle is a workout in its own right.
-				<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-					After a while, you push $him up as high as you can, freeing your member, and then lower $him back down again, forcing yourself up $his butt instead despite the slave's anxious begging.
-					<<= BothVCheck()>>
-					It doesn't take long before you fill $his ass with cum.
-				<<elseif canDoVaginal($activeSlave)>>
-					<<= VaginalVCheck()>>
-					It doesn't take long before you fill $his pussy with cum.
-				<<else>>
-					<<= AnalVCheck()>>
-					It doesn't take long before you fill $his ass with cum.
-				<</if>>
-			<<elseif $activeSlave.belly >= 100000>>
-				Once you're hilted, you hoist $him up by the underarms, shifting your stance to handle $his _belly stomach's weight, and hold $him in midair, impaled on your dick. You can't pound $him all that hard in this challenging position, but the effort of holding $him this way forces you to work out hard, producing an excellent sensation.<<if $PC.vagina == 1>> The position angles your dick upward, producing a lovely massaging sensation in your pussy as you slide in and out of $him.<</if>>
-				<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-					After a while, you lift $him up as high as you can, freeing your member, and then lower $him back down again, forcing yourself up $his butt instead despite the slave's anxious begging.
-					<<= BothVCheck()>>
-					It doesn't take long before you fill $his ass with cum.
-				<<elseif canDoVaginal($activeSlave)>>
-					<<= VaginalVCheck()>>
-					It doesn't take long before you fill $his pussy with cum.
-				<<else>>
-					<<= AnalVCheck()>>
-					It doesn't take long before you fill $his ass with cum.
-				<</if>>
-				You're going to be feeling this tomorrow.
-			<<else>>
-				Once you're hilted, you bring $his hands up on either side of $his head to grasp your shoulders behind $him, and then scoop $his legs up and hoist $him to rest against your chest, held in midair and impaled on your dick. You can't pound $him all that hard in this challenging position, but the effort of holding $himself this way forces $him to tighten $his muscles down hard, producing an excellent sensation.<<if $PC.vagina == 1>> The position angles your dick upward, producing a lovely massaging sensation in your pussy as you slide in and out of $him.<</if>>
-				<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-					After a while, you lift $him up as high as you can, freeing your member, and then lower $him back down again, forcing yourself up $his butt instead despite the slave's anxious begging.
-					<<= BothVCheck()>>
-					It doesn't take long before you fill $his ass with cum.
-				<<elseif canDoVaginal($activeSlave)>>
-					<<= VaginalVCheck()>>
-					It doesn't take long before you fill $his pussy with cum.
+				as the water plays over you both. After looking up and letting the water cascade down your face for a long moment, you quietly tell $him to masturbate before opening your mouth to drink from the downpour. With your eyes closed against the stream, your only indications that $he's obeying the command is a slight increase in the force with which $he sucks, and a faint
+				<<if canDoVaginal($activeSlave)>>
+					schlicking
+				<<elseif $activeSlave.dick > 0 && canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+					wanking
 				<<else>>
-					<<= AnalVCheck()>>
-					It doesn't take long before you fill $his ass with cum.
+					rubbing
 				<</if>>
-			<</if>>
-		<</if>>
-		You tell your quivering sex toy that $he doesn't have to be embarrassed about $his needs. @@.mediumaquamarine;$He seems relieved@@ that the sexual being $he's becoming is acceptable, at least to you.
-		<<set $activeSlave.trust += 4>>
-		<</replace>>
-	<</link>><<if (($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) && ($PC.dick == 1)>> //This option will take virginity//<</if>>
-	<</if>>
-	<br><<link "Have $him lick you clean">>
-		<<replace "#result2">>
-		You take $him by the hand and <<if $PC.belly >= 10000>>waddle<<else>>walk<</if>> towards the shower. The sudden loss of your closeness jerks $him rudely out of $his sexual reverie, but $he follows willingly, perhaps distracted by the view as you shed your workout clothes on the way. When you get there, you pull $him in with you, but you do not turn on the water. Instead, you tell $him to wash you. Not understanding, $he turns to switch on the shower, but you catch $him, and insert two sweaty fingers into the slave's compliant mouth. $He sucks on them, taking refuge in the simple task, and then understands what you mean. $He runs $his tongue up your arm, sucking the salty sweat off you as best $he can. Soon, $he bends down and heads for your
-		<<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>>
-		but you pull $him up again and tell $him to do that last.
-		<<if $PC.belly >= 60000>>
-			$He quickly finds something almost as good by licking and sucking $his way up your linea nigra. When $he reaches your <<if $PC.preg >= 22>>popped<<else>>flattened<</if>> navel, you hold $his head there for a while, savoring the erotic sensation before pushing $him along to the rest of your expansive midriff.
-		<<elseif $PC.belly >= 5000>>
-			$He quickly finds something almost as good by licking and sucking $his way up your linea nigra. When $he reaches your <<if $PC.preg >= 22>>popped<<else>>flattened<</if>> navel, you hold $his head there for a while, savoring the erotic sensation.
-		<<elseif $PC.boobsBonus > 2>>
-			$He quickly finds something almost as good by licking and sucking $his way up the sweaty crevice between your enormous breasts. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue.
-		<<elseif $PC.boobsBonus == 2>>
-			$He quickly finds something almost as good by licking and sucking $his way up the sweaty crevice between your huge breasts. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue.
-		<<elseif $PC.boobsBonus == 1>>
-			$He quickly finds something almost as good by licking and sucking $his way up the sweaty crevice between your big breasts. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue.
-		<<elseif $PC.boobs == 1>>
-			$He quickly finds something almost as good by licking and sucking $his way up the sweaty crevice between your breasts. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue.
-		<<else>>
-			<<if $PC.title == 0>>
-				$He settles for kissing and licking $his way up your abs, pecs, and non-existent tits. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue.
-			<<else>>
-				$He settles for kissing and licking $his way up your abs, pecs, and collarbone, before shyly sucking the line of sweat that runs down each of your temples when you perspire heavily off of you.
-			<</if>>
-		<</if>>
-		When you've enjoyed the tongue bath enough, you reach over and activate the shower, the warm water producing a hum from the slave. You coach $him towards your
-		<<if $PC.dick == 0>>
-			cunt, and $he eats you out with enthusiasm
-		<<else>>
-			stiff prick, and $he gives you an enthusiastic blowjob<<if $PC.vagina == 1>> before turning $his oral attentions to your pussy<</if>>
-		<</if>>
-		as the water plays over you both. After looking up and letting the water cascade down your face for a long moment, you quietly tell $him to masturbate before opening your mouth to drink from the downpour. With your eyes closed against the stream, your only indications that $he's obeying the command is a slight increase in the force with which $he sucks, and a faint
-		<<if canDoVaginal($activeSlave)>>
-			schlicking
-		<<elseif $activeSlave.dick > 0 && canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-			wanking
-		<<else>>
-			rubbing
-		<</if>>
-		noise as $he jerks off. $He must @@.hotpink;find you quite attractive,@@ since giving you oral in the shower while playing with $himself brings $him to orgasm with almost indecent speed.
-		<<set $activeSlave.counter.oral++, $oralTotal++, $activeSlave.devotion += 4>>
-		<</replace>>
-	<</link>>
-	</span>
+				noise as $he jerks off. $He must @@.hotpink;find you quite attractive,@@ since giving you oral in the shower while playing with $himself brings $him to orgasm with almost indecent speed.
+				<<set $activeSlave.counter.oral++, $oralTotal++, $activeSlave.devotion += 4>>
+				<</replace>>
+			<</link>>
+		</span>
 	<</replace>>
 <</link>>
 <br><<link "Let $him go">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You let $him go, and $he hurries off to go on with $his day. But $his attraction to you does not go away, and neither does the embarrassment of having made a fool of $himself in front of you. The experience leaves $him @@.gold;a bit worried@@ about how life as your slave is affecting $him, but @@.hotpink;increasingly infatuated with you.@@ Before long, love will conquer doubt.
-	<<set $activeSlave.devotion += 4, $activeSlave.trust -= 2>>
+		You let $him go, and $he hurries off to go on with $his day. But $his attraction to you does not go away, and neither does the embarrassment of having made a fool of $himself in front of you. The experience leaves $him @@.gold;a bit worried@@ about how life as your slave is affecting $him, but @@.hotpink;increasingly infatuated with you.@@ Before long, love will conquer doubt.
+		<<set $activeSlave.devotion += 4, $activeSlave.trust -= 2>>
 	<</replace>>
 <</link>>
 
@@ -12993,373 +12998,373 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Permit $him to serve you in a way $he'll be comfortable with">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The poor $girl is having trouble with
-	<<if $activeSlave.attrXY <= 35>>
-		guys, so you decide to be kind to $him and play up your feminine side. You lift $his $activeSlave.skin chin with a soft touch, and kiss $him gently on the lips, pressing your breasts full against $his
-		<<if $activeSlave.boobs > 5000>>
-			titanic udders, which are squashed between you.
-		<<elseif $activeSlave.boobs > 1000>>
-			own lovely boobs.
-		<<else>>
-			chest.
-		<</if>>
-		You keep your hips cocked back and to the side, so that your rapidly stiffening dick stays clear of $him. Taking $his hands in your own, you guide them to your
-		<<if $PC.boobsBonus > 2>>
-			enormous <<if $PC.boobsImplant == 1>>chest balloons<<else>>cow tits<</if>>.
-		<<elseif $PC.boobsBonus == 2>>
-			huge<<if $PC.boobsImplant == 1>>, clearly fake<<else>>, heavy<</if>> breasts.
-		<<elseif $PC.boobsBonus == 1>>
-			big<<if $PC.boobsImplant == 1>>, perky<</if>> breasts.
-		<<elseif $PC.boobsBonus == -0.5>>
-			handfilling breasts
-		<<elseif $PC.boobsBonus == -1>>
-			average breasts
-		<<elseif $PC.boobs == 1>>
-			generous breasts.
-		<</if>>
-		<br><br>
-		$He hesitates, clearly surprised that you're allowing $him to fondle you, but building arousal is making $him forget $his awkwardness and $he begins to play with your boobs in earnest. You direct $his fingers to your nipples, and $he obeys the nonverbal cue, devoting more attention to the <<if $PC.preg > 30 || $PC.births > 0>>milky<<else>>hard<</if>>, sensitive nubs. Satisfied that $he's got the idea, you run your hands lightly down $his
-		<<if $activeSlave.weight > 190>>
-			voluminous
-		<<elseif $activeSlave.belly >= 5000>>
-			<<if $activeSlave.bellyPreg >= 3000>>
-				gravid
-			<<elseif $activeSlave.bellyImplant >= 3000>>
-				rounded
+		The poor $girl is having trouble with
+		<<if $activeSlave.attrXY <= 35>>
+			guys, so you decide to be kind to $him and play up your feminine side. You lift $his $activeSlave.skin chin with a soft touch, and kiss $him gently on the lips, pressing your breasts full against $his
+			<<if $activeSlave.boobs > 5000>>
+				titanic udders, which are squashed between you.
+			<<elseif $activeSlave.boobs > 1000>>
+				own lovely boobs.
 			<<else>>
-				swollen
+				chest.
 			<</if>>
-		<<elseif $activeSlave.weight > 30>>
-			soft
-		<<elseif $activeSlave.muscles > 30>>
-			rock hard
-		<<elseif $activeSlave.weight > 10>>
-			plush
-		<<elseif $activeSlave.muscles > 5>>
-			toned
-		<<else>>
-			soft
-		<</if>>
-		body and give $his
-		<<if $activeSlave.butt > 15>>
-			obscene
-		<<elseif $activeSlave.butt > 10>>
-			absurd
-		<<elseif $activeSlave.butt > 6>>
-			monstrous
-		<<elseif $activeSlave.butt > 3>>
-			healthy
-		<<else>>
-			cute
-		<</if>>
-		buttocks a gentle massage.
-		<br><br>
-		$He has $his eyes closed, and is spared any indication that $he's petting and being petted by a person with a cock. $His arousal builds quickly, and so does yours. You resolve the situation by using a hand on each of you: you finish yourself off with practiced ease while giving $his
-		<<if canDoVaginal($activeSlave)>>
-			clit
-		<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-			own erection
-		<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-			fat member
-		<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-			soft member
-		<<elseif ($activeSlave.chastityPenis == 1)>>
-			nipples
-		<<elseif ($activeSlave.chastityVagina)>>
-			nipples
-		<<else>>
-			soft perineum
-		<</if>>
-		some manual stimulation that tips $him over the edge. $He opens $his eyes slowly, @@.hotpink;grateful@@ that you were so merciful.
-	<<elseif $activeSlave.attrXX <= 35>>
-		girls, so you decide to be kind to $him and play up your masculine side. You grab the side of $his neck with a rough grip, and pull $him downward, forcing $him to $his knees. $He goes willingly, $his field of vision filling with your rapidly hardening member.
-		<<if ($activeSlave.teeth == "removable")>>
-			$He quickly pulls $his removable teeth out, getting ready to offer you $his soft facepussy.
-		<<elseif ($activeSlave.teeth == "pointy")>>
-			$He runs $his tongue over $his frightening teeth carefully, and then opens $his jaws wide, getting ready to keep $his fangs well clear of your shaft.
-		<<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>>
-			$He runs $his tongue over $his braces, and then opens wide, mindful of keeping $his orthodontia clear of your shaft.
-		<<elseif ($activeSlave.teeth == "gapped")>>
-			$He runs $his tongue across the gap in $his front teeth and opens wide.
+			You keep your hips cocked back and to the side, so that your rapidly stiffening dick stays clear of $him. Taking $his hands in your own, you guide them to your
+			<<if $PC.boobsBonus > 2>>
+				enormous <<if $PC.boobsImplant == 1>>chest balloons<<else>>cow tits<</if>>.
+			<<elseif $PC.boobsBonus == 2>>
+				huge<<if $PC.boobsImplant == 1>>, clearly fake<<else>>, heavy<</if>> breasts.
+			<<elseif $PC.boobsBonus == 1>>
+				big<<if $PC.boobsImplant == 1>>, perky<</if>> breasts.
+			<<elseif $PC.boobsBonus == -0.5>>
+				handfilling breasts
+			<<elseif $PC.boobsBonus == -1>>
+				average breasts
+			<<elseif $PC.boobs == 1>>
+				generous breasts.
+			<</if>>
+			<br><br>
+			$He hesitates, clearly surprised that you're allowing $him to fondle you, but building arousal is making $him forget $his awkwardness and $he begins to play with your boobs in earnest. You direct $his fingers to your nipples, and $he obeys the nonverbal cue, devoting more attention to the <<if $PC.preg > 30 || $PC.births > 0>>milky<<else>>hard<</if>>, sensitive nubs. Satisfied that $he's got the idea, you run your hands lightly down $his
+			<<if $activeSlave.weight > 190>>
+				voluminous
+			<<elseif $activeSlave.belly >= 5000>>
+				<<if $activeSlave.bellyPreg >= 3000>>
+					gravid
+				<<elseif $activeSlave.bellyImplant >= 3000>>
+					rounded
+				<<else>>
+					swollen
+				<</if>>
+			<<elseif $activeSlave.weight > 30>>
+				soft
+			<<elseif $activeSlave.muscles > 30>>
+				rock hard
+			<<elseif $activeSlave.weight > 10>>
+				plush
+			<<elseif $activeSlave.muscles > 5>>
+				toned
+			<<else>>
+				soft
+			<</if>>
+			body and give $his
+			<<if $activeSlave.butt > 15>>
+				obscene
+			<<elseif $activeSlave.butt > 10>>
+				absurd
+			<<elseif $activeSlave.butt > 6>>
+				monstrous
+			<<elseif $activeSlave.butt > 3>>
+				healthy
+			<<else>>
+				cute
+			<</if>>
+			buttocks a gentle massage.
+			<br><br>
+			$He has $his eyes closed, and is spared any indication that $he's petting and being petted by a person with a cock. $His arousal builds quickly, and so does yours. You resolve the situation by using a hand on each of you: you finish yourself off with practiced ease while giving $his
+			<<if canDoVaginal($activeSlave)>>
+				clit
+			<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+				own erection
+			<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+				fat member
+			<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+				soft member
+			<<elseif ($activeSlave.chastityPenis == 1)>>
+				nipples
+			<<elseif ($activeSlave.chastityVagina)>>
+				nipples
+			<<else>>
+				soft perineum
+			<</if>>
+			some manual stimulation that tips $him over the edge. $He opens $his eyes slowly, @@.hotpink;grateful@@ that you were so merciful.
+		<<elseif $activeSlave.attrXX <= 35>>
+			girls, so you decide to be kind to $him and play up your masculine side. You grab the side of $his neck with a rough grip, and pull $him downward, forcing $him to $his knees. $He goes willingly, $his field of vision filling with your rapidly hardening member.
+			<<if ($activeSlave.teeth == "removable")>>
+				$He quickly pulls $his removable teeth out, getting ready to offer you $his soft facepussy.
+			<<elseif ($activeSlave.teeth == "pointy")>>
+				$He runs $his tongue over $his frightening teeth carefully, and then opens $his jaws wide, getting ready to keep $his fangs well clear of your shaft.
+			<<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>>
+				$He runs $his tongue over $his braces, and then opens wide, mindful of keeping $his orthodontia clear of your shaft.
+			<<elseif ($activeSlave.teeth == "gapped")>>
+				$He runs $his tongue across the gap in $his front teeth and opens wide.
+			<</if>>
+			$He takes you into $his mouth without hesitation, and keeps $his eyes closed. $He visibly concentrates all $his attention on your dick, ignoring the breasts that are starting to bounce right over $his head as you begin rocking your hips with enjoyment.
+			<br><br>
+			You run a possessive hand through $his $activeSlave.hColor hair, and let $him know what a good little cocksucker $he is. $He moans submissively in response, and the humming feels so wonderful that you order $him to do it again. Knowing that you're being nice to $him by letting $his ignore your more feminine characteristics for the moment, $he does $his best to please you, humming as best $he can and using both hands to pleasure your base and balls. You blow your load down $his throat, and $he swallows it all. $He opens $his eyes slowly, @@.mediumaquamarine;relieved@@ that you were so merciful.
 		<</if>>
-		$He takes you into $his mouth without hesitation, and keeps $his eyes closed. $He visibly concentrates all $his attention on your dick, ignoring the breasts that are starting to bounce right over $his head as you begin rocking your hips with enjoyment.
-		<br><br>
-		You run a possessive hand through $his $activeSlave.hColor hair, and let $him know what a good little cocksucker $he is. $He moans submissively in response, and the humming feels so wonderful that you order $him to do it again. Knowing that you're being nice to $him by letting $his ignore your more feminine characteristics for the moment, $he does $his best to please you, humming as best $he can and using both hands to pleasure your base and balls. You blow your load down $his throat, and $he swallows it all. $He opens $his eyes slowly, @@.mediumaquamarine;relieved@@ that you were so merciful.
-	<</if>>
-	<<set $activeSlave.counter.oral++, $oralTotal++, $activeSlave.trust += 4>>
+		<<set $activeSlave.counter.oral++, $oralTotal++, $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Force $him to get off to all of you">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The closeminded $girl is having trouble with
-	<<if $activeSlave.attrXY <= 35>>
-		guys, so $he gets to spend some quality time with your dick. You walk into $him, running into the surprised slave, driving $him backward into the far wall. You kiss $him, pinch $him, and grope $him roughly the whole time, pressing your breasts maliciously against $his
-		<<if $activeSlave.boobs > 5000>>
-			titanic udders, which are squashed between you.
-		<<elseif $activeSlave.boobs > 1000>>
-			own lovely boobs.
-		<<else>>
-			chest.
-		<</if>>
-		When $his
-		<<if $activeSlave.butt > 15>>
-			obscene
-		<<elseif $activeSlave.butt > 10>>
-			absurd
-		<<elseif $activeSlave.butt > 6>>
-			monstrous
-		<<elseif $activeSlave.butt > 3>>
-			healthy
-		<<else>>
-			cute
-		<</if>>
-		buttocks crash against the wall, you smash yourself against $him. $He shudders involuntarily as $he feels your stiffening dick between you<<if $activeSlave.belly >= 5000>> and $his rounded stomach<</if>>, and then again as it rapidly achieves full hardness, crushed between your warm bodies.
-		<br><br>
-		Making out with $him so insistently that $he's short of breath, you begin to hump yourself against $him, sliding your prick against $his <<if $activeSlave.belly >= 5000>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>><</if>><</if>>belly, thighs, and
-		<<if canDoVaginal($activeSlave)>>
-			labia.
-		<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-			own dick.
-		<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-			fat cock.
-		<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-			limp member.
-		<<elseif ($activeSlave.chastityPenis == 1)>>
-			caged dick.
-		<<elseif ($activeSlave.chastityVagina)>>
-			chastity belt.
-		<<else>>
-			soft perineum.
-		<</if>>
-		$He shudders uncomfortably as $he realizes that $he's getting aroused, $his
-		<<if $activeSlave.vagina > -1>>
-			pussy moistening
-		<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-			dick hardening
-		<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-			dick struggling to engorge
-		<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-			girldick starting to ooze precum
-		<<elseif ($activeSlave.chastityPenis == 1)>>
-			chastity cage growing ever tighter
-		<<else>>
-			tiny front hole starting to ooze precum
-		<</if>>
-		from the stimulation, despite $his lack of appetite for cock.
-		<<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>>
-			$He knows what's coming when you push $him
-			<<if $activeSlave.belly >= 300000>>
-				over $his _belly stomach,
+		The closeminded $girl is having trouble with
+		<<if $activeSlave.attrXY <= 35>>
+			guys, so $he gets to spend some quality time with your dick. You walk into $him, running into the surprised slave, driving $him backward into the far wall. You kiss $him, pinch $him, and grope $him roughly the whole time, pressing your breasts maliciously against $his
+			<<if $activeSlave.boobs > 5000>>
+				titanic udders, which are squashed between you.
+			<<elseif $activeSlave.boobs > 1000>>
+				own lovely boobs.
 			<<else>>
-				to $his knees,
+				chest.
 			<</if>>
-			and does $his best to relax.
-			<br><br>
-			$He screws $his eyes shut tight and $his mouth tighter as you prod at $his face with your member. Tiring of $his reluctance, you give $him a brusque order to open $his eyes and gaze upon the dick $he will soon be deepthroating. $He obeys, but unwillingly, and steadies $himself to take its length. You tell $him to do $his best to watch, and begin thrusting. $He groans from the internal fullness and sexual confusion. $He stares as best $he can at your penis, transfixed by the sight of it thrusting into $his mouth and the feeling of $his lips around its girth.
-			<br><br>
-			$He slips a hand to $his crotch, $his arousal overwhelming $his preferences. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, holding back to $his point of climax before shooting your cum deep inside $him. The internal sensation of heat, the tightening and twitching of your member inside $his mouth, and your obvious pleasure force $him over the edge, and $he comes so hard that $he chokes on your cock. You pull out of $him, and $he struggles to catch $his breath, the action sending a blob of $his owner's semen running down $his chin.
-			<<set $activeSlave.counter.oral += 7, $oralTotal += 7>>
-		<<elseif $activeSlave.belly >= 10000>>
-			$He knows what's coming when you push $him
-			<<if $activeSlave.belly >= 300000>>
-				over $his _belly stomach,
+			When $his
+			<<if $activeSlave.butt > 15>>
+				obscene
+			<<elseif $activeSlave.butt > 10>>
+				absurd
+			<<elseif $activeSlave.butt > 6>>
+				monstrous
+			<<elseif $activeSlave.butt > 3>>
+				healthy
 			<<else>>
-				to $his knees,
+				cute
 			<</if>>
-			and does $his best to relax.
+			buttocks crash against the wall, you smash yourself against $him. $He shudders involuntarily as $he feels your stiffening dick between you<<if $activeSlave.belly >= 5000>> and $his rounded stomach<</if>>, and then again as it rapidly achieves full hardness, crushed between your warm bodies.
 			<br><br>
-			$He screws $his eyes shut tight as you maneuver yourself inside $his
+			Making out with $him so insistently that $he's short of breath, you begin to hump yourself against $him, sliding your prick against $his <<if $activeSlave.belly >= 5000>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>><</if>><</if>>belly, thighs, and
 			<<if canDoVaginal($activeSlave)>>
-				<<if $activeSlave.vagina > 2>>
-					cavernous cunt.
-				<<elseif $activeSlave.vagina > 1>>
-					welcoming pussy.
+				labia.
+			<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+				own dick.
+			<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+				fat cock.
+			<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+				limp member.
+			<<elseif ($activeSlave.chastityPenis == 1)>>
+				caged dick.
+			<<elseif ($activeSlave.chastityVagina)>>
+				chastity belt.
+			<<else>>
+				soft perineum.
+			<</if>>
+			$He shudders uncomfortably as $he realizes that $he's getting aroused, $his
+			<<if $activeSlave.vagina > -1>>
+				pussy moistening
+			<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+				dick hardening
+			<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+				dick struggling to engorge
+			<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+				girldick starting to ooze precum
+			<<elseif ($activeSlave.chastityPenis == 1)>>
+				chastity cage growing ever tighter
+			<<else>>
+				tiny front hole starting to ooze precum
+			<</if>>
+			from the stimulation, despite $his lack of appetite for cock.
+			<<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>>
+				$He knows what's coming when you push $him
+				<<if $activeSlave.belly >= 300000>>
+					over $his _belly stomach,
 				<<else>>
-					tight flower.
+					to $his knees,
 				<</if>>
+				and does $his best to relax.
+				<br><br>
+				$He screws $his eyes shut tight and $his mouth tighter as you prod at $his face with your member. Tiring of $his reluctance, you give $him a brusque order to open $his eyes and gaze upon the dick $he will soon be deepthroating. $He obeys, but unwillingly, and steadies $himself to take its length. You tell $him to do $his best to watch, and begin thrusting. $He groans from the internal fullness and sexual confusion. $He stares as best $he can at your penis, transfixed by the sight of it thrusting into $his mouth and the feeling of $his lips around its girth.
+				<br><br>
+				$He slips a hand to $his crotch, $his arousal overwhelming $his preferences. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, holding back to $his point of climax before shooting your cum deep inside $him. The internal sensation of heat, the tightening and twitching of your member inside $his mouth, and your obvious pleasure force $him over the edge, and $he comes so hard that $he chokes on your cock. You pull out of $him, and $he struggles to catch $his breath, the action sending a blob of $his owner's semen running down $his chin.
+				<<set $activeSlave.counter.oral += 7, $oralTotal += 7>>
+			<<elseif $activeSlave.belly >= 10000>>
+				$He knows what's coming when you push $him
+				<<if $activeSlave.belly >= 300000>>
+					over $his _belly stomach,
+				<<else>>
+					to $his knees,
+				<</if>>
+				and does $his best to relax.
+				<br><br>
+				$He screws $his eyes shut tight as you maneuver yourself inside $his
+				<<if canDoVaginal($activeSlave)>>
+					<<if $activeSlave.vagina > 2>>
+						cavernous cunt.
+					<<elseif $activeSlave.vagina > 1>>
+						welcoming pussy.
+					<<else>>
+						tight flower.
+					<</if>>
+				<<else>>
+					<<if $activeSlave.anus > 2>>
+						unresisting asspussy.
+					<<elseif $activeSlave.anus > 1>>
+						welcoming butthole.
+					<<else>>
+						tight anus.
+					<</if>>
+				<</if>>
+				Once you're situated, you give $him a brusque order to open $his eyes and look behind $him. $He obeys, but unwillingly, bending as best $he can to see how physically close you are. $He can't see where it enters $his
+				<<if canDoVaginal($activeSlave)>>
+					womanhood,
+				<<else>>
+					bowels,
+				<</if>>
+				but $he's very aware of it. You tell $him to do $his best to watch, and begin thrusting. $He groans from the awkward position, internal fullness, and sexual confusion. Turned as much as $he can, $he stares, transfixed by the sight of you thrusting into $his body.
+				<<if canDoVaginal($activeSlave)>>
+					<<= VaginalVCheck(7)>>
+				<<else>>
+					<<= AnalVCheck(7)>>
+				<</if>>
+				<br><br>
+				You snake a hand under $him and begin to stimulate $him manually. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, bringing $him to the point of climax before shooting your cum deep inside $him. The internal sensation of heat, the tightening and twitching of your member inside $him, and your obvious pleasure force $him over the edge, and $he comes so hard that $he wriggles involuntarily against you. You release $him, and $he barely manages to catch $himself from collapsing, the motion sending a blob of $his owner's semen running down $his thigh.
 			<<else>>
-				<<if $activeSlave.anus > 2>>
-					unresisting asspussy.
-				<<elseif $activeSlave.anus > 1>>
-					welcoming butthole.
+				$He knows what's coming when you pin $his torso even harder and reach down to pull $his knees up to clasp you around your waist, and does $his best to relax.
+				<br><br>
+				$He screws $his eyes shut tight as you maneuver yourself inside $his
+				<<if canDoVaginal($activeSlave)>>
+					<<if $activeSlave.vagina > 2>>
+						cavernous cunt.
+					<<elseif $activeSlave.vagina > 1>>
+						welcoming pussy.
+					<<else>>
+						tight flower.
+					<</if>>
+				<<else>>
+					<<if $activeSlave.anus > 2>>
+						unresisting asspussy.
+					<<elseif $activeSlave.anus > 1>>
+						welcoming butthole.
+					<<else>>
+						tight anus.
+					<</if>>
+				<</if>>
+				Once you're confident your member is properly seated inside $him, and you won't drop $him, you give $him a brusque order to open $his eyes and look down. $He obeys, but unwillingly, bending as best $he can to look at the base of your dick where it
+				<<if canDoVaginal($activeSlave)>>
+					enters $his womanhood.
+				<<else>>
+					disappears beneath
+					<<if canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+						$his own erect cock.
+					<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+						$his own dangling cock.
+					<<elseif ($activeSlave.chastityPenis == 1)>>
+						$his chastity.
+					<<else>>
+						$him. $He can't see where it enters $his bowels, but $he's very aware of it.
+					<</if>>
+				<</if>>
+				You tell $him to do $his best to watch, and begin thrusting. $He groans from the awkward position, internal fullness, and sexual confusion. Bent almost in half, $he stares, transfixed by the sight of your penis delving inside $his body.
+				<<if canDoVaginal($activeSlave)>>
+					<<= VaginalVCheck(7)>>
 				<<else>>
-					tight anus.
+					<<= AnalVCheck(7)>>
 				<</if>>
+				<br><br>
+				You push a hand between the two of you and begin to stimulate $him manually. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, bringing $him to the point of climax before shooting your cum deep inside $him. The internal sensation of heat, the tightening and twitching of your member inside $him, and your obvious pleasure force $him over the edge, and $he comes so hard that $he wriggles involuntarily within your grasp. You drop $him, and $he barely manages to catch $himself on shaking legs, the motion sending a blob of $his owner's semen running down $his thigh.
 			<</if>>
-			Once you're situated, you give $him a brusque order to open $his eyes and look behind $him. $He obeys, but unwillingly, bending as best $he can to see how physically close you are. $He can't see where it enters $his
-			<<if canDoVaginal($activeSlave)>>
-				womanhood,
+			<br><br>
+			Over the week, you force $him to achieve daily orgasm as your cock pounds in and out of $him. It's difficult, blowing your load inside a compliant slave $girl every day, but you make the necessary sacrifice.
+			<<if random(1,2) == 1>>
+				After a few days, $he's @@.green;obviously reconsidering $his previous hesitations about dick.@@
+				<<set $activeSlave.attrXY += 5>>
 			<<else>>
-				bowels,
+				$He takes it like a good slave. $His dislike for dick doesn't change, but $he gets better at @@.hotpink;suppressing $his own inclinations@@ and serving as your cum receptacle.
+				<<set $activeSlave.devotion += 4>>
 			<</if>>
-			but $he's very aware of it. You tell $him to do $his best to watch, and begin thrusting. $He groans from the awkward position, internal fullness, and sexual confusion. Turned as much as $he can, $he stares, transfixed by the sight of you thrusting into $his body.
-			<<if canDoVaginal($activeSlave)>>
-				<<= VaginalVCheck(7)>>
+		<<elseif $activeSlave.attrXX <= 35>>
+			girls, so $he gets to spend some quality time with your feminine side. You kiss $him, teasing your tongue against $him, and press your breasts maliciously against $his
+			<<if $activeSlave.boobs > 5000>>
+				titanic udders, which are squashed between you.
+			<<elseif $activeSlave.boobs > 1000>>
+				own lovely boobs.
 			<<else>>
-				<<= AnalVCheck(7)>>
+				chest.
 			<</if>>
+			$He shrinks away from you involuntarily, but you stroke loving hands down $his temples, the sides of $his neck, and $his upper arms. $He shudders involuntarily, and you can almost feel $him hate $himself through your lip lock. You cock your hips back and to the side, keeping your prick well clear of $him. As far as $he can feel, you're all boobs and feminine lips.
 			<br><br>
-			You snake a hand under $him and begin to stimulate $him manually. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, bringing $him to the point of climax before shooting your cum deep inside $him. The internal sensation of heat, the tightening and twitching of your member inside $him, and your obvious pleasure force $him over the edge, and $he comes so hard that $he wriggles involuntarily against you. You release $him, and $he barely manages to catch $himself from collapsing, the motion sending a blob of $his owner's semen running down $his thigh.
-		<<else>>
-			$He knows what's coming when you pin $his torso even harder and reach down to pull $his knees up to clasp you around your waist, and does $his best to relax.
-			<br><br>
-			$He screws $his eyes shut tight as you maneuver yourself inside $his
-			<<if canDoVaginal($activeSlave)>>
-				<<if $activeSlave.vagina > 2>>
-					cavernous cunt.
-				<<elseif $activeSlave.vagina > 1>>
-					welcoming pussy.
+			<<if $activeSlave.toyHole == "dick" || ($sexualOpeness == 1 && canPenetrate($activeSlave))>>
+				You walk forward, pressing $him against the far wall, and then turn yourself around, pinning $him against the wall with your butt<<if $activeSlave.belly >= 5000>>, working your way under $his _belly belly<</if>>. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your
+				<<if $PC.butt > 2>>
+					enormous, <<if $PC.buttImplant == 1>>beachball cheeks<<else>>wobbling ass<</if>>,
+				<<elseif $PC.butt > 1>>
+					huge, <<if $PC.buttImplant == 1>>balloon of an<<else>>soft<</if>> ass,
+				<<elseif $PC.butt > 0>>
+					big<<if $PC.buttImplant == 1>> fake<</if>> ass,
 				<<else>>
-					tight flower.
+					ass,
 				<</if>>
-			<<else>>
-				<<if $activeSlave.anus > 2>>
-					unresisting asspussy.
-				<<elseif $activeSlave.anus > 1>>
-					welcoming butthole.
+				leading $him like a music teacher guiding a student's hands. When $he's groping your buttocks properly, you grind against $him for a while, grinning to yourself as you feel an unwilling erection building between your cheeks. Pleased, you lean forward and line up your <<if $PC.vagina == 1>>pussy<<else>>asshole<</if>> with $his dick head and push back into $him. You repeat until $his hips start moving on their own. You bite on your finger at the sensation of $his cock inside you and, using your other hand, begin to jerk yourself off. Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick; it must feel as though $he is banging a beautiful woman. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, taking $him to the point of climax before enjoying your own orgasm. The heat of your insides, the tightening and twitching of your <<if $PC.vagina == 1>>vagina<<else>>rectum<</if>> around $his cock, and your obvious pleasure force $him over the edge, and $he comes so hard that $he nearly knocks your to the floor. You scoot forward, letting $him slip from you. $He gets a splendid sight of your still gaped <<if $PC.vagina == 1>>cunt<<else>>anus<</if>> begging for more<<if $activeSlave.balls > 0>> as a blob of $his semen drips from your body<</if>>.
+				<br><br>
+				Over the week, you require $him to repeat this sexually confusing performance daily. It's difficult, having to savor a compliant slave's penis every day, but you make the necessary sacrifice.
+				<<if canImpreg($PC, $activeSlave)>>
+					<<= knockMeUp($PC, 40, 0, $activeSlave.ID)>>
+				<</if>>
+			<<elseif $activeSlave.belly >= 150000>>
+				You walk forward, pressing $him against the far wall, and then turn yourself around, pinning $him against the wall with your butt, working your way under $his _belly belly. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your
+				<<if $PC.butt > 2>>
+					enormous, <<if $PC.buttImplant == 1>>beachball cheeks<<else>>wobbling ass<</if>>,
+				<<elseif $PC.butt > 1>>
+					huge, <<if $PC.buttImplant == 1>>balloon of an<<else>>soft<</if>> ass,
+				<<elseif $PC.butt > 0>>
+					big<<if $PC.buttImplant == 1>> fake<</if>> ass,
 				<<else>>
-					tight anus.
+					ass,
 				<</if>>
-			<</if>>
-			Once you're confident your member is properly seated inside $him, and you won't drop $him, you give $him a brusque order to open $his eyes and look down. $He obeys, but unwillingly, bending as best $he can to look at the base of your dick where it
-			<<if canDoVaginal($activeSlave)>>
-				enters $his womanhood.
-			<<else>>
-				disappears beneath
-				<<if canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-					$his own erect cock.
+				leading $him like a music teacher guiding a student's hands. When $he's groping your buttocks properly, you grind against $him for a while, grinning to yourself as you feel
+				<<if canDoVaginal($activeSlave)>>
+					an unwilling heat building low behind you. Pleased, you lean back and start to play with $his clit, using your other hand to jerk off.
+				<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+					an unwilling erection building between your cheeks. Pleased, you lean back and start to play with $his dick, using your other hand to jerk yourself off.
 				<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-					$his own dangling cock.
+					the huge cock behind you start to leak onto your back. Pleased, you lean back and start to play with $his dick, using your other hand to jerk yourself off.
+				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+					the pretty girldick behind you start to leak. Pleased, you lean back and start to play with $his soft bitchclit, using your other hand to jerk yourself off.
 				<<elseif ($activeSlave.chastityPenis == 1)>>
-					$his chastity.
+					an unwilling heat building low behind you. Pleased, you lean back and start to tease $his chastity cage, using your other hand to jerk off.
+				<<elseif ($activeSlave.chastityVagina)>>
+					an unwilling heat building low behind you. Pleased, you lean back and start to tease $his chastity, using your other hand to jerk off.
 				<<else>>
-					$him. $He can't see where it enters $his bowels, but $he's very aware of it.
+					a demure heat building behind you. Pleased, you lean back and start to play with the soft smooth skin between $his legs.
 				<</if>>
-			<</if>>
-			You tell $him to do $his best to watch, and begin thrusting. $He groans from the awkward position, internal fullness, and sexual confusion. Bent almost in half, $he stares, transfixed by the sight of your penis delving inside $his body.
-			<<if canDoVaginal($activeSlave)>>
-				<<= VaginalVCheck(7)>>
-			<<else>>
-				<<= AnalVCheck(7)>>
-			<</if>>
-			<br><br>
-			You push a hand between the two of you and begin to stimulate $him manually. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, bringing $him to the point of climax before shooting your cum deep inside $him. The internal sensation of heat, the tightening and twitching of your member inside $him, and your obvious pleasure force $him over the edge, and $he comes so hard that $he wriggles involuntarily within your grasp. You drop $him, and $he barely manages to catch $himself on shaking legs, the motion sending a blob of $his owner's semen running down $his thigh.
-		<</if>>
-		<br><br>
-		Over the week, you force $him to achieve daily orgasm as your cock pounds in and out of $him. It's difficult, blowing your load inside a compliant slave $girl every day, but you make the necessary sacrifice.
-		<<if random(1,2) == 1>>
-			After a few days, $he's @@.green;obviously reconsidering $his previous hesitations about dick.@@
-			<<set $activeSlave.attrXY += 5>>
-		<<else>>
-			$He takes it like a good slave. $His dislike for dick doesn't change, but $he gets better at @@.hotpink;suppressing $his own inclinations@@ and serving as your cum receptacle.
-			<<set $activeSlave.devotion += 4>>
-		<</if>>
-	<<elseif $activeSlave.attrXX <= 35>>
-		girls, so $he gets to spend some quality time with your feminine side. You kiss $him, teasing your tongue against $him, and press your breasts maliciously against $his
-		<<if $activeSlave.boobs > 5000>>
-			titanic udders, which are squashed between you.
-		<<elseif $activeSlave.boobs > 1000>>
-			own lovely boobs.
-		<<else>>
-			chest.
-		<</if>>
-		$He shrinks away from you involuntarily, but you stroke loving hands down $his temples, the sides of $his neck, and $his upper arms. $He shudders involuntarily, and you can almost feel $him hate $himself through your lip lock. You cock your hips back and to the side, keeping your prick well clear of $him. As far as $he can feel, you're all boobs and feminine lips.
-		<br><br>
-		<<if $activeSlave.toyHole == "dick" || ($sexualOpeness == 1 && canPenetrate($activeSlave))>>
-			You walk forward, pressing $him against the far wall, and then turn yourself around, pinning $him against the wall with your butt<<if $activeSlave.belly >= 5000>>, working your way under $his _belly belly<</if>>. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your
-			<<if $PC.butt > 2>>
-				enormous, <<if $PC.buttImplant == 1>>beachball cheeks<<else>>wobbling ass<</if>>,
-			<<elseif $PC.butt > 1>>
-				huge, <<if $PC.buttImplant == 1>>balloon of an<<else>>soft<</if>> ass,
-			<<elseif $PC.butt > 0>>
-				big<<if $PC.buttImplant == 1>> fake<</if>> ass,
-			<<else>>
-				ass,
-			<</if>>
-			leading $him like a music teacher guiding a student's hands. When $he's groping your buttocks properly, you grind against $him for a while, grinning to yourself as you feel an unwilling erection building between your cheeks. Pleased, you lean forward and line up your <<if $PC.vagina == 1>>pussy<<else>>asshole<</if>> with $his dick head and push back into $him. You repeat until $his hips start moving on their own. You bite on your finger at the sensation of $his cock inside you and, using your other hand, begin to jerk yourself off. Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick; it must feel as though $he is banging a beautiful woman. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, taking $him to the point of climax before enjoying your own orgasm. The heat of your insides, the tightening and twitching of your <<if $PC.vagina == 1>>vagina<<else>>rectum<</if>> around $his cock, and your obvious pleasure force $him over the edge, and $he comes so hard that $he nearly knocks your to the floor. You scoot forward, letting $him slip from you. $He gets a splendid sight of your still gaped <<if $PC.vagina == 1>>cunt<<else>>anus<</if>> begging for more<<if $activeSlave.balls > 0>> as a blob of $his semen drips from your body<</if>>.
-			<br><br>
-			Over the week, you require $him to repeat this sexually confusing performance daily. It's difficult, having to savor a compliant slave's penis every day, but you make the necessary sacrifice.
-			<<if canImpreg($PC, $activeSlave)>>
-				<<= knockMeUp($PC, 40, 0, $activeSlave.ID)>>
-			<</if>>
-		<<elseif $activeSlave.belly >= 150000>>
-			You walk forward, pressing $him against the far wall, and then turn yourself around, pinning $him against the wall with your butt, working your way under $his _belly belly. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your
-			<<if $PC.butt > 2>>
-				enormous, <<if $PC.buttImplant == 1>>beachball cheeks<<else>>wobbling ass<</if>>,
-			<<elseif $PC.butt > 1>>
-				huge, <<if $PC.buttImplant == 1>>balloon of an<<else>>soft<</if>> ass,
-			<<elseif $PC.butt > 0>>
-				big<<if $PC.buttImplant == 1>> fake<</if>> ass,
-			<<else>>
-				ass,
-			<</if>>
-			leading $him like a music teacher guiding a student's hands. When $he's groping your buttocks properly, you grind against $him for a while, grinning to yourself as you feel
-			<<if canDoVaginal($activeSlave)>>
-				an unwilling heat building low behind you. Pleased, you lean back and start to play with $his clit, using your other hand to jerk off.
-			<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-				an unwilling erection building between your cheeks. Pleased, you lean back and start to play with $his dick, using your other hand to jerk yourself off.
-			<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-				the huge cock behind you start to leak onto your back. Pleased, you lean back and start to play with $his dick, using your other hand to jerk yourself off.
-			<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-				the pretty girldick behind you start to leak. Pleased, you lean back and start to play with $his soft bitchclit, using your other hand to jerk yourself off.
-			<<elseif ($activeSlave.chastityPenis == 1)>>
-				an unwilling heat building low behind you. Pleased, you lean back and start to tease $his chastity cage, using your other hand to jerk off.
-			<<elseif ($activeSlave.chastityVagina)>>
-				an unwilling heat building low behind you. Pleased, you lean back and start to tease $his chastity, using your other hand to jerk off.
+				Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick. It must feel as though $he has a beautiful woman under $his middle, and is playing with $his ass while $he gets $him off manually. You complete the feeling by bucking against $him with extra enthusiasm when you climax.
+				<br><br>
+				Over the week, you require $him to repeat this sexually confusing performance daily. It's difficult, having to grind against a compliant slave every day, but you make the necessary sacrifice.
 			<<else>>
-				a demure heat building behind you. Pleased, you lean back and start to play with the soft smooth skin between $his legs.
+				You walk forward, pressing $him against the far wall, and then turn yourself around, pinning $him against the wall with your butt<<if $activeSlave.belly >= 10000>> as well as you can with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> pushing into you<</if>>. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your tits, leading $him like a music teacher guiding a student's hands. When $he's stroking your nipples properly, you grind against $him for a while, grinning to yourself as you feel
+				<<if canDoVaginal($activeSlave)>>
+					an unwilling heat building low behind you. Pleased, you snake a hand around behind yourself and start to play with $his clit, using your other hand to jerk off.
+				<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+					an unwilling erection building behind you. Pleased, you snake a hand around behind yourself and start to play with $his dick, using your other hand to jerk yourself off.
+				<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+					the huge cock behind you start to leak. Pleased, you snake a hand around behind yourself and start to play with $his dick, using your other hand to jerk yourself off.
+				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
+					the pretty girldick behind you start to leak. Pleased, you snake a hand around behind yourself and start to play with $his soft bitchclit, using your other hand to jerk yourself off.
+				<<elseif ($activeSlave.chastityPenis == 1)>>
+					an unwilling heat building low behind you. Pleased, you snake a hand around behind yourself and start to tease $his chastity cage, using your other hand to jerk off.
+				<<elseif ($activeSlave.chastityVagina)>>
+					an unwilling heat building low behind you. Pleased, you snake a hand around behind yourself and start to tease $his chastity, using your other hand to jerk off.
+				<<else>>
+					a demure heat building behind you. Pleased, you snake a hand around behind yourself and start to play with the soft smooth skin between $his legs.
+				<</if>>
+				Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick. It must feel as though $he has a beautiful woman in $his arms, and is playing with $his boobs while $he gets $him off manually. You complete the feeling by craning around to rain nibbles and kisses on $his $activeSlave.faceShape face.
+				<br><br>
+				Over the week, you require $him to repeat this sexually confusing performance daily. It's difficult, having one of your slaves detailed to stimulate your nipples every day, but you make the necessary sacrifice.
 			<</if>>
-			Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick. It must feel as though $he has a beautiful woman under $his middle, and is playing with $his ass while $he gets $him off manually. You complete the feeling by bucking against $him with extra enthusiasm when you climax.
-			<br><br>
-			Over the week, you require $him to repeat this sexually confusing performance daily. It's difficult, having to grind against a compliant slave every day, but you make the necessary sacrifice.
-		<<else>>
-			You walk forward, pressing $him against the far wall, and then turn yourself around, pinning $him against the wall with your butt<<if $activeSlave.belly >= 10000>> as well as you can with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> pushing into you<</if>>. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your tits, leading $him like a music teacher guiding a student's hands. When $he's stroking your nipples properly, you grind against $him for a while, grinning to yourself as you feel
-			<<if canDoVaginal($activeSlave)>>
-				an unwilling heat building low behind you. Pleased, you snake a hand around behind yourself and start to play with $his clit, using your other hand to jerk off.
-			<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-				an unwilling erection building behind you. Pleased, you snake a hand around behind yourself and start to play with $his dick, using your other hand to jerk yourself off.
-			<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-				the huge cock behind you start to leak. Pleased, you snake a hand around behind yourself and start to play with $his dick, using your other hand to jerk yourself off.
-			<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
-				the pretty girldick behind you start to leak. Pleased, you snake a hand around behind yourself and start to play with $his soft bitchclit, using your other hand to jerk yourself off.
-			<<elseif ($activeSlave.chastityPenis == 1)>>
-				an unwilling heat building low behind you. Pleased, you snake a hand around behind yourself and start to tease $his chastity cage, using your other hand to jerk off.
-			<<elseif ($activeSlave.chastityVagina)>>
-				an unwilling heat building low behind you. Pleased, you snake a hand around behind yourself and start to tease $his chastity, using your other hand to jerk off.
+			<<if random(1,2) == 1>>
+				After a few days, $he's @@.green;obviously reconsidering $his previous hesitations about tits and ass.@@
+				<<set $activeSlave.attrXX += 5>>
 			<<else>>
-				a demure heat building behind you. Pleased, you snake a hand around behind yourself and start to play with the soft smooth skin between $his legs.
+				$He serves your feminine body like a good slave. $His dislike for sex with girls doesn't change, but $he gets better at @@.hotpink;suppressing $his own inclinations@@ and serving as your plaything.
+				<<set $activeSlave.devotion += 4>>
 			<</if>>
-			Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick. It must feel as though $he has a beautiful woman in $his arms, and is playing with $his boobs while $he gets $him off manually. You complete the feeling by craning around to rain nibbles and kisses on $his $activeSlave.faceShape face.
-			<br><br>
-			Over the week, you require $him to repeat this sexually confusing performance daily. It's difficult, having one of your slaves detailed to stimulate your nipples every day, but you make the necessary sacrifice.
 		<</if>>
-		<<if random(1,2) == 1>>
-			After a few days, $he's @@.green;obviously reconsidering $his previous hesitations about tits and ass.@@
-			<<set $activeSlave.attrXX += 5>>
-		<<else>>
-			$He serves your feminine body like a good slave. $His dislike for sex with girls doesn't change, but $he gets better at @@.hotpink;suppressing $his own inclinations@@ and serving as your plaything.
-			<<set $activeSlave.devotion += 4>>
-		<</if>>
-	<</if>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $activeSlave.attrXY <= 35>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0) && $activeSlave.attrXY <= 35>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $activeSlave.attrXY <= 35>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0) && $activeSlave.attrXY <= 35>> //This option will take $his anal virginity//<</if>>
 
 <<case "penitent">>
 
 <<link "Require $him to self-flagellate">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him that you will offer $him a method of expiating $his deep and troubling sin. $He looks almost hopeful at this, until you lead $him out onto a balcony and order $him to strip before handing $him a simple length of hempen rope. $He already knows what's coming next, but $he breaks down as $he obeys your orders to kneel. $He sobs abjectly, but you don't even have to give the next order: $he's already flogging the rope against $his own back in the hope of earning a reprieve by obedience. You count the strokes aloud, stopping at one in disapproval of how light $he's hitting $himself. $He flogs $himself harder and harder, screaming a little and crying in pain and fear as you obstinately refuse to say "two." When $he strikes so hard that $he draws a little blood, you finally say the terrible word. When you're finally satisfied with $his self-torture, $he's so exhausted that you carry $his limp, bloody<<if $seePee == 1>>, vaguely urine-scented<</if>><<if $activeSlave.bellyPreg >= 1500>> gravid<</if>> form into the shower, wash $him, and apply curatives, @@.red;though $he's still quite injured.@@ $He wakes to find $himself curled up in your lap, and $he stiffens for a brief moment before @@.hotpink;relaxing against your chest,@@ weeping softly.
-	<<if ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>>
-		<<set $activeSlave.fetish = "submissive",set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
-		$He has come to associate @@.lightcoral;submission@@ with sexual fulfillment.
-	<</if>>
-	<<if ($activeSlave.behavioralFlaw != "odd") && (random(1,100) > 50)>>
-		<<set $activeSlave.behavioralFlaw = "odd">>
-		The terrible experience has left $him with @@.red;unpleasant nervous tics.@@
-	<</if>>
-	<<set $activeSlave.devotion += 10, $activeSlave.health -= 10>>
+		You tell $him that you will offer $him a method of expiating $his deep and troubling sin. $He looks almost hopeful at this, until you lead $him out onto a balcony and order $him to strip before handing $him a simple length of hempen rope. $He already knows what's coming next, but $he breaks down as $he obeys your orders to kneel. $He sobs abjectly, but you don't even have to give the next order: $he's already flogging the rope against $his own back in the hope of earning a reprieve by obedience. You count the strokes aloud, stopping at one in disapproval of how light $he's hitting $himself. $He flogs $himself harder and harder, screaming a little and crying in pain and fear as you obstinately refuse to say "two." When $he strikes so hard that $he draws a little blood, you finally say the terrible word. When you're finally satisfied with $his self-torture, $he's so exhausted that you carry $his limp, bloody<<if $seePee == 1>>, vaguely urine-scented<</if>><<if $activeSlave.bellyPreg >= 1500>> gravid<</if>> form into the shower, wash $him, and apply curatives, @@.red;though $he's still quite injured.@@ $He wakes to find $himself curled up in your lap, and $he stiffens for a brief moment before @@.hotpink;relaxing against your chest,@@ weeping softly.
+		<<if ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>>
+			<<set $activeSlave.fetish = "submissive",set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
+			$He has come to associate @@.lightcoral;submission@@ with sexual fulfillment.
+		<</if>>
+		<<if ($activeSlave.behavioralFlaw != "odd") && (random(1,100) > 50)>>
+			<<set $activeSlave.behavioralFlaw = "odd">>
+			The terrible experience has left $him with @@.red;unpleasant nervous tics.@@
+		<</if>>
+		<<set $activeSlave.devotion += 10, $activeSlave.health -= 10>>
 	<</replace>>
 <</link>>
 <<if canImpreg($activeSlave, $PC)>>
@@ -13367,63 +13372,63 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 		<br><<link "Put a baby in $him while $he prays">>
 			<<EventNameDelink $activeSlave>>
 			<<replace "#result">>
-			$activeSlave.slaveName finds $himself standing in front of you, feeling you roughly using two fingers to finger $his <<if $activeSlave.mpreg == 1>>asspussy<<else>>pussy<</if>>. $He gasps out:
-			"Oh <<Master>>, owner, protector, and father of my children, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, the tear<<s>> of my womb. Remember not my iniquitie<<s>> but my willingne<<ss>> to be bred by you. I long to <<s>>erve your <<if $PC.vagina == 1>>futa <</if>>dick, and beg that you will u<<s>>e me and ble<<ss>> my body with your off<<s>>pring. I promi<<s>>e to <<s>>ubmit to you a<<s>> your breeding <<s>>lut all the day<<s>> of my <<s>>ervitude, and to grow heavy with child, again and again."
-			$He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved your dick up $his waiting <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> and are close so blessing $him with a load of cum. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..."
-			<<if $activeSlave.mpreg == 1>><<= AnalVCheck()>><<else>><<= VaginalVCheck()>><</if>>
-			<<= knockMeUp($activeSlave, 100, 2, -1, 1)>>
+				$activeSlave.slaveName finds $himself standing in front of you, feeling you roughly using two fingers to finger $his <<if $activeSlave.mpreg == 1>>asspussy<<else>>pussy<</if>>. $He gasps out:
+				"Oh <<Master>>, owner, protector, and father of my children, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, the tear<<s>> of my womb. Remember not my iniquitie<<s>> but my willingne<<ss>> to be bred by you. I long to <<s>>erve your <<if $PC.vagina == 1>>futa <</if>>dick, and beg that you will u<<s>>e me and ble<<ss>> my body with your off<<s>>pring. I promi<<s>>e to <<s>>ubmit to you a<<s>> your breeding <<s>>lut all the day<<s>> of my <<s>>ervitude, and to grow heavy with child, again and again."
+				$He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved your dick up $his waiting <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> and are close so blessing $him with a load of cum. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..."
+				<<if $activeSlave.mpreg == 1>><<= AnalVCheck()>><<else>><<= VaginalVCheck()>><</if>>
+				<<= knockMeUp($activeSlave, 100, 2, -1, 1)>>
+				<<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>>
+					<<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
+					$He has come to associate @@.lightcoral;humiliation@@ with sexual fulfillment.
+				<<elseif ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>>
+					<<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
+					$He has come to associate @@.lightcoral;submission@@ with sexual fulfillment.
+				<<elseif ($activeSlave.fetish != "pregnancy") && (random(1,100) > 50)>>
+					<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
+					$He has come to associate @@.lightcoral;carrying your children@@ with sexual fulfillment.
+				<</if>>
+				<<set $activeSlave.devotion += 4>>
+			<</replace>>
+		<</link>><<if $activeSlave.anus == 0 && $activeSlave.mpreg == 1>> //This option will take $his anal virginity//<<elseif $activeSlave.vagina == 0>> //This option will take $his virginity//<</if>>
+	<</if>>
+<</if>>
+<<if canDoVaginal($activeSlave)>>
+	<br><<link "Fuck $him while $he prays">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$activeSlave.slaveName finds $himself standing in front of you, feeling you roughly using two fingers to finger $his pussy. $He gasps out:
+			"Oh <<Master>>, owner and protector, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, my tear<<s>> of <<s>>ervi<<c>>e. Remember not my iniquitie<<s>> but my willingne<<ss>> to be raped by you. I long to <<s>>erve your <<if $PC.dick == 0>>pu<<ss>>y<<else>><<if $PC.vagina == 1>>futa <</if>>dick<</if>>, and beg that you will u<<s>>e me and make your dwelling pla<<c>>e within my <<if $activeSlave.vagina == 0>>virgin fold<<s>><<else>>feminine <<s>>lit<</if>>. I promi<<s>>e to <<s>>ubmit to you a<<s>> your vaginal <<s>>lut all the day<<s>> of my <<s>>ervitude."
+			$He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>> up $his waiting pussy. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..."
+			<<= VaginalVCheck()>>
 			<<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>>
 				<<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
 				$He has come to associate @@.lightcoral;humiliation@@ with sexual fulfillment.
 			<<elseif ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>>
 				<<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
 				$He has come to associate @@.lightcoral;submission@@ with sexual fulfillment.
-			<<elseif ($activeSlave.fetish != "pregnancy") && (random(1,100) > 50)>>
-				<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
-				$He has come to associate @@.lightcoral;carrying your children@@ with sexual fulfillment.
 			<</if>>
 			<<set $activeSlave.devotion += 4>>
-			<</replace>>
-		<</link>><<if $activeSlave.anus == 0 && $activeSlave.mpreg == 1>> //This will take anal virginity//<<elseif $activeSlave.vagina == 0>> //This will take virginity//<</if>>
-	<</if>>
-<</if>>
-<<if canDoVaginal($activeSlave)>>
-<br><<link "Fuck $him while $he prays">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$activeSlave.slaveName finds $himself standing in front of you, feeling you roughly using two fingers to finger $his pussy. $He gasps out:
-	"Oh <<Master>>, owner and protector, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, my tear<<s>> of <<s>>ervi<<c>>e. Remember not my iniquitie<<s>> but my willingne<<ss>> to be raped by you. I long to <<s>>erve your <<if $PC.dick == 0>>pu<<ss>>y<<else>><<if $PC.vagina == 1>>futa <</if>>dick<</if>>, and beg that you will u<<s>>e me and make your dwelling pla<<c>>e within my <<if $activeSlave.vagina == 0>>virgin fold<<s>><<else>>feminine <<s>>lit<</if>>. I promi<<s>>e to <<s>>ubmit to you a<<s>> your vaginal <<s>>lut all the day<<s>> of my <<s>>ervitude."
-	$He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>> up $his waiting pussy. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..."
-	<<= VaginalVCheck()>>
-	<<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>>
-		<<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
-		$He has come to associate @@.lightcoral;humiliation@@ with sexual fulfillment.
-	<<elseif ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>>
-		<<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
-		$He has come to associate @@.lightcoral;submission@@ with sexual fulfillment.
-	<</if>>
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if $activeSlave.vagina == 0>> //This will take virginity//<</if>>
+		<</replace>>
+	<</link>><<if $activeSlave.vagina == 0>> //This option will take $his virginity//<</if>>
 <</if>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "Sodomize $him while $he prays">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$activeSlave.slaveName finds $himself standing in front of you, feeling you roughly probe $his ass with two fingers. $He gasps out:
-	"Oh <<Master>>, owner and protector, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, my tear<<s>> of anal <<s>>ervi<<c>>e. Remember not my iniquitie<<s>> but my willingne<<ss>> to be a<<ss>>raped by you. I long to <<s>>erve your <<if $PC.dick == 0>>pu<<ss>>y<<else>><<if $PC.vagina == 1>>futa <</if>>dick<</if>>, and beg that you will u<<s>>e me and make your dwelling pla<<c>>e within my butthole. I promi<<s>>e to <<s>>ubmit to you a<<s>> your anal <<s>>lut all the day<<s>> of my <<s>>ervitude."
-	$He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>> up $his loosened ass. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..."
-	<<= AnalVCheck()>>
-	<<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>>
-		<<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
-		$He has come to associate @@.lightcoral;humiliation@@ with sexual fulfillment.
-	<<elseif ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>>
-		<<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
-		$He has come to associate @@.lightcoral;submission@@ with sexual fulfillment.
-	<</if>>
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if $activeSlave.anus == 0>> //This will take anal virginity//<</if>>
+	<br><<link "Sodomize $him while $he prays">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$activeSlave.slaveName finds $himself standing in front of you, feeling you roughly probe $his ass with two fingers. $He gasps out:
+			"Oh <<Master>>, owner and protector, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, my tear<<s>> of anal <<s>>ervi<<c>>e. Remember not my iniquitie<<s>> but my willingne<<ss>> to be a<<ss>>raped by you. I long to <<s>>erve your <<if $PC.dick == 0>>pu<<ss>>y<<else>><<if $PC.vagina == 1>>futa <</if>>dick<</if>>, and beg that you will u<<s>>e me and make your dwelling pla<<c>>e within my butthole. I promi<<s>>e to <<s>>ubmit to you a<<s>> your anal <<s>>lut all the day<<s>> of my <<s>>ervitude."
+			$He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>> up $his loosened ass. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..."
+			<<= AnalVCheck()>>
+			<<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>>
+				<<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
+				$He has come to associate @@.lightcoral;humiliation@@ with sexual fulfillment.
+			<<elseif ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>>
+				<<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
+				$He has come to associate @@.lightcoral;submission@@ with sexual fulfillment.
+			<</if>>
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
 <</if>>
 
 <<case "resistant anal virgin">>
@@ -13431,65 +13436,65 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Let $him earn continued anal virginity">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him $he's a sex slave, and that $he needs to learn how to take a dick up the ass.
-	<<if !canTalk($activeSlave) && ($activeSlave.amp != 1)>>
-		$He frantically begs with gestures, pleading on $his knees.
-	<<elseif !canTalk($activeSlave)>>
-		$He frantically mouths pleas that you leave $his butt alone.
-	<<else>>
-		$He begs, "Plea<<s>>e no, <<Master>>, plea<<s>>e don't rape me in my a<<ss>>, <<Master>>!"
-	<</if>>
-	You make a show of considering, and then tell $him that if $he's extra obedient, you might let $him keep $his butt — for now. You tell $him to <<if $PC.dick == 1>>blow you<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>lick your pussy<</if>>, and $he does with unusual obedience. When $he's done, you bend down and whisper in $his ear that if $he shows any sign of rebelliousness, you'll ruin $his little asshole. @@.gold;$He's terrified.@@
-	<<set $activeSlave.trust -= 5, $activeSlave.counter.oral++, $oralTotal++>>
+		You tell $him $he's a sex slave, and that $he needs to learn how to take a dick up the ass.
+		<<if !canTalk($activeSlave) && ($activeSlave.amp != 1)>>
+			$He frantically begs with gestures, pleading on $his knees.
+		<<elseif !canTalk($activeSlave)>>
+			$He frantically mouths pleas that you leave $his butt alone.
+		<<else>>
+			$He begs, "Plea<<s>>e no, <<Master>>, plea<<s>>e don't rape me in my a<<ss>>, <<Master>>!"
+		<</if>>
+		You make a show of considering, and then tell $him that if $he's extra obedient, you might let $him keep $his butt — for now. You tell $him to <<if $PC.dick == 1>>blow you<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>lick your pussy<</if>>, and $he does with unusual obedience. When $he's done, you bend down and whisper in $his ear that if $he shows any sign of rebelliousness, you'll ruin $his little asshole. @@.gold;$He's terrified.@@
+		<<set $activeSlave.trust -= 5, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
 <<if ($activeSlave.amp != 1)>>
-<br><<link "Force $him to degrade $himself">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	Suction cup dildos are terribly useful. You place a moderate-sized one on a low table in your office<<if ($activeSlave.chastityAnus)>>, unlock $his chastity belt<</if>>, and order $him to squat down on it and fuck $his own asshole. $He hesitates, incredulous, and finds $himself bound to the couch and thoroughly whipped. It isn't a sexual whipping, either, but a methodical and scientific administration of pain right up to the border of damage. When $he's been reduced to a state of abject, sobbing surrender, you free $him and repeat your orders as though nothing had happened. Still crying, $he hobbles over and up onto the table,
-	<<if $activeSlave.belly >= 300000 || $activeSlave.weight > 190>>
-		struggles to line $himself up, and finds it slammed into $his asshole when the table gives out under $his<<if $activeSlave.belly >= 300000>> gravid<</if>> weight. You leave $him there to struggle with the dildo wedged in $his rear until $he finally manages to pop it free from the table fragment stuck under mass and roll over. You haul $him onto
-	<<else>>
-		<<if $activeSlave.belly > 20>>gingerly lowers $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>bulk onto it,<</if>> and fucks $his little ass open on the dildo. You keep $him up there until $his legs give out<<if $activeSlave.belly >= 10000 || $activeSlave.weight > 190>>and $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>weight pins $him on the toy;<<else>>, and<</if>> then let $him lie down on
-	<</if>>
-	the couch, telling $him to keep working the dildo with $his hands or suffer another whipping. After $he's had $his ass filled for a good while, $he has no trouble taking a <<if $PC.dick == 0>>strap-on<<else>>real dick<</if>> for the first time, and is by this point too exhausted to do anything but lie there and be a good little anal slave. @@.gold;$He fears you,@@ and @@.lime;$his butthole has been broken in.@@
-	<<set $activeSlave.trust -= 5, $activeSlave.anus = 1>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>> //This will take anal virginity//
-<<if $activeSlave.vagina == 0>>
-<br><<link "Make $him choose between $his virginities">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him $he's a sex slave, and that $he needs to learn how to take a dick up the ass.
-	<<if !canTalk($activeSlave) && ($activeSlave.amp != 1)>>
-		$He frantically begs with gestures, pleading on $his knees.
-	<<elseif !canTalk($activeSlave)>>
-		$He frantically mouths pleas that you leave $his butt alone.
-	<<else>>
-		$He begs, "Plea<<s>>e no, <<Master>>, plea<<s>>e don't rape me in my a<<ss>>, <<Master>>!"
-	<</if>>
-	You make a show of considering, and then tell $him you know a way $he can continue being an anal virgin — for now. You want a new hole to play with, and $he has two untouched holes. $He gasps when $he realizes what you want. $He hesitates to answer, uncertain of which $he values more, and finds $himself bound to the couch<<if ($activeSlave.chastityAnus)>>, stripped of $his chastity,<</if>> and thoroughly whipped. It isn't a sexual whipping, either, but a methodical and scientific administration of pain right up to the border of damage. When $he's been reduced to a state of abject, sobbing surrender, you free $him and repeat your orders as though nothing had happened. Still crying, $he prostrates $himself and
-	<<if $activeSlave.trust < 20>>
-		spreads $his butt for you.
-	<<else>>
-		$his pussylips for you.
-	<</if>>
-	You callously ram a dildo into $his fresh hole and tell $him to keep working $himself with it or suffer another whipping. After $he's fucked $himself for a good while, $he has no trouble taking a <<if $PC.dick == 0>>strap-on<<else>>real dick<</if>> for the first time, and is by this point too exhausted to do anything but lie there and take it a good little slave. @@.gold;$He fears you@@ but @@.hotpink;looses $himself to your rule.@@
-	<<if $activeSlave.trust < 20>>
-		@@.lime;$His butthole has been broken in.@@
-		<<set $activeSlave.anus = 1>>
-		<<= AnalVCheck()>>
-	<<else>>
-		@@.lime;$His pussy has been broken in.@@
-		<<set $activeSlave.vagina = 1>>
-		<<= VaginalVCheck()>>
+	<br><<link "Force $him to degrade $himself">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			Suction cup dildos are terribly useful. You place a moderate-sized one on a low table in your office<<if ($activeSlave.chastityAnus)>>, unlock $his chastity belt<</if>>, and order $him to squat down on it and fuck $his own asshole. $He hesitates, incredulous, and finds $himself bound to the couch and thoroughly whipped. It isn't a sexual whipping, either, but a methodical and scientific administration of pain right up to the border of damage. When $he's been reduced to a state of abject, sobbing surrender, you free $him and repeat your orders as though nothing had happened. Still crying, $he hobbles over and up onto the table,
+			<<if $activeSlave.belly >= 300000 || $activeSlave.weight > 190>>
+				struggles to line $himself up, and finds it slammed into $his asshole when the table gives out under $his<<if $activeSlave.belly >= 300000>> gravid<</if>> weight. You leave $him there to struggle with the dildo wedged in $his rear until $he finally manages to pop it free from the table fragment stuck under mass and roll over. You haul $him onto
+			<<else>>
+				<<if $activeSlave.belly > 20>>gingerly lowers $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>bulk onto it,<</if>> and fucks $his little ass open on the dildo. You keep $him up there until $his legs give out<<if $activeSlave.belly >= 10000 || $activeSlave.weight > 190>>and $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>weight pins $him on the toy;<<else>>, and<</if>> then let $him lie down on
+			<</if>>
+			the couch, telling $him to keep working the dildo with $his hands or suffer another whipping. After $he's had $his ass filled for a good while, $he has no trouble taking a <<if $PC.dick == 0>>strap-on<<else>>real dick<</if>> for the first time, and is by this point too exhausted to do anything but lie there and be a good little anal slave. @@.gold;$He fears you,@@ and @@.lime;$his butthole has been broken in.@@
+			<<set $activeSlave.trust -= 5, $activeSlave.anus = 1>>
+			<<= AnalVCheck()>>
+		<</replace>>
+	<</link>> //This option will take $his anal virginity//
+	<<if $activeSlave.vagina == 0>>
+		<br><<link "Make $him choose between $his virginities">>
+			<<EventNameDelink $activeSlave>>
+			<<replace "#result">>
+				You tell $him $he's a sex slave, and that $he needs to learn how to take a dick up the ass.
+				<<if !canTalk($activeSlave) && ($activeSlave.amp != 1)>>
+					$He frantically begs with gestures, pleading on $his knees.
+				<<elseif !canTalk($activeSlave)>>
+					$He frantically mouths pleas that you leave $his butt alone.
+				<<else>>
+					$He begs, "Plea<<s>>e no, <<Master>>, plea<<s>>e don't rape me in my a<<ss>>, <<Master>>!"
+				<</if>>
+				You make a show of considering, and then tell $him you know a way $he can continue being an anal virgin — for now. You want a new hole to play with, and $he has two untouched holes. $He gasps when $he realizes what you want. $He hesitates to answer, uncertain of which $he values more, and finds $himself bound to the couch<<if ($activeSlave.chastityAnus)>>, stripped of $his chastity,<</if>> and thoroughly whipped. It isn't a sexual whipping, either, but a methodical and scientific administration of pain right up to the border of damage. When $he's been reduced to a state of abject, sobbing surrender, you free $him and repeat your orders as though nothing had happened. Still crying, $he prostrates $himself and
+				<<if $activeSlave.trust < 20>>
+					spreads $his butt for you.
+				<<else>>
+					$his pussylips for you.
+				<</if>>
+				You callously ram a dildo into $his fresh hole and tell $him to keep working $himself with it or suffer another whipping. After $he's fucked $himself for a good while, $he has no trouble taking a <<if $PC.dick == 0>>strap-on<<else>>real dick<</if>> for the first time, and is by this point too exhausted to do anything but lie there and take it a good little slave. @@.gold;$He fears you@@ but @@.hotpink;looses $himself to your rule.@@
+				<<if $activeSlave.trust < 20>>
+					@@.lime;$His butthole has been broken in.@@
+					<<set $activeSlave.anus = 1>>
+					<<= AnalVCheck()>>
+				<<else>>
+					@@.lime;$His pussy has been broken in.@@
+					<<set $activeSlave.vagina = 1>>
+					<<= VaginalVCheck()>>
+				<</if>>
+				<<set $activeSlave.trust -= 5, $activeSlave.devotion += 3>>
+			<</replace>>
+		<</link>> //This option will take one of $his virginities//
 	<</if>>
-	<<set $activeSlave.trust -= 5, $activeSlave.devotion += 3>>
-	<</replace>>
-<</link>> //This will take a virginity//
-<</if>>
 <</if>>
 
 <<case "devoted waist">>
@@ -13497,209 +13502,209 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Join $him and see if your hands can span $his waist">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	By the time you reach the shower, $activeSlave.slaveName is toweling $himself. $He notices your approach and folds the towel neatly before performing a little naked pirouette that shows off $his artificial
-	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-		curviness while displaying each of $his delectable holes.
-	<<elseif canDoVaginal($activeSlave)>>
-		curviness while displaying $his
-		<<if $activeSlave.vagina > 3>>
-			gaping cunt
-		<<elseif $activeSlave.vagina > 2>>
-			loose cunt
-		<<elseif $activeSlave.vagina > 1>>
-			slutty pussy
-		<<elseif $activeSlave.vagina > 0>>
-			tight pussy
-		<<else>>
-			virgin pussy.
-		<</if>>
-	<<elseif canDoAnal($activeSlave)>>
-		curviness while displaying $his
-		<<if $activeSlave.anus > 2>>
-			gaping asshole.
-		<<elseif $activeSlave.anus > 1>>
-			slutty asshole.
-		<<elseif $activeSlave.anus > 1>>
-			tight asshole.
-		<<else>>
-			virgin asshole.
-		<</if>>
-	<<else>>
-		curviness.
-	<</if>>
-	You take $him about the <<if $activeSlave.belly >= 500 || $activeSlave.weight > 30>>middle and, with a little imagination, find that, indeed, you could make your thumbs and fingertips meet around it if you were to press.<<else>>waist and find that, indeed, you can make your thumbs and fingertips meet around it if you press, which elicits a squeak<</if>>.
-	<<if !canDoVaginal($activeSlave) && !canDoAnal($activeSlave)>>
-		There are many ways you could apply this during sex, but since $he is fully locked in chastity, you can only explain, in detail, the ways you would fuck $him if you could. By the end $he's blushing vibrantly, but @@.mediumaquamarine;more confident in $his sexual uniqueness.@@
-		<<set $activeSlave.trust += 4>>
-	<<else>>
-		This can be applied during sex many ways. First, $he sits on the bathroom counter and bends $himself almost double for
-		<<if canDoAnal($activeSlave)>>
-			anal. Your control over the pace is perfected by your grip around $his tiny middle.
-			<<= AnalVCheck()>>
+		By the time you reach the shower, $activeSlave.slaveName is toweling $himself. $He notices your approach and folds the towel neatly before performing a little naked pirouette that shows off $his artificial
+		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+			curviness while displaying each of $his delectable holes.
+		<<elseif canDoVaginal($activeSlave)>>
+			curviness while displaying $his
+			<<if $activeSlave.vagina > 3>>
+				gaping cunt
+			<<elseif $activeSlave.vagina > 2>>
+				loose cunt
+			<<elseif $activeSlave.vagina > 1>>
+				slutty pussy
+			<<elseif $activeSlave.vagina > 0>>
+				tight pussy
+			<<else>>
+				virgin pussy.
+			<</if>>
+		<<elseif canDoAnal($activeSlave)>>
+			curviness while displaying $his
+			<<if $activeSlave.anus > 2>>
+				gaping asshole.
+			<<elseif $activeSlave.anus > 1>>
+				slutty asshole.
+			<<elseif $activeSlave.anus > 1>>
+				tight asshole.
+			<<else>>
+				virgin asshole.
+			<</if>>
 		<<else>>
-			vaginal. Your control over the pace is perfected by your grip around $his tiny middle.
-			<<= VaginalVCheck()>>
+			curviness.
 		<</if>>
-		Finally, $he goes down on all fours for a hard
-		<<if canDoVaginal($activeSlave)>>
-			pounding, doggy style, losing $himself in the intense penetration as you use your hold around $him to give it to $him even harder.
-			<<= VaginalVCheck()>>
+		You take $him about the <<if $activeSlave.belly >= 500 || $activeSlave.weight > 30>>middle and, with a little imagination, find that, indeed, you could make your thumbs and fingertips meet around it if you were to press.<<else>>waist and find that, indeed, you can make your thumbs and fingertips meet around it if you press, which elicits a squeak<</if>>.
+		<<if !canDoVaginal($activeSlave) && !canDoAnal($activeSlave)>>
+			There are many ways you could apply this during sex, but since $he is fully locked in chastity, you can only explain, in detail, the ways you would fuck $him if you could. By the end $he's blushing vibrantly, but @@.mediumaquamarine;more confident in $his sexual uniqueness.@@
+			<<set $activeSlave.trust += 4>>
 		<<else>>
-			buttfuck, doggy style, losing $himself in the intense anal as you use your hold around $him to give it to $him even harder.
-			<<= AnalVCheck()>>
+			This can be applied during sex many ways. First, $he sits on the bathroom counter and bends $himself almost double for
+			<<if canDoAnal($activeSlave)>>
+				anal. Your control over the pace is perfected by your grip around $his tiny middle.
+				<<= AnalVCheck()>>
+			<<else>>
+				vaginal. Your control over the pace is perfected by your grip around $his tiny middle.
+				<<= VaginalVCheck()>>
+			<</if>>
+			Finally, $he goes down on all fours for a hard
+			<<if canDoVaginal($activeSlave)>>
+				pounding, doggy style, losing $himself in the intense penetration as you use your hold around $him to give it to $him even harder.
+				<<= VaginalVCheck()>>
+			<<else>>
+				buttfuck, doggy style, losing $himself in the intense anal as you use your hold around $him to give it to $him even harder.
+				<<= AnalVCheck()>>
+			<</if>>
+			By the end $he's tired but @@.mediumaquamarine;confident in $his sexual uniqueness.@@
+			<<set $activeSlave.trust += 4>>
 		<</if>>
-		By the end $he's tired but @@.mediumaquamarine;confident in $his sexual uniqueness.@@
-		<<set $activeSlave.trust += 4>>
-	<</if>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <br><<link "Such a lovely work of art must be displayed">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	There is a polite soirée tonight at one of $arcologies[0].name's more upscale eating establishments. Many couples are there to enjoy themselves and preen, but even so, you make a stir as you enter wearing
-	<<if $PC.title == 1>>
-		the latest in men's eveningwear<<if $PC.boobs > 0 || $PC.belly >= 1500 || $PC.butt > 0 || $PC.balls > 1 || $PC.ballsImplant > 1>>, tastefully tailored to accommodate your unusual build<</if>>.
-	<<else>>
-		the latest dress from one of your arcology's leading tailors<<if $PC.boobsBonus > 0 || $PC.belly >= 1500 || $PC.butt > 0 || $PC.balls > 1 || $PC.ballsImplant > 1>>, carefully tailored to accentuate your splendid curves<</if>>.
-	<</if>>
-	$activeSlave.slaveName is a confection on your arm, displayed in a silk gown of strips and cuts that accentuates $his artificial figure while leaving $his breasts,
-	<<if $activeSlave.dick > 0>>
-		<<if ($activeSlave.chastityPenis == 1)>>
-			caged
+		There is a polite soirée tonight at one of $arcologies[0].name's more upscale eating establishments. Many couples are there to enjoy themselves and preen, but even so, you make a stir as you enter wearing
+		<<if $PC.title == 1>>
+			the latest in men's eveningwear<<if $PC.boobs > 0 || $PC.belly >= 1500 || $PC.butt > 0 || $PC.balls > 1 || $PC.ballsImplant > 1>>, tastefully tailored to accommodate your unusual build<</if>>.
+		<<else>>
+			the latest dress from one of your arcology's leading tailors<<if $PC.boobsBonus > 0 || $PC.belly >= 1500 || $PC.butt > 0 || $PC.balls > 1 || $PC.ballsImplant > 1>>, carefully tailored to accentuate your splendid curves<</if>>.
 		<</if>>
-		cock,
-	<<elseif $activeSlave.vagina > -1>>
-		<<if ($activeSlave.chastityPenis == 1)>>
-			chaste
+		$activeSlave.slaveName is a confection on your arm, displayed in a silk gown of strips and cuts that accentuates $his artificial figure while leaving $his breasts,
+		<<if $activeSlave.dick > 0>>
+			<<if ($activeSlave.chastityPenis == 1)>>
+				caged
+			<</if>>
+			cock,
+		<<elseif $activeSlave.vagina > -1>>
+			<<if ($activeSlave.chastityPenis == 1)>>
+				chaste
+			<</if>>
+			pussy,
+		<<elseif $activeSlave.balls > 1 && $activeSlave.scrotum > 0>>
+			dangling balls,
+		<<else>>
+			featureless groin,
 		<</if>>
-		pussy,
-	<<elseif $activeSlave.balls > 1 && $activeSlave.scrotum > 0>>
-		dangling balls,
-	<<else>>
-		featureless groin,
-	<</if>>
-	and
-	<<if ($activeSlave.chastityAnus)>>
-		off-limits rear
-	<<else>>
-		butt
-	<</if>>
-	lusciously bare. Your appearance together with your living accessory @@.green;increases your reputation.@@ After a refined meal and some sedate dancing, the maître d' announces that the establishment has become (the Free Cities definition of) a salon for the evening. After the more prudish couples file out, those who remain engage in public sexual congress;
-	<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-		$activeSlave.slaveName's gown allows you to take $him in a <<if $activeSlave.belly >= 5000>>tight<<else>>close<</if>> lotus position on the cleared table, face to face.
-		<<if canDoVaginal($activeSlave)>>
-			<<= VaginalVCheck()>>
+		and
+		<<if ($activeSlave.chastityAnus)>>
+			off-limits rear
 		<<else>>
-			<<= AnalVCheck()>>
+			butt
 		<</if>>
-	<<else>>
-		you and $activeSlave.slaveName enjoy the sights while fooling around. While you'd love to use $him, $his chastity keeps you at bay.
-	<</if>>
-	@@.hotpink;$He has become more devoted to you.@@
-	<<set $activeSlave.devotion += 4>>
-	<<run repX(500, "event", $activeSlave)>>
+		lusciously bare. Your appearance together with your living accessory @@.green;increases your reputation.@@ After a refined meal and some sedate dancing, the maître d' announces that the establishment has become (the Free Cities definition of) a salon for the evening. After the more prudish couples file out, those who remain engage in public sexual congress;
+		<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
+			$activeSlave.slaveName's gown allows you to take $him in a <<if $activeSlave.belly >= 5000>>tight<<else>>close<</if>> lotus position on the cleared table, face to face.
+			<<if canDoVaginal($activeSlave)>>
+				<<= VaginalVCheck()>>
+			<<else>>
+				<<= AnalVCheck()>>
+			<</if>>
+		<<else>>
+			you and $activeSlave.slaveName enjoy the sights while fooling around. While you'd love to use $him, $his chastity keeps you at bay.
+		<</if>>
+		@@.hotpink;$He has become more devoted to you.@@
+		<<set $activeSlave.devotion += 4>>
+		<<run repX(500, "event", $activeSlave)>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 
 <<case "muscles">>
 
 <<link "Reward $him for $his gains">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him to spread $his towel on the floor and lie
-	<<if $activeSlave.belly >= 5000>>
-		on $his side on it. You lie next to $him and
-	<<else>>
-		face-down on it. You
-	<</if>>
-	run your hands across $his sweaty <<if $seeRace == 1>>$activeSlave.race <</if>>muscles before giving $him a thorough, skillful and very intense massage. $He moans and grunts as you work the lactic acid out of $his muscles, slowly reducing $him to a puddle of ripped sex slave. As you're rubbing $him down to finish the massage, $he meekly begs you to fuck $him.
-	<<if !canDoVaginal($activeSlave) && !canDoAnal($activeSlave)>>
-		You tell $him that's not an option and pull $him into a kiss instead. It's a strange sensation, this mass of muscle lying quietly still in your arms you, whimpering with delight as you gently make out with $him. Your wandering hands eventually tip $him over the edge; $he hugs you tight as $he shakes with orgasm. Once $he stops crushing you, you return to enjoying $his sweaty body.
-	<<else>>
-		As $he lies still,
-		<<if $PC.dick == 0>>
-			you lift one of $his legs and straddle yourself in to bring your groin against $hers. It's a strange sensation, this mass of muscle lying quietly still beneath you, whimpering with delight as you gently scissor yourself against $him. $He comes in no time at all. When $he does $he squeezes you between vicelike thighs,<<if $PC.vagina == 1>> pressing your pussy deliciously and<</if>> bringing you to climax, too.
+		You tell $him to spread $his towel on the floor and lie
+		<<if $activeSlave.belly >= 5000>>
+			on $his side on it. You lie next to $him and
 		<<else>>
-			you slowly push your cock into $his
-			<<if canDoVaginal($activeSlave)>>
-				pussy; $he's so relaxed from the massage that it slides in easily.
-				<<= VaginalVCheck()>>
-				It's a strange sensation, this mass of muscle lying quietly still beneath you, whimpering with delight as you gently penetrate $him. $He comes in no time at all. When $he does you happen to be halfway inside $him; $he wraps $his legs around you and pulls you into $his depths. You explode into $him as $he holds you in place with $his vicelike thighs.
+			face-down on it. You
+		<</if>>
+		run your hands across $his sweaty <<if $seeRace == 1>>$activeSlave.race <</if>>muscles before giving $him a thorough, skillful and very intense massage. $He moans and grunts as you work the lactic acid out of $his muscles, slowly reducing $him to a puddle of ripped sex slave. As you're rubbing $him down to finish the massage, $he meekly begs you to fuck $him.
+		<<if !canDoVaginal($activeSlave) && !canDoAnal($activeSlave)>>
+			You tell $him that's not an option and pull $him into a kiss instead. It's a strange sensation, this mass of muscle lying quietly still in your arms you, whimpering with delight as you gently make out with $him. Your wandering hands eventually tip $him over the edge; $he hugs you tight as $he shakes with orgasm. Once $he stops crushing you, you return to enjoying $his sweaty body.
+		<<else>>
+			As $he lies still,
+			<<if $PC.dick == 0>>
+				you lift one of $his legs and straddle yourself in to bring your groin against $hers. It's a strange sensation, this mass of muscle lying quietly still beneath you, whimpering with delight as you gently scissor yourself against $him. $He comes in no time at all. When $he does $he squeezes you between vicelike thighs,<<if $PC.vagina == 1>> pressing your pussy deliciously and<</if>> bringing you to climax, too.
 			<<else>>
-				ass; $he's so relaxed from the massage that it slides in easily.
-				<<= AnalVCheck()>>
-				It's a strange sensation, this mass of muscle lying quietly still beneath you, whimpering with delight as you gently take $his ass. $He comes in no time at all. When $he does you happen to be halfway inside $him; $his sphincter mercilessly squeezes your head while $his muscular buttocks clench your shaft between them. You explode into $him.
+				you slowly push your cock into $his
+				<<if canDoVaginal($activeSlave)>>
+					pussy; $he's so relaxed from the massage that it slides in easily.
+					<<= VaginalVCheck()>>
+					It's a strange sensation, this mass of muscle lying quietly still beneath you, whimpering with delight as you gently penetrate $him. $He comes in no time at all. When $he does you happen to be halfway inside $him; $he wraps $his legs around you and pulls you into $his depths. You explode into $him as $he holds you in place with $his vicelike thighs.
+				<<else>>
+					ass; $he's so relaxed from the massage that it slides in easily.
+					<<= AnalVCheck()>>
+					It's a strange sensation, this mass of muscle lying quietly still beneath you, whimpering with delight as you gently take $his ass. $He comes in no time at all. When $he does you happen to be halfway inside $him; $his sphincter mercilessly squeezes your head while $his muscular buttocks clench your shaft between them. You explode into $him.
+				<</if>>
 			<</if>>
+			<<if $activeSlave.dick != 0>>As $he stands, $his now-softening penis drips cum. <</if>>
 		<</if>>
-		<<if $activeSlave.dick != 0>>As $he stands, $his now-softening penis drips cum. <</if>>
-	<</if>>
-	@@.hotpink;$His love for you has increased.@@
-	<<set $activeSlave.devotion += 4>>
+		@@.hotpink;$His love for you has increased.@@
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <br><<link "Take advantage of $his gains with a powerfuck">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	It's time to see if $he's got anything left in those sore <<if $seeRace == 1>>$activeSlave.race <</if>>muscles. You push the towel off $his shoulder, take a lick of the delicious salty sweat along $his collarbone, and get to work. For the next hour, you put $him through a series of sexual positions that require $him to balance and support $himself in difficult positions. $He hangs from the ceiling, goes up on one tiptoe, and fucks in a handstand. $He's as muscular inside as $he is outside.
-	<<if $PC.dick == 0>>
-		You climax repeatedly, mixing your pussy juice with $his sweat all across $his body.
-	<<else>>
-		<<if canDoVaginal($activeSlave)>>
-			<<= VaginalVCheck()>>
-			You come repeatedly, and before long cum is dripping out of $his pussy as you continue.
-		<<elseif canDoAnal($activeSlave)>>
-			<<= AnalVCheck()>>
-			You come repeatedly, and before long cum is dripping out of $his ass as you continue.
+		It's time to see if $he's got anything left in those sore <<if $seeRace == 1>>$activeSlave.race <</if>>muscles. You push the towel off $his shoulder, take a lick of the delicious salty sweat along $his collarbone, and get to work. For the next hour, you put $him through a series of sexual positions that require $him to balance and support $himself in difficult positions. $He hangs from the ceiling, goes up on one tiptoe, and fucks in a handstand. $He's as muscular inside as $he is outside.
+		<<if $PC.dick == 0>>
+			You climax repeatedly, mixing your pussy juice with $his sweat all across $his body.
 		<<else>>
-			You come repeatedly, leaving ropes of your cum all across $his sweaty body.
+			<<if canDoVaginal($activeSlave)>>
+				<<= VaginalVCheck()>>
+				You come repeatedly, and before long cum is dripping out of $his pussy as you continue.
+			<<elseif canDoAnal($activeSlave)>>
+				<<= AnalVCheck()>>
+				You come repeatedly, and before long cum is dripping out of $his ass as you continue.
+			<<else>>
+				You come repeatedly, leaving ropes of your cum all across $his sweaty body.
+			<</if>>
 		<</if>>
-	<</if>>
-	<<if $activeSlave.dick != 0>>From position to position, $his erection adds its own fluids to the mess on the floor. <</if>>By the end, $he's shaking from muscle fatigue and panting $his gratitude. @@.mediumaquamarine;$His confidence in $his place has increased.@@
-	<<set $activeSlave.trust += 4>>
+		<<if $activeSlave.dick != 0>>From position to position, $his erection adds its own fluids to the mess on the floor. <</if>>By the end, $he's shaking from muscle fatigue and panting $his gratitude. @@.mediumaquamarine;$His confidence in $his place has increased.@@
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave) && $activeSlave.belly < 100000>>
-<br><<link "See if $he can put those gains to good use">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	It's time to see if $he's got anything left in those sore <<if $seeRace == 1>>$activeSlave.race <</if>>muscles. You order $him to take you in a standing fuck<<if $PC.belly >= 10000>>, a tall order given how pregnant you are<</if>>. Despite how exhausted $he is, $he manages to lift you and hilt $himself in your
-	<<if $PC.vagina == 1>>
-		pussy.
-	<<else>>
-		ass.
-	<</if>>
-	You feel $his quivering trying to hold you up, so you permit $him to take you against the wall; a welcome respite for the
-	<<if $activeSlave.belly >= 5000>>
-		<<if $activeSlave.bellyPreg >= 3000>>
-			<<if $activeSlave.belly >= 100000>>massively <<elseif $activeSlave.belly >= 10000>>hugely <</if>>pregnant
-		<<elseif $activeSlave.bellyFluid >= 5000>>
-			$activeSlave.inflationType filled
-		<<else>>
-			_belly bellied
-		<</if>>
-	<</if>>
-	sweaty
-	<<if $activeSlave.physicalAge > 30>>
-		MILF.
-	<<elseif $activeSlave.physicalAge > 17>>
-		slave<<= $girl>>.
-	<<elseif $activeSlave.physicalAge > 12>>
-		teenager.
-	<<else>>
-		kid.
-	<</if>>
-	$He dominantly fucks you, $his muscles flexing powerfully with every thrust. You're no slouch when it comes to muscles yourself, so when you feel $him tense with orgasm you wrap your legs around $him and hilt $him deep inside you. This only encourages $him to fuck you harder, quickly bring you to climax as well. $He gently carries you to your couch, where $he slides in behind you for a little post-coitus spooning. You definitely appreciate $his gains after such a good fuck. @@.mediumaquamarine;$His confidence in $his place has increased,@@ as has $his @@.hotpink;love for you.@@
-	<<set $activeSlave.trust += 4, $activeSlave.devotion += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-	<<if canImpreg($PC, $activeSlave)>>
-		<<= knockMeUp($PC, 50, 0, $activeSlave.ID)>>
-	<</if>>
-	<</replace>>
-<</link>> //This option will penetrate you//
+	<br><<link "See if $he can put those gains to good use">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			It's time to see if $he's got anything left in those sore <<if $seeRace == 1>>$activeSlave.race <</if>>muscles. You order $him to take you in a standing fuck<<if $PC.belly >= 10000>>, a tall order given how pregnant you are<</if>>. Despite how exhausted $he is, $he manages to lift you and hilt $himself in your
+			<<if $PC.vagina == 1>>
+				pussy.
+			<<else>>
+				ass.
+			<</if>>
+			You feel $his quivering trying to hold you up, so you permit $him to take you against the wall; a welcome respite for the
+			<<if $activeSlave.belly >= 5000>>
+				<<if $activeSlave.bellyPreg >= 3000>>
+					<<if $activeSlave.belly >= 100000>>massively <<elseif $activeSlave.belly >= 10000>>hugely <</if>>pregnant
+				<<elseif $activeSlave.bellyFluid >= 5000>>
+					$activeSlave.inflationType filled
+				<<else>>
+					_belly bellied
+				<</if>>
+			<</if>>
+			sweaty
+			<<if $activeSlave.physicalAge > 30>>
+				MILF.
+			<<elseif $activeSlave.physicalAge > 17>>
+				slave<<= $girl>>.
+			<<elseif $activeSlave.physicalAge > 12>>
+				teenager.
+			<<else>>
+				kid.
+			<</if>>
+			$He dominantly fucks you, $his muscles flexing powerfully with every thrust. You're no slouch when it comes to muscles yourself, so when you feel $him tense with orgasm you wrap your legs around $him and hilt $him deep inside you. This only encourages $him to fuck you harder, quickly bring you to climax as well. $He gently carries you to your couch, where $he slides in behind you for a little post-coitus spooning. You definitely appreciate $his gains after such a good fuck. @@.mediumaquamarine;$His confidence in $his place has increased,@@ as has $his @@.hotpink;love for you.@@
+			<<set $activeSlave.trust += 4, $activeSlave.devotion += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+			<<if canImpreg($PC, $activeSlave)>>
+				<<= knockMeUp($PC, 50, 0, $activeSlave.ID)>>
+			<</if>>
+		<</replace>>
+	<</link>> //This option will penetrate you//
 <</if>>
 <br><<link "Compliment $his gains and send $him on $his way">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He finishes posing with an impressive display of $his obliques. $He walks powerfully to the shower, $his ripped buttocks delineating each step. The shower is glass-walled. As $he washes, several of your other slaves are waking up and starting their days. They can't help but stare as $activeSlave.slaveName soaps $himself. $activeSlave.slaveName enjoys the attention.
+		$He finishes posing with an impressive display of $his obliques. $He walks powerfully to the shower, $his ripped buttocks delineating each step. The shower is glass-walled. As $he washes, several of your other slaves are waking up and starting their days. They can't help but stare as $activeSlave.slaveName soaps $himself. $activeSlave.slaveName enjoys the attention.
 	<</replace>>
 <</link>>
 
@@ -13708,66 +13713,66 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Let $him get dressed and spend some quality time with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You let $activeSlave.slaveName don a nice dress and take $him out. $He's a little suspicious at first but when you reach the first balcony on your lazy route around the huge building the sun on $his face and the gentle breeze around $his ears convince $him there's no trick. $He watches you shyly as you lead $him around, soaking in the sights and relaxing. Though you still speak as $his <<= WrittenMaster($activeSlave)>>, you chat about goings on around the arcology, and you buy $him a fresh fruit from a vendor. The unexpected show of care and compassion has her quite agog. By the time you take $him out onto another parklike balcony and fuck $him on a bench,
-	<<if ($activeSlave.dick > 0) && ($activeSlave.chastityPenis == 1) && ($activeSlave.chastityAnus == 1)>>
-		$his combined chastity cage and anal chastity belt makes $him move awkwardly.
-	<<elseif ($activeSlave.dick > 0) && ($activeSlave.chastityPenis == 1)>>
-		$his chastity cage is dribbling precum, a sign $he wouldn't mind having to take it up the ass.
-	<<elseif ($activeSlave.dick > 0) && ($activeSlave.chastityAnus == 1)>>
-		$his dick is tenting the front of $his dress, through $his anal chastity belt.
-	<<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
-		$his dick is tenting the front of $his dress and $he's happy to take it up the ass.
-	<<elseif ($activeSlave.dick > 6)>>
-		$he's happy to take it up the ass; there's even a steady stream of pre dripping from $his monstrous cock.
-	<<elseif ($activeSlave.dick > 0)>>
-		$he's happy to take it up the ass, though there's no sign of an erection from $his useless sissy dick.
-	<<elseif !canDoVaginal($activeSlave)>>
-		$he's obviously ready and willing to get buttfucked, even if $his body has no physically obvious way to show it off.
-	<<else>>
-		$he's wet and ready and moans happily as you enter $him.
-	<</if>>
-	<<if ($activeSlave.vagina > -1)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
-	There's no hesitation or fear at all on $his face when $he <<if canSee($activeSlave)>>sees<<else>>notices<</if>> you're returning $him to your penthouse; @@.mediumaquamarine;$his trust in you has increased.@@
-	<<set $activeSlave.trust += 4>>
-	<</replace>>
-<</link>><<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave)) && (($activeSlave.vagina == -1) && ($activeSlave.anus == 0)) || ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>>
-<<if canDoAnal($activeSlave)>>
-<br><<link "Dominate $his narrow ass">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You make a show of examining $him with a critical air that makes $him aware of $his modest endowments. Finished, you announce in a serious tone that you're concerned that you can't tell if $he's a girl, since girls have breasts and butts.<<if $activeSlave.belly >= 1500>> $He should do something about that bulbous gut too, you mock.<</if>>
-	<<if !canTalk($activeSlave)>>
-		$He protests wordlessly, gesturing desperately at $himself.
-	<<else>>
-		<<if ($activeSlave.lips > 70)>>
-			$He protests through $his huge lips,
-		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-			$He protests through $his piercings,
+		You let $activeSlave.slaveName don a nice dress and take $him out. $He's a little suspicious at first but when you reach the first balcony on your lazy route around the huge building the sun on $his face and the gentle breeze around $his ears convince $him there's no trick. $He watches you shyly as you lead $him around, soaking in the sights and relaxing. Though you still speak as $his <<= WrittenMaster($activeSlave)>>, you chat about goings on around the arcology, and you buy $him a fresh fruit from a vendor. The unexpected show of care and compassion has her quite agog. By the time you take $him out onto another parklike balcony and fuck $him on a bench,
+		<<if ($activeSlave.dick > 0) && ($activeSlave.chastityPenis == 1) && ($activeSlave.chastityAnus == 1)>>
+			$his combined chastity cage and anal chastity belt makes $him move awkwardly.
+		<<elseif ($activeSlave.dick > 0) && ($activeSlave.chastityPenis == 1)>>
+			$his chastity cage is dribbling precum, a sign $he wouldn't mind having to take it up the ass.
+		<<elseif ($activeSlave.dick > 0) && ($activeSlave.chastityAnus == 1)>>
+			$his dick is tenting the front of $his dress, through $his anal chastity belt.
+		<<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
+			$his dick is tenting the front of $his dress and $he's happy to take it up the ass.
+		<<elseif ($activeSlave.dick > 6)>>
+			$he's happy to take it up the ass; there's even a steady stream of pre dripping from $his monstrous cock.
+		<<elseif ($activeSlave.dick > 0)>>
+			$he's happy to take it up the ass, though there's no sign of an erection from $his useless sissy dick.
+		<<elseif !canDoVaginal($activeSlave)>>
+			$he's obviously ready and willing to get buttfucked, even if $his body has no physically obvious way to show it off.
 		<<else>>
-			$He protests,
+			$he's wet and ready and moans happily as you enter $him.
 		<</if>>
-		"<<Master>>, I'm a <<s>>lave girl! Plea<<s>>e, ju<<s>>t look at me, <<Master>>!"
-	<</if>>
-	<<if canSee($activeSlave)>>Shaking your head<<else>>Tutting<</if>> with pretended doubt, you say that since you're not sure you'll have to make do. Your order $him to
-	<<if $activeSlave.belly >= 300000>>
-		lean over $his _belly belly<<if $PC.dick == 0>> while you don a strap-on<</if>>.
-	<<elseif $activeSlave.belly >= 5000>>
-		lean face-down into the couch cushions<<if $PC.dick == 0>> while you don a strap-on<</if>>.
-	<<else>>
-		lie face-down on the couch<<if $PC.dick == 0>> while you don a strap-on<</if>>.
-	<</if>>
-	$He does doubtfully, only realizing what you intend when $he feels <<if $PC.dick == 0>>the strap-on<<else>>your dickhead<</if>> forcing its way between $his narrow buttcheeks.
-	<<= AnalVCheck()>>
-	$He whimpers and moans
-	<<if $activeSlave.belly < 300000>>into the couch<</if>>
-	as you roughly sodomize $him. It's true, $he's pretty androgynous from this angle, especially while $he takes it up the butthole. @@.hotpink;$He has become more submissive to you,@@ but there's @@.gold;some fear there, too.@@
-	<<set $activeSlave.trust -= 2, $activeSlave.devotion += 4>>
+		<<if ($activeSlave.vagina > -1)>>
+			<<= VaginalVCheck()>>
+		<<else>>
+			<<= AnalVCheck()>>
+		<</if>>
+		There's no hesitation or fear at all on $his face when $he <<if canSee($activeSlave)>>sees<<else>>notices<</if>> you're returning $him to your penthouse; @@.mediumaquamarine;$his trust in you has increased.@@
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
-<</link>><<if canDoAnal($activeSlave) && $activeSlave.anus == 0>> //This option will take anal virginity//<</if>>
+<</link>><<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave)) && (($activeSlave.vagina == -1) && ($activeSlave.anus == 0)) || ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
+<<if canDoAnal($activeSlave)>>
+	<br><<link "Dominate $his narrow ass">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You make a show of examining $him with a critical air that makes $him aware of $his modest endowments. Finished, you announce in a serious tone that you're concerned that you can't tell if $he's a girl, since girls have breasts and butts.<<if $activeSlave.belly >= 1500>> $He should do something about that bulbous gut too, you mock.<</if>>
+			<<if !canTalk($activeSlave)>>
+				$He protests wordlessly, gesturing desperately at $himself.
+			<<else>>
+				<<if ($activeSlave.lips > 70)>>
+					$He protests through $his huge lips,
+				<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
+					$He protests through $his piercings,
+				<<else>>
+					$He protests,
+				<</if>>
+				"<<Master>>, I'm a <<s>>lave girl! Plea<<s>>e, ju<<s>>t look at me, <<Master>>!"
+			<</if>>
+			<<if canSee($activeSlave)>>Shaking your head<<else>>Tutting<</if>> with pretended doubt, you say that since you're not sure you'll have to make do. Your order $him to
+			<<if $activeSlave.belly >= 300000>>
+				lean over $his _belly belly<<if $PC.dick == 0>> while you don a strap-on<</if>>.
+			<<elseif $activeSlave.belly >= 5000>>
+				lean face-down into the couch cushions<<if $PC.dick == 0>> while you don a strap-on<</if>>.
+			<<else>>
+				lie face-down on the couch<<if $PC.dick == 0>> while you don a strap-on<</if>>.
+			<</if>>
+			$He does doubtfully, only realizing what you intend when $he feels <<if $PC.dick == 0>>the strap-on<<else>>your dickhead<</if>> forcing its way between $his narrow buttcheeks.
+			<<= AnalVCheck()>>
+			$He whimpers and moans
+			<<if $activeSlave.belly < 300000>>into the couch<</if>>
+			as you roughly sodomize $him. It's true, $he's pretty androgynous from this angle, especially while $he takes it up the butthole. @@.hotpink;$He has become more submissive to you,@@ but there's @@.gold;some fear there, too.@@
+			<<set $activeSlave.trust -= 2, $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if canDoAnal($activeSlave) && $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
 <</if>>
 
 <<case "diet">>
@@ -13775,68 +13780,68 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Catch $him at it and punish $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	It's childishly easy to catch $him at it. You simply call a slave eating $his breakfast away over the arcology's audio system, and then enter the kitchen by a different door. $activeSlave.slaveName has the departed slave's cup in $his hand and halfway to $his mouth when $he's caught in the act. You relieve $him of $his prize, and finding that $he has not started $his own proper portion, pour it out onto the floor. You tell $him to lap it up without using $his hands, and begin counting down from ten. $He obeys,
-	<<if $activeSlave.belly >= 300000>>
-		only to find $his _belly stomach keeps $him from reaching the puddle. When you reach zero you shove $him over $his middle, face first into the pool of slave food, and administer a stinging slap across $his thieving <<if $seeRace == 1>>$activeSlave.race <</if>> ass.
-	<<else>>
-		but slowly and hesitantly. When you reach zero you order $him to get to all fours and administer a stinging slap across $his thieving <<if $seeRace == 1>>$activeSlave.race <</if>> ass.
-	<</if>>
-	$He alternates ten seconds of desperate lapping with being beaten across the buttocks until $he's done, by which time $he is @@.gold;desperate to obey and avoid further punishment.@@
-	<<set $activeSlave.trust -= 5>>
+		It's childishly easy to catch $him at it. You simply call a slave eating $his breakfast away over the arcology's audio system, and then enter the kitchen by a different door. $activeSlave.slaveName has the departed slave's cup in $his hand and halfway to $his mouth when $he's caught in the act. You relieve $him of $his prize, and finding that $he has not started $his own proper portion, pour it out onto the floor. You tell $him to lap it up without using $his hands, and begin counting down from ten. $He obeys,
+		<<if $activeSlave.belly >= 300000>>
+			only to find $his _belly stomach keeps $him from reaching the puddle. When you reach zero you shove $him over $his middle, face first into the pool of slave food, and administer a stinging slap across $his thieving <<if $seeRace == 1>>$activeSlave.race <</if>> ass.
+		<<else>>
+			but slowly and hesitantly. When you reach zero you order $him to get to all fours and administer a stinging slap across $his thieving <<if $seeRace == 1>>$activeSlave.race <</if>> ass.
+		<</if>>
+		$He alternates ten seconds of desperate lapping with being beaten across the buttocks until $he's done, by which time $he is @@.gold;desperate to obey and avoid further punishment.@@
+		<<set $activeSlave.trust -= 5>>
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Make $him eat in your office and keep $him busy while $he does">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He knows what it means when $he's informed that $him meals will now be available in your office only. You not only supervise $him intake strictly, but set up a bowl for $him on a little stand so the chubby bitch can lap up $him food hands free on
-	<<if $activeSlave.belly >= 300000>>
-		$his _belly belly,
-	<<else>>
-		all fours,
-	<</if>>
-	leaving $him open for use from behind.
-	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-		<<= BothVCheck(3, 3)>>
-	<<elseif canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck(6)>>
-	<<elseif canDoAnal($activeSlave)>>
-		<<= AnalVCheck(6)>>
-	<</if>>
-	You're careful to avoid associating pleasure with misbehavior by taking $his cruelly every time $he eats, pinching $his nipples, and slapping $him <<if $seeRace == 1>>$activeSlave.race <</if>> ass as you ride $him. This is so effective that @@.gold;$he learns to obey@@ and @@.orange;loses weight@@ both.
-	<<set $activeSlave.trust -= 5, $activeSlave.weight -= 10, $activeSlave.diet = "healthy">>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+	<br><<link "Make $him eat in your office and keep $him busy while $he does">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$He knows what it means when $he's informed that $him meals will now be available in your office only. You not only supervise $him intake strictly, but set up a bowl for $him on a little stand so the chubby bitch can lap up $him food hands free on
+			<<if $activeSlave.belly >= 300000>>
+				$his _belly belly,
+			<<else>>
+				all fours,
+			<</if>>
+			leaving $him open for use from behind.
+			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+				<<= BothVCheck(3, 3)>>
+			<<elseif canDoVaginal($activeSlave)>>
+				<<= VaginalVCheck(6)>>
+			<<elseif canDoAnal($activeSlave)>>
+				<<= AnalVCheck(6)>>
+			<</if>>
+			You're careful to avoid associating pleasure with misbehavior by taking $his cruelly every time $he eats, pinching $his nipples, and slapping $him <<if $seeRace == 1>>$activeSlave.race <</if>> ass as you ride $him. This is so effective that @@.gold;$he learns to obey@@ and @@.orange;loses weight@@ both.
+			<<set $activeSlave.trust -= 5, $activeSlave.weight -= 10, $activeSlave.diet = "healthy">>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 <br><<link "Fill $him up with water as punishment">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You meet $him in time for $his next meal and tell $him that you're aware of $his stealing. You indicate a table full of cups, and tell $him that $he can drink as much as $he wants from them if $he'll tell you the truth. $He confesses, and is horrified to find they're full of water, not food. You add casually that $he can choose not to 'eat' the contents... but that $he'll get no real food until $he finishes every one. Torn between hunger and reluctance, $he spends the next hour struggling with so much water that you have to check $him for water intoxication. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a bulging<</if>> stomach and a @@.gold;sincere desire to avoid further punishment.@@
-	<<set $activeSlave.trust -= 5>>
+		You meet $him in time for $his next meal and tell $him that you're aware of $his stealing. You indicate a table full of cups, and tell $him that $he can drink as much as $he wants from them if $he'll tell you the truth. $He confesses, and is horrified to find they're full of water, not food. You add casually that $he can choose not to 'eat' the contents... but that $he'll get no real food until $he finishes every one. Torn between hunger and reluctance, $he spends the next hour struggling with so much water that you have to check $him for water intoxication. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a bulging<</if>> stomach and a @@.gold;sincere desire to avoid further punishment.@@
+		<<set $activeSlave.trust -= 5>>
 	<</replace>>
 <</link>>
 <br><<link "Make $him eat until $he regrets it">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You meet $him in time for $his next meal and tell $him that you're aware of $his stealing. You indicate a table full of cups, and tell $him that $he is going to eat the contents of every last one, every day, until $he regrets being a glutton. $He gulps at the sight, but eagerly digs in. As $his stomach steadily distends and the cups rapidly empty, you realize you may have made a mistake. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a hugely bulging<</if>> stomach and a @@.mediumorchid;smirk at your so-called punishment.@@
-	<<set $activeSlave.devotion -= 5, $activeSlave.inflationType = "food", $activeSlave.inflationMethod = 1>>
-	<<if $activeSlave.bellyPreg > 0 || $activeSlave.bellyImplant > 0>>
-		<<set $activeSlave.inflation = 1>>
-	<<else>>
-		<<set $activeSlave.inflation = 3>>
-	<</if>>
-	<<run SetBellySize($activeSlave)>>
+		You meet $him in time for $his next meal and tell $him that you're aware of $his stealing. You indicate a table full of cups, and tell $him that $he is going to eat the contents of every last one, every day, until $he regrets being a glutton. $He gulps at the sight, but eagerly digs in. As $his stomach steadily distends and the cups rapidly empty, you realize you may have made a mistake. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a hugely bulging<</if>> stomach and a @@.mediumorchid;smirk at your so-called punishment.@@
+		<<set $activeSlave.devotion -= 5, $activeSlave.inflationType = "food", $activeSlave.inflationMethod = 1>>
+		<<if $activeSlave.bellyPreg > 0 || $activeSlave.bellyImplant > 0>>
+			<<set $activeSlave.inflation = 1>>
+		<<else>>
+			<<set $activeSlave.inflation = 3>>
+		<</if>>
+		<<run SetBellySize($activeSlave)>>
 	<</replace>>
 <</link>>
 <<if ($cumSlaves >= 5) && (($activeSlave.fetish != "cumslut") || ($activeSlave.fetishKnown == 0))>>
-<br><<link "Restrict $him to nothing but fresh cum from the Dairy">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You meet $him in time for $his next meal and tell $him that you're aware of $his stealing. You tell $him that you understand $his need to eat, and that for the rest of the week you'll mercifully be allowing $him to try a new diet on which $he can eat as much as $he wants. $He's overjoyed <<if canHear($activeSlave)>>to hear it<<elseif canSee($activeSlave)>>when $he reads it on a nearby screen display<<else>>when $he figures it out<</if>>, though this pleasure is replaced with extreme disgust when $he learns that $his only culinary options are limited to cum. It's just nutritionally augmented enough to prevent starvation. Disgust is defeated by hunger pangs, and $he spends most of the week going around with a @@.hotpink;preoccupied@@ look on $his face and<<if $activeSlave.belly >= 1500>> an even more<<else>> a slightly<</if>> distended belly. By the end, $he's starting to @@.lightcoral;salivate@@ at the mere scent of ejaculate.
-	<<set $activeSlave.devotion += 4, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.inflation = 1, $activeSlave.inflationType = "cum", $activeSlave.inflationMethod = 1>>
-	<<run SetBellySize($activeSlave)>>
-	<</replace>>
-<</link>>
+	<br><<link "Restrict $him to nothing but fresh cum from the Dairy">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You meet $him in time for $his next meal and tell $him that you're aware of $his stealing. You tell $him that you understand $his need to eat, and that for the rest of the week you'll mercifully be allowing $him to try a new diet on which $he can eat as much as $he wants. $He's overjoyed <<if canHear($activeSlave)>>to hear it<<elseif canSee($activeSlave)>>when $he reads it on a nearby screen display<<else>>when $he figures it out<</if>>, though this pleasure is replaced with extreme disgust when $he learns that $his only culinary options are limited to cum. It's just nutritionally augmented enough to prevent starvation. Disgust is defeated by hunger pangs, and $he spends most of the week going around with a @@.hotpink;preoccupied@@ look on $his face and<<if $activeSlave.belly >= 1500>> an even more<<else>> a slightly<</if>> distended belly. By the end, $he's starting to @@.lightcoral;salivate@@ at the mere <<if canSmell($activeSlave)>>scent<<else>>thought<</if>> of ejaculate.
+			<<set $activeSlave.devotion += 4, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.inflation = 1, $activeSlave.inflationType = "cum", $activeSlave.inflationMethod = 1>>
+			<<run SetBellySize($activeSlave)>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "huge naturals">>
@@ -13844,176 +13849,176 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Give $him a nice massage">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You sit on the couch next to your desk and pat your thighs. $He smiles and comes over, lowering $himself
-	<<if $PC.belly >= 10000>>
-		beside you and cozying up to your pregnant belly and sliding a hand down to see to your pussy without hesitation. You help $him get comfortable and instead of demanding $he please you or get down on all fours, you just sit there with $him,
-	<<elseif $PC.dick == 0>>
-		into your lap without hesitation. You help $him get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap,
-	<<else>>
-		onto your member
-		<<if $PC.vagina == 1>>
-			and sliding a hand down to see to your pussy
-		<</if>>
-		without hesitation. You help $him get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap,
-	<</if>>
-	gently massaging $his massive tits. They get sore from swinging around as $he moves, works, and fucks, and soon $he's groaning with pleasure at the attention. You finally manage to bring $him to orgasm with almost nothing but delicate stimulation of $his nipples. @@.mediumaquamarine;$He has become more trusting of you.@@
-	<<set $activeSlave.trust += 4, $activeSlave.counter.mammary++, $mammaryTotal++>>
-	<<if $activeSlave.lactation > 0>>
-		<<set $activeSlave.lactationDuration = 2>>
-		<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
-	<<else>>
-		<<set $activeSlave.induceLactation += 3>>
-		<<= induceLactation($activeSlave)>>
-	<</if>>
-	<</replace>>
-<</link>>
-<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave) && $activeSlave.belly < 100000>>
-<br><<link "Use $him so they swing around">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him to kneel on the smooth floor. $He knows this means doggy style, so $he compliantly arches $his back and cocks $his hips to offer $himself to you. You<<if $PC.dick == 0>> don a strap-on and<</if>> enter
-	<<if canDoVaginal($activeSlave)>>
-		$his pussy
-	<<else>>
-		$his ass
-	<</if>>
-	without preamble and seize $his hips. $He braces $himself, knowing what's coming, but soon $he discovers a new disadvantage to $his pendulous breasts: as you pound $him hard, $his long nipples frequently brush against the floor, causing $him to wince and buck.
-	<<if $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
-		<<if canAchieveErection($activeSlave)>>
-			$His cock doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal.
-		<<elseif $activeSlave.dick > 20>>
-			$His cock doesn't help, either, flopping around on the floor as $he vacillates between pain and arousal.
+		You sit on the couch next to your desk and pat your thighs. $He smiles and comes over, lowering $himself
+		<<if $PC.belly >= 10000>>
+			beside you and cozying up to your pregnant belly and sliding a hand down to see to your pussy without hesitation. You help $him get comfortable and instead of demanding $he please you or get down on all fours, you just sit there with $him,
+		<<elseif $PC.dick == 0>>
+			into your lap without hesitation. You help $him get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap,
 		<<else>>
-			$His cock doesn't help, either, flopping around feebly as $he vacillates between pain and arousal.
+			onto your member
+			<<if $PC.vagina == 1>>
+				and sliding a hand down to see to your pussy
+			<</if>>
+			without hesitation. You help $him get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap,
 		<</if>>
-	<<elseif $activeSlave.clit > 2>>
-		$His huge clit doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal.
-	<</if>>
-	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-		When you switch to $his ass, the shallower strokes give $his nipples a bit of respite.
-	<</if>>
-	You finish with a particularly hard thrust
-	<<if $PC.dick == 0>>
-		and shake with climax,
-	<<else>>
-		to spill your seed deep inside $his
-		<<if canDoAnal($activeSlave)>>
-			butt, ramming forward hard enough to spill $him down onto $his bosom. As you rise, $his discomfited form is a pretty sight, with $his breasts squashed against the floor and $his well fucked butt lewdly relaxed.
+		gently massaging $his massive tits. They get sore from swinging around as $he moves, works, and fucks, and soon $he's groaning with pleasure at the attention. You finally manage to bring $him to orgasm with almost nothing but delicate stimulation of $his nipples. @@.mediumaquamarine;$He has become more trusting of you.@@
+		<<set $activeSlave.trust += 4, $activeSlave.counter.mammary++, $mammaryTotal++>>
+		<<if $activeSlave.lactation > 0>>
+			<<set $activeSlave.lactationDuration = 2>>
+			<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
 		<<else>>
-			pussy, ramming forward hard enough to spill $him down onto $his bosom. As you rise, $his discomfited form is a pretty sight, with $his breasts squashed against the floor and $his well fucked cunt lewdly gaped.
+			<<set $activeSlave.induceLactation += 3>>
+			<<= induceLactation($activeSlave)>>
 		<</if>>
-	<</if>>
-	@@.hotpink;$He has become more submissive.@@
-	<<set $activeSlave.devotion += 4>>
-	<<= BothVCheck()>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>>
+<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave) && $activeSlave.belly < 100000>>
+	<br><<link "Use $him so they swing around">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him to kneel on the smooth floor. $He knows this means doggy style, so $he compliantly arches $his back and cocks $his hips to offer $himself to you. You<<if $PC.dick == 0>> don a strap-on and<</if>> enter
+			<<if canDoVaginal($activeSlave)>>
+				$his pussy
+			<<else>>
+				$his ass
+			<</if>>
+			without preamble and seize $his hips. $He braces $himself, knowing what's coming, but soon $he discovers a new disadvantage to $his pendulous breasts: as you pound $him hard, $his long nipples frequently brush against the floor, causing $him to wince and buck.
+			<<if $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
+				<<if canAchieveErection($activeSlave)>>
+					$His cock doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal.
+				<<elseif $activeSlave.dick > 20>>
+					$His cock doesn't help, either, flopping around on the floor as $he vacillates between pain and arousal.
+				<<else>>
+					$His cock doesn't help, either, flopping around feebly as $he vacillates between pain and arousal.
+				<</if>>
+			<<elseif $activeSlave.clit > 2>>
+				$His huge clit doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal.
+			<</if>>
+			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+				When you switch to $his ass, the shallower strokes give $his nipples a bit of respite.
+			<</if>>
+			You finish with a particularly hard thrust
+			<<if $PC.dick == 0>>
+				and shake with climax,
+			<<else>>
+				to spill your seed deep inside $his
+				<<if canDoAnal($activeSlave)>>
+					butt, ramming forward hard enough to spill $him down onto $his bosom. As you rise, $his discomfited form is a pretty sight, with $his breasts squashed against the floor and $his well fucked butt lewdly relaxed.
+				<<else>>
+					pussy, ramming forward hard enough to spill $him down onto $his bosom. As you rise, $his discomfited form is a pretty sight, with $his breasts squashed against the floor and $his well fucked cunt lewdly gaped.
+				<</if>>
+			<</if>>
+			@@.hotpink;$He has become more submissive.@@
+			<<set $activeSlave.devotion += 4>>
+			<<= BothVCheck()>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Show $him off in public">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You bring $him out onto the promenade, still nude, $his huge bare udders attracting open stares as $his every movement sets them in motion.
-	<<if $activeSlave.sexualFlaw == "attention whore">>
-		The slut loves being the center of attention and couldn't ask for more.
-	<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "humiliation")>>
-		The slut loves being embarrassed, and $he blushes furiously as $his nipples stiffen with arousal.
-	<<elseif ($activeSlave.energy > 95)>>
-		The nympho slut loves being shown off, and $he flaunts $his boobs shamelessly.
-	<<elseif ($activeSlave.counter.anal > 100) && ($activeSlave.counter.oral > 100)>>
-		$He's such a veteran sex slave that $he takes the stares in stride.
-	<<else>>
-		$He blushes a little, but tips $his chin up and follows you obediently.
-	<</if>>
-	When you reach a good spot, you grab $his
-	<<if ($activeSlave.weight > 30)>>
-		fat ass
-	<<elseif ($activeSlave.weight > 10)>>
-		plush hips
-	<<elseif ($activeSlave.weight >= -10)>>
-		trim hips
-	<<elseif ($activeSlave.butt > 2)>>
-		big butt
-	<<else>>
-		skinny ass
-	<</if>>
-	and
-	<<if ($activeSlave.height >= 185)>>
-		pull $his tall body in
-	<<elseif ($activeSlave.height >= 160)>>
-		pull $him up on tiptoe
-	<<else>>
-		push $his petite form up onto a railing
-	<</if>>
-	for standing sex. $He cocks $his hips and takes your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> compliantly, and after a few thrusts you reach down, seize $him behind each knee, and
-	<<if $PC.belly >= 5000 && $activeSlave.belly >= 100000>>
-		collapse against a nearby bunch under the excessive weight between your pregnancy and $his _belly stomach. Appreciating the bench's sacrifice, you return to fucking $him.
-		<<if $activeSlave.bellyPreg >= 600000>>
-			Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine.
-		<</if>>
-	<<elseif $activeSlave.belly >= 100000>>
-		pull $him as close as you can with $his _belly belly between you. Struggling to support the immense weight, you back $him against a rail so that you can continue to fuck $him while holding $him.
-		<<if $activeSlave.bellyPreg >= 600000>>
-			Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine.
-		<</if>>
-	<<else>>
-		hoist $his legs up so $he's pinned against your
-		<<if $PC.belly >= 1500>>
-			pregnancy,
-		<<elseif ($PC.boobs == 0)>>
-			chest,
-		<<else>>
-			boobs,
-		<</if>>
-		helpless to do anything but let you hold $him in midair and fuck $him.
-	<</if>>
-	<<if canDoVaginal($activeSlave)>>
-		<<if ($activeSlave.vagina > 1)>>
-			$His pussy can take a hard pounding, so you give it to $him.
-		<<else>>
-			$His poor tight pussy can barely take the pounding you're administering.
-		<</if>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<if ($activeSlave.anus > 1)>>
-			$His loose butthole can take a hard pounding, so you give it to $him.
-		<<else>>
-			$His poor tight butthole can barely take the pounding you're administering.
-		<</if>>
-		<<= AnalVCheck()>>
-	<</if>>
-	$He loses all composure, gasping and panting as the massive weight of $his chest bounces up and down, making an audible clap with each stroke as $his huge tits slap painfully together. Despite this, or perhaps partly because of it, $he begins to orgasm,
-	<<if ($activeSlave.chastityPenis == 1)>>
-		the discomfort of being half-hard under $his chastity cage making $him squirm as cum rushes out of the hole at its tip.
-	<<elseif canAchieveErection($activeSlave)>>
-		<<if ($activeSlave.dick > 3)>>
-			$his monster of a cock releasing a jet of cum with each thrust into $him.
-		<<elseif ($activeSlave.dick > 3)>>
-			$his huge cock releasing a jet of cum with each thrust into $him.
-		<<elseif ($activeSlave.dick > 1)>>
-			$his cock releasing a spurt of cum with each thrust into $him.
-		<<else>>
-			$his tiny dick spurting cum with each thrust into $him.
-		<</if>>
-	<<elseif ($activeSlave.dick > 9)>>
-		$his huge, soft cock spurting cum as it wiggles to your motions.
-	<<elseif ($activeSlave.dick > 0)>>
-		$his soft cock scattering cum all over the place as it flops around.
-	<<elseif ($activeSlave.belly >= 1500)>>
-		$his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly adding to $his near-total discomfiture.
-	<<elseif $activeSlave.weight > 95>>
-		$his soft body jiggling as $he climaxes.
-	<<elseif ($activeSlave.muscles > 5)>>
-		$his abs convulsing deliciously as $he climaxes.
-	<<elseif canDoVaginal($activeSlave)>>
-		$his pussy tightening.
-	<<else>>
-		$his poor anal ring tightening.
-	<</if>>
-	The crowd that surrounds you during this noisy spectacle @@.green;is suitably impressed.@@
-	<<run repX(1250, "event", $activeSlave)>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<br><<link "Show $him off in public">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You bring $him out onto the promenade, still nude, $his huge bare udders attracting open stares as $his every movement sets them in motion.
+			<<if $activeSlave.sexualFlaw == "attention whore">>
+				The slut loves being the center of attention and couldn't ask for more.
+			<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "humiliation")>>
+				The slut loves being embarrassed, and $he blushes furiously as $his nipples stiffen with arousal.
+			<<elseif ($activeSlave.energy > 95)>>
+				The nympho slut loves being shown off, and $he flaunts $his boobs shamelessly.
+			<<elseif ($activeSlave.counter.anal > 100) && ($activeSlave.counter.oral > 100)>>
+				$He's such a veteran sex slave that $he takes the stares in stride.
+			<<else>>
+				$He blushes a little, but tips $his chin up and follows you obediently.
+			<</if>>
+			When you reach a good spot, you grab $his
+			<<if ($activeSlave.weight > 30)>>
+				fat ass
+			<<elseif ($activeSlave.weight > 10)>>
+				plush hips
+			<<elseif ($activeSlave.weight >= -10)>>
+				trim hips
+			<<elseif ($activeSlave.butt > 2)>>
+				big butt
+			<<else>>
+				skinny ass
+			<</if>>
+			and
+			<<if ($activeSlave.height >= 185)>>
+				pull $his tall body in
+			<<elseif ($activeSlave.height >= 160)>>
+				pull $him up on tiptoe
+			<<else>>
+				push $his petite form up onto a railing
+			<</if>>
+			for standing sex. $He cocks $his hips and takes your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> compliantly, and after a few thrusts you reach down, seize $him behind each knee, and
+			<<if $PC.belly >= 5000 && $activeSlave.belly >= 100000>>
+				collapse against a nearby bunch under the excessive weight between your pregnancy and $his _belly stomach. Appreciating the bench's sacrifice, you return to fucking $him.
+				<<if $activeSlave.bellyPreg >= 600000>>
+					Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine.
+				<</if>>
+			<<elseif $activeSlave.belly >= 100000>>
+				pull $him as close as you can with $his _belly belly between you. Struggling to support the immense weight, you back $him against a rail so that you can continue to fuck $him while holding $him.
+				<<if $activeSlave.bellyPreg >= 600000>>
+					Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine.
+				<</if>>
+			<<else>>
+				hoist $his legs up so $he's pinned against your
+				<<if $PC.belly >= 1500>>
+					pregnancy,
+				<<elseif ($PC.boobs == 0)>>
+					chest,
+				<<else>>
+					boobs,
+				<</if>>
+				helpless to do anything but let you hold $him in midair and fuck $him.
+			<</if>>
+			<<if canDoVaginal($activeSlave)>>
+				<<if ($activeSlave.vagina > 1)>>
+					$His pussy can take a hard pounding, so you give it to $him.
+				<<else>>
+					$His poor tight pussy can barely take the pounding you're administering.
+				<</if>>
+				<<= VaginalVCheck()>>
+			<<else>>
+				<<if ($activeSlave.anus > 1)>>
+					$His loose butthole can take a hard pounding, so you give it to $him.
+				<<else>>
+					$His poor tight butthole can barely take the pounding you're administering.
+				<</if>>
+				<<= AnalVCheck()>>
+			<</if>>
+			$He loses all composure, gasping and panting as the massive weight of $his chest bounces up and down, making an audible clap with each stroke as $his huge tits slap painfully together. Despite this, or perhaps partly because of it, $he begins to orgasm,
+			<<if ($activeSlave.chastityPenis == 1)>>
+				the discomfort of being half-hard under $his chastity cage making $him squirm as cum rushes out of the hole at its tip.
+			<<elseif canAchieveErection($activeSlave)>>
+				<<if ($activeSlave.dick > 3)>>
+					$his monster of a cock releasing a jet of cum with each thrust into $him.
+				<<elseif ($activeSlave.dick > 3)>>
+					$his huge cock releasing a jet of cum with each thrust into $him.
+				<<elseif ($activeSlave.dick > 1)>>
+					$his cock releasing a spurt of cum with each thrust into $him.
+				<<else>>
+					$his tiny dick spurting cum with each thrust into $him.
+				<</if>>
+			<<elseif ($activeSlave.dick > 9)>>
+				$his huge, soft cock spurting cum as it wiggles to your motions.
+			<<elseif ($activeSlave.dick > 0)>>
+				$his soft cock scattering cum all over the place as it flops around.
+			<<elseif ($activeSlave.belly >= 1500)>>
+				$his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly adding to $his near-total discomfiture.
+			<<elseif $activeSlave.weight > 95>>
+				$his soft body jiggling as $he climaxes.
+			<<elseif ($activeSlave.muscles > 5)>>
+				$his abs convulsing deliciously as $he climaxes.
+			<<elseif canDoVaginal($activeSlave)>>
+				$his pussy tightening.
+			<<else>>
+				$his poor anal ring tightening.
+			<</if>>
+			The crowd that surrounds you during this noisy spectacle @@.green;is suitably impressed.@@
+			<<run repX(1250, "event", $activeSlave)>>
+		<</replace>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 
 <<case "hugely pregnant">>
@@ -14021,143 +14026,143 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Help $him with those hard to reach places">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He's absorbed enough with $his application that $he starts with surprise when you gently encircle $him from behind with a hug<<if $PC.belly >= 5000>>, pushing your own gravid belly into the small of $his back<</if>>. When you take the lotion and begin to lovingly massage it into $his harder to reach areas, $he sighs with pleasure and leans against you.
-	<<if ($activeSlave.amp != 1) && $PC.belly >= 1500>> $He takes the lotion and begins to return the favor. You spend the rest of $his break carefully massaging each other's baby bumps.<</if>>
-	<<if !canTalk($activeSlave)>>
-		<<if $activeSlave.voice == 0>>
-			$He looks like $he would love to thank you, were $he not mute.
-		<<elseif ($activeSlave.accent >= 3)>>
-			$He looks like $he would love to thank you, if $he knew how.
-		<</if>>
-	<<else>>
-		<<if ($activeSlave.lips > 70)>>
-			$He murmurs through $his huge lips,
-		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-			$He murmurs through $his piercings,
+		$He's absorbed enough with $his application that $he starts with surprise when you gently encircle $him from behind with a hug<<if $PC.belly >= 5000>>, pushing your own gravid belly into the small of $his back<</if>>. When you take the lotion and begin to lovingly massage it into $his harder to reach areas, $he sighs with pleasure and leans against you.
+		<<if ($activeSlave.amp != 1) && $PC.belly >= 1500>> $He takes the lotion and begins to return the favor. You spend the rest of $his break carefully massaging each other's baby bumps.<</if>>
+		<<if !canTalk($activeSlave)>>
+			<<if $activeSlave.voice == 0>>
+				$He looks like $he would love to thank you, were $he not mute.
+			<<elseif ($activeSlave.accent >= 3)>>
+				$He looks like $he would love to thank you, if $he knew how.
+			<</if>>
 		<<else>>
-			$He murmurs,
-		<</if>>
-		"That felt really ni<<c>>e, <<Master>>."
-		<<if $PC.belly >= 1500>>
-			You have to agree, it did feel nice on your growing middle.
+			<<if ($activeSlave.lips > 70)>>
+				$He murmurs through $his huge lips,
+			<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
+				$He murmurs through $his piercings,
+			<<else>>
+				$He murmurs,
+			<</if>>
+			"That felt really ni<<c>>e, <<Master>>."
+			<<if $PC.belly >= 1500>>
+				You have to agree, it did feel nice on your growing middle.
+			<</if>>
 		<</if>>
-	<</if>>
-	@@.mediumaquamarine;$He has become more trusting of you.@@
-	<<set $activeSlave.trust += 4>>
+		@@.mediumaquamarine;$He has become more trusting of you.@@
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <<if (canDoAnal($activeSlave) && $activeSlave.mpreg == 1) || (canDoVaginal($activeSlave))>>
-<br><<link "Gently fuck $him while helping $him apply lotion">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He's absorbed enough with $his application that $he starts with surprise when you gently encircle $him from behind with a hug<<if $PC.belly >= 5000>>, pushing your own gravid belly into the small of $his back<</if>>. When you take the lotion and begin to lovingly massage it into $his harder to reach areas, $he sighs with pleasure and leans back into you. $He feels <<if $PC.dick == 0>>the warmth of your growing arousal<<else>>your erection hard<</if>> against $him, so $he
-	<<if ($activeSlave.amp == 1)>>
-		wriggles $his limbless form around on the floor so as to offer $himself to you.
-	<<else>>
-		slowly kneels down with you into a comfortable lotus position on the bathroom floor.
-	<</if>>
-	<<if $activeSlave.mpreg == 1>>
-		<<= AnalVCheck()>>
-	<<else>>
-		<<= VaginalVCheck()>>
-	<</if>>
-	Coupling like this, you can't <<if $PC.dick == 0>>scissor<<else>>fuck<</if>> $him all that hard, but that's just fine given
-	<<if $PC.preg >= 5000>>
-		your condition.
-	<<else>>
-		$his condition.
-	<</if>>
-	$He snuggles back into you as you have gentle sex while looking after $his drum-taut skin.
-	<<if !canTalk($activeSlave)>>
-		<<if $activeSlave.voice == 0>>
-			$He looks like $he would love to thank you, were $he not mute.
-		<<elseif ($activeSlave.accent >= 3)>>
-			$He looks like $he would love to thank you, if $he knew how.
-		<</if>>
-	<<else>>
-		<<if ($activeSlave.lips > 70)>>
-			$He murmurs through $his huge lips,
-		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
-			$He murmurs through $his piercings,
-		<<else>>
-			$He murmurs,
-		<</if>>
-		"That feel<<s>> really ni<<c>>e, <<Master>>."
-	<</if>>
-	@@.mediumaquamarine;$He has become more trusting of you.@@
-	<<set $activeSlave.trust += 4>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $activeSlave.mpreg == 0>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<br><<link "Gently fuck $him while helping $him apply lotion">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$He's absorbed enough with $his application that $he starts with surprise when you gently encircle $him from behind with a hug<<if $PC.belly >= 5000>>, pushing your own gravid belly into the small of $his back<</if>>. When you take the lotion and begin to lovingly massage it into $his harder to reach areas, $he sighs with pleasure and leans back into you. $He feels <<if $PC.dick == 0>>the warmth of your growing arousal<<else>>your erection hard<</if>> against $him, so $he
+			<<if ($activeSlave.amp == 1)>>
+				wriggles $his limbless form around on the floor so as to offer $himself to you.
+			<<else>>
+				slowly kneels down with you into a comfortable lotus position on the bathroom floor.
+			<</if>>
+			<<if $activeSlave.mpreg == 1>>
+				<<= AnalVCheck()>>
+			<<else>>
+				<<= VaginalVCheck()>>
+			<</if>>
+			Coupling like this, you can't <<if $PC.dick == 0>>scissor<<else>>fuck<</if>> $him all that hard, but that's just fine given
+			<<if $PC.preg >= 5000>>
+				your condition.
+			<<else>>
+				$his condition.
+			<</if>>
+			$He snuggles back into you as you have gentle sex while looking after $his drum-taut skin.
+			<<if !canTalk($activeSlave)>>
+				<<if $activeSlave.voice == 0>>
+					$He looks like $he would love to thank you, were $he not mute.
+				<<elseif ($activeSlave.accent >= 3)>>
+					$He looks like $he would love to thank you, if $he knew how.
+				<</if>>
+			<<else>>
+				<<if ($activeSlave.lips > 70)>>
+					$He murmurs through $his huge lips,
+				<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
+					$He murmurs through $his piercings,
+				<<else>>
+					$He murmurs,
+				<</if>>
+				"That feel<<s>> really ni<<c>>e, <<Master>>."
+			<</if>>
+			@@.mediumaquamarine;$He has become more trusting of you.@@
+			<<set $activeSlave.trust += 4>>
+		<</replace>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $activeSlave.mpreg == 0>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 <<if canDoAnal($activeSlave)>>
-<<if $activeSlave.mpreg == 1>>
-<br><<link "$His backdoor can't get more pregnant">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He's absorbed enough with $his application that $he starts with surprise when you seize $his hips and bend $him over the sink for a quick assfuck.
-	<<= AnalVCheck()>>
-	<<if ($activeSlave.amp != 1)>>
-		$He does $his best to brace $himself against the sink, but $his hands are slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time.
-	<</if>>
-	Taking it up the ass while hugely pregnant isn't the most comfortable way to have sex, but such is the life of a sex slave.
-	<<if ($activeSlave.lactation == 1)>>
-		As you pound $him, $his breasts, sore from lactation, give $him quite a bit of discomfort.
-	<<elseif ($activeSlave.boobs > 1000)>>
-		As you pound $him, $his huge breasts compound the discomfort.
-	<</if>>
-	When you finally finish and withdraw your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>>, $he groans with relief. @@.hotpink;$He has become more submissive.@@
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take virginity//<</if>>
-<<else>>
-<br><<link "$His backdoor isn't pregnant">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He's absorbed enough with $his application that $he starts with surprise when you seize $his hips and bend $him over the sink for a quick assfuck.
-	<<= AnalVCheck()>>
-	<<if ($activeSlave.amp != 1)>>
-		$He does $his best to brace $himself against the sink, but $his hands are slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time.
-	<</if>>
-	Taking it up the ass while hugely pregnant isn't the most comfortable way to have sex, but such is the life of a sex slave.
-	<<if ($activeSlave.lactation == 1)>>
-		As you pound $him, $his breasts, sore from lactation, give $him quite a bit of discomfort.
-	<<elseif ($activeSlave.boobs > 1000)>>
-		As you pound $him, $his huge breasts compound the discomfort.
+	<<if $activeSlave.mpreg == 1>>
+		<br><<link "$His backdoor can't get more pregnant">>
+			<<EventNameDelink $activeSlave>>
+			<<replace "#result">>
+				$He's absorbed enough with $his application that $he starts with surprise when you seize $his hips and bend $him over the sink for a quick assfuck.
+				<<= AnalVCheck()>>
+				<<if ($activeSlave.amp != 1)>>
+					$He does $his best to brace $himself against the sink, but $his hands are slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time.
+				<</if>>
+				Taking it up the ass while hugely pregnant isn't the most comfortable way to have sex, but such is the life of a sex slave.
+				<<if ($activeSlave.lactation == 1)>>
+					As you pound $him, $his breasts, sore from lactation, give $him quite a bit of discomfort.
+				<<elseif ($activeSlave.boobs > 1000)>>
+					As you pound $him, $his huge breasts compound the discomfort.
+				<</if>>
+				When you finally finish and withdraw your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>>, $he groans with relief. @@.hotpink;$He has become more submissive.@@
+				<<set $activeSlave.devotion += 4>>
+				<</replace>>
+			<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his virginity//<</if>>
+		<<else>>
+			<br><<link "$His backdoor isn't pregnant">>
+				<<EventNameDelink $activeSlave>>
+				<<replace "#result">>
+				$He's absorbed enough with $his application that $he starts with surprise when you seize $his hips and bend $him over the sink for a quick assfuck.
+				<<= AnalVCheck()>>
+				<<if ($activeSlave.amp != 1)>>
+					$He does $his best to brace $himself against the sink, but $his hands are slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time.
+				<</if>>
+				Taking it up the ass while hugely pregnant isn't the most comfortable way to have sex, but such is the life of a sex slave.
+				<<if ($activeSlave.lactation == 1)>>
+					As you pound $him, $his breasts, sore from lactation, give $him quite a bit of discomfort.
+				<<elseif ($activeSlave.boobs > 1000)>>
+					As you pound $him, $his huge breasts compound the discomfort.
+				<</if>>
+				When you finally finish and withdraw your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>>, $he groans with relief. @@.hotpink;$He has become more submissive.@@
+				<<set $activeSlave.devotion += 4>>
+			<</replace>>
+		<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his virginity//<</if>>
 	<</if>>
-	When you finally finish and withdraw your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>>, $he groans with relief. @@.hotpink;$He has become more submissive.@@
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take virginity//<</if>>
-<</if>>
 <</if>>
 <<if (canDoAnal($activeSlave) && $activeSlave.mpreg == 1) || (canDoVaginal($activeSlave)) && $activeSlave.belly >= 300000>>
-<br><<link "Tip $him over and fuck $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He's absorbed enough with $his application that $he starts with surprise when you seize $his hips and shove $him onto $his _belly stomach for a quick fuck.
-	<<if $activeSlave.mpreg == 1>>
-		<<= AnalVCheck()>>
-	<<else>>
-		<<= VaginalVCheck()>>
-	<</if>>
-	<<if ($activeSlave.amp != 1)>>
-		$He does $his best to steady $himself atop the squirming mass, but $his hands are slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time.
-	<</if>>
-	<<if $activeSlave.mpreg == 1>>
-		Taking it up the ass
-	<<else>>
-		Getting roughly fucked
-	<</if>>
-	while hugely pregnant isn't the most comfortable way to have sex, neither is being forced to put more pressure on an already overfilled organ, but such is the life of a sex slave.
-	<<if ($activeSlave.lactation == 1)>>
-		As you pound $him, $his breasts, sore from lactation, give $him quite a bit of discomfort.
-	<<elseif ($activeSlave.boobs > 1000)>>
-		As you pound $him, $his huge breasts compound the discomfort.
-	<</if>>
-	When you finally finish and withdraw your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>>, $he groans with relief and rolls onto $his side. @@.hotpink;$He has become more submissive.@@
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $activeSlave.mpreg == 0>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<br><<link "Tip $him over and fuck $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$He's absorbed enough with $his application that $he starts with surprise when you seize $his hips and shove $him onto $his _belly stomach for a quick fuck.
+			<<if $activeSlave.mpreg == 1>>
+				<<= AnalVCheck()>>
+			<<else>>
+				<<= VaginalVCheck()>>
+			<</if>>
+			<<if ($activeSlave.amp != 1)>>
+				$He does $his best to steady $himself atop the squirming mass, but $his hands are slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time.
+			<</if>>
+			<<if $activeSlave.mpreg == 1>>
+				Taking it up the ass
+			<<else>>
+				Getting roughly fucked
+			<</if>>
+			while hugely pregnant isn't the most comfortable way to have sex, neither is being forced to put more pressure on an already overfilled organ, but such is the life of a sex slave.
+			<<if ($activeSlave.lactation == 1)>>
+				As you pound $him, $his breasts, sore from lactation, give $him quite a bit of discomfort.
+			<<elseif ($activeSlave.boobs > 1000)>>
+				As you pound $him, $his huge breasts compound the discomfort.
+			<</if>>
+			When you finally finish and withdraw your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>>, $he groans with relief and rolls onto $his side. @@.hotpink;$He has become more submissive.@@
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $activeSlave.mpreg == 0>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 
 <<case "slave dick on slave">>
@@ -14165,77 +14170,77 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Fuck the bottom">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Since the other slave is riding $activeSlave.slaveName's <<if $seeRace == 1>>$activeSlave.race <</if>>dick, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop the other slave's riding for a moment, and insert yourself into _hisU anus. The other slave
-	<<if $activeSlave.dick <= 2>>
-		gasps as your <<if $PC.dick == 0>>strap-on complements the small dick<<else>>big dick complements the small one<</if>> in $his pussy.
-	<<elseif $activeSlave.dick < 4>>
-		shrieks as _heU feels _hisU holes stretched by <<if $PC.dick == 0>>a strap-on and a cock<<else>>two cocks<</if>>.
-	<<else>>
-		struggles and begs for mercy as _hisU holes are brutally stretched.
-	<</if>>
-	The poor slave rides out the sexual storm as you and $activeSlave.slaveName fuck _himU<<if $PC.vagina == 1>>, your pussy sliding against the base of $activeSlave.slaveName's thrusting shaft<</if>>. $activeSlave.slaveName flirts outrageously with you over the other slave's shoulder whenever $he can. @@.mediumaquamarine;$He has become more trusting of you.@@
-	<<set $activeSlave.trust += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+		Since the other slave is riding $activeSlave.slaveName's <<if $seeRace == 1>>$activeSlave.race <</if>>dick, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop the other slave's riding for a moment, and insert yourself into _hisU anus. The other slave
+		<<if $activeSlave.dick <= 2>>
+			gasps as your <<if $PC.dick == 0>>strap-on complements the small dick<<else>>big dick complements the small one<</if>> in $his pussy.
+		<<elseif $activeSlave.dick < 4>>
+			shrieks as _heU feels _hisU holes stretched by <<if $PC.dick == 0>>a strap-on and a cock<<else>>two cocks<</if>>.
+		<<else>>
+			struggles and begs for mercy as _hisU holes are brutally stretched.
+		<</if>>
+		The poor slave rides out the sexual storm as you and $activeSlave.slaveName fuck _himU<<if $PC.vagina == 1>>, your pussy sliding against the base of $activeSlave.slaveName's thrusting shaft<</if>>. $activeSlave.slaveName flirts outrageously with you over the other slave's shoulder whenever $he can. @@.mediumaquamarine;$He has become more trusting of you.@@
+		<<set $activeSlave.trust += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "Fuck the top">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	Since $activeSlave.slaveName is on top, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop $his thrusting for a moment, and penetrate $his butthole.
-	<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown) == 1>>
-		$He shivers with delight as $he feels $his anal ring stretch to accommodate your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>>. <<set $activeSlave.devotion += 1>>
-	<</if>>
-	<<= AnalVCheck()>>
-	Fucking a slave with <<if $activeSlave.prostate > 0>>prostate <</if>>stimulation from your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> in $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass makes $him cum with indecent speed. You let $him slide down so $he can finish the other slave with $his mouth while you continue using $his anus. The other slave definitely enjoys $activeSlave.slaveName's moaning into _hisU pussy as you use $activeSlave.slaveName's ass. The hard buttfucking $activeSlave.slaveName is getting keeps $his dick stiff all the way through. @@.hotpink;$His submission to you has increased.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take virginity//<</if>>
+	<br><<link "Fuck the top">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			Since $activeSlave.slaveName is on top, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop $his thrusting for a moment, and penetrate $his butthole.
+			<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown) == 1>>
+				$He shivers with delight as $he feels $his anal ring stretch to accommodate your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>>. <<set $activeSlave.devotion += 1>>
+			<</if>>
+			<<= AnalVCheck()>>
+			Fucking a slave with <<if $activeSlave.prostate > 0>>prostate <</if>>stimulation from your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> in $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass makes $him cum with indecent speed. You let $him slide down so $he can finish the other slave with $his mouth while you continue using $his anus. The other slave definitely enjoys $activeSlave.slaveName's moaning into _hisU pussy as you use $activeSlave.slaveName's ass. The hard buttfucking $activeSlave.slaveName is getting keeps $his dick stiff all the way through. @@.hotpink;$His submission to you has increased.@@
+			<<set $activeSlave.devotion += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his virginity//<</if>>
 <</if>>
 <<if canDoVaginal($activeSlave)>>
-<br><<link "The slave giving it has a free pussy, use that">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$activeSlave.slaveName's hermaphroditic genitalia is a little crammed together; it's busy down there. $He obediently stops fucking so you can maneuver into $him.
-	<<= VaginalVCheck()>>
-	Having a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> in $his pussy reduces $his erection a little, so the slave beneath $him helps $his penetration as much as _heU can. It's not the most convenient of fucks, but that's to be expected when a <<= properMaster()>> and two slaves successfully have two separate instances of vaginal intercourse running at once.<<if $PC.vagina == 1>><<if $PC.dick == 1>> You add a third by grabbing a free hand and guiding it to your own pussy; its owner gets the idea and strokes it as best they can.<</if>><</if>> $activeSlave.slaveName's orgasm is general and intense. @@.hotpink;$His devotion to you has increased.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-	<</replace>>
-<</link>><<if ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>>
+	<br><<link "The slave giving it has a free pussy, so use that">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$activeSlave.slaveName's hermaphroditic genitalia is a little crammed together; it's busy down there. $He obediently stops fucking so you can maneuver into $him.
+			<<= VaginalVCheck()>>
+			Having a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> in $his pussy reduces $his erection a little, so the slave beneath $him helps $his penetration as much as _heU can. It's not the most convenient of fucks, but that's to be expected when a <<= properMaster()>> and two slaves successfully have two separate instances of vaginal intercourse running at once.<<if $PC.vagina == 1>><<if $PC.dick == 1>> You add a third by grabbing a free hand and guiding it to your own pussy; its owner gets the idea and strokes it as best they can.<</if>><</if>> $activeSlave.slaveName's orgasm is general and intense. @@.hotpink;$His devotion to you has increased.@@
+			<<set $activeSlave.devotion += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+		<</replace>>
+	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
 <</if>>
 
 <<case "slave clit on slave">>
 
-<<link "The slave taking it has a free anus, use that">>
+<<link "The slave taking it has a free anus, so use that">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Since the other slave is riding $activeSlave.slaveName's huge clit, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop the other slave's riding for a moment, and insert yourself into _hisU anus. The other slave gasps as your <<if $PC.dick == 0>>strap-on complements the clit<<else>>big dick complements the clit<</if>> in _hisU pussy. The poor slave rides out the sexual storm as you and $activeSlave.slaveName fuck _himU. $activeSlave.slaveName flirts outrageously with you over the other slave's shoulder whenever $he can. @@.mediumaquamarine;$He has become more trusting of you.@@
-	<<set $activeSlave.trust += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+		Since the other slave is riding $activeSlave.slaveName's huge clit, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop the other slave's riding for a moment, and insert yourself into _hisU anus. The other slave gasps as your <<if $PC.dick == 0>>strap-on complements the clit<<else>>big dick complements the clit<</if>> in _hisU pussy. The poor slave rides out the sexual storm as you and $activeSlave.slaveName fuck _himU. $activeSlave.slaveName flirts outrageously with you over the other slave's shoulder whenever $he can. @@.mediumaquamarine;$He has become more trusting of you.@@
+		<<set $activeSlave.trust += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "The slave giving it has a free anus, use that">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	Since $activeSlave.slaveName is on top, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop $his thrusting for a moment, and insert yourself into $his anus.
-	<<= AnalVCheck()>>
-	<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
-		$He shivers with delight as $he feels $his anal ring stretch to accommodate your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>>. <<set $activeSlave.devotion += 1>>
-	<</if>>
-	Fucking a slave with stimulation from your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> in $his ass makes $him cum with indecent speed. You let $him slide down so $he can finish the other slave with $his mouth while you continue using $his anus. The other slave definitely enjoys $activeSlave.slaveName's moaning into _hisU pussy as you use $activeSlave.slaveName's ass. The hard buttfucking $activeSlave.slaveName is getting keeps $his clit hard all the way through. @@.hotpink;$His submission to you has increased.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<br><<link "The slave giving it has a free anus, so use that">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			Since $activeSlave.slaveName is on top, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop $his thrusting for a moment, and insert yourself into $his anus.
+			<<= AnalVCheck()>>
+			<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
+				$He shivers with delight as $he feels $his anal ring stretch to accommodate your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>>. <<set $activeSlave.devotion += 1>>
+			<</if>>
+			Fucking a slave with stimulation from your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> in $his ass makes $him cum with indecent speed. You let $him slide down so $he can finish the other slave with $his mouth while you continue using $his anus. The other slave definitely enjoys $activeSlave.slaveName's moaning into _hisU pussy as you use $activeSlave.slaveName's ass. The hard buttfucking $activeSlave.slaveName is getting keeps $his clit hard all the way through. @@.hotpink;$His submission to you has increased.@@
+			<<set $activeSlave.devotion += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 <<if canDoVaginal($activeSlave)>>
-<br><<link "The slave giving it has a free pussy, use that">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	Since $activeSlave.slaveName is on top, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop $his thrusting for a moment, and insert yourself into $his pussy. $He obediently stops fucking so you can maneuver into $him.
-	<<= VaginalVCheck()>>
-	Having a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> in $his pussy reduces $his ability to use $his engorged clit like a penis a little, so the slave beneath $him helps $his penetration as much as _heU can. It's not the most convenient of fucks, but that's to be expected when a <<= properMaster()>> and two slaves successfully have two separate instances of vaginal intercourse running at once. $His orgasm is general and intense. @@.hotpink;$His devotion to you has increased.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-	<</replace>>
-<</link>><<if ($activeSlave.vagina == 0)>> //This option will take vaginal virginity//<</if>>
+	<br><<link "The slave giving it has a free pussy, so use that">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			Since $activeSlave.slaveName is on top, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop $his thrusting for a moment, and insert yourself into $his pussy. $He obediently stops fucking so you can maneuver into $him.
+			<<= VaginalVCheck()>>
+			Having a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> in $his pussy reduces $his ability to use $his engorged clit like a penis a little, so the slave beneath $him helps $his penetration as much as _heU can. It's not the most convenient of fucks, but that's to be expected when a <<= properMaster()>> and two slaves successfully have two separate instances of vaginal intercourse running at once. $His orgasm is general and intense. @@.hotpink;$His devotion to you has increased.@@
+			<<set $activeSlave.devotion += 4, $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+		<</replace>>
+	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
 <</if>>
 
 <<case "PA servant">>
@@ -14243,193 +14248,193 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Share the slave with your PA">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You enter, eliciting an embarrassed
-	"Um, hi <<Master>>" from $activeSlave.slaveName and a cheery wave from $assistantName. At this stage of your morning ablutions, you're conveniently naked, so you
-	<<if $PC.belly >= 5000>>
-		heft yourself
-	<<elseif $PC.belly >= 1500>>
-		clamber up
-	<<else>>
-		leap up
-	<</if>>
-	onto the desktop and kneel upright, legs splayed. (Naturally, the desk is reinforced and sealed for exactly this reason.) You point meaningfully at your
-	<<if $PC.dick == 1>>
-		stiff prick <<if $PC.vagina == 1>>and flushed pussy<</if>>, and the obedient slave <<if $activeSlave.belly >= 5000>>hefts $himself<<else>>clambers<</if>> up to suck you off<<if $PC.vagina == 1>> and eat you out<</if>>. When you're close, you surprise $him by pulling your cock out of $his mouth and blowing your load onto the glass.
-	<<else>>
-		hot cunt, and the obedient slave <<if $activeSlave.belly >= 5000>>hefts $himself<<else>>clambers<</if>> up to eat you out. You surprise $him by taking your time, drawing out the oral session with the ulterior motive of getting as much saliva and pussyjuice onto the glass as possible.
-	<</if>>
-	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> shifts _hisA avatar so that this lands all over _hisA
-	<<switch $assistantAppearance>>
-	<<case "monstergirl">>
-		cocks.
-	<<case "shemale">>
-		huge cock.
-	<<case "amazon">>
-		muscular pussy.
-	<<case "businesswoman">>
-		mature pussy.
-	<<case "fairy" "pregnant fairy">>
-		tiny body.
-	<<case "goddess">>
-		fertile pussy.
-	<<case "hypergoddess">>
-		gaping pussy.
-	<<case "loli" "cherub">>
-		tight virgin pussy.
-	<<case "preggololi">>
-		tight young pussy.
-	<<case "angel">>
-		virgin pussy.
-	<<case "incubus">>
-		perfect dick.
-	<<case "succubus">>
-		lovely pussy.
-	<<case "imp">>
-		slutty pussy.
-	<<case "witch">>
-		plump breasts.
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		pussy-like body.
-	<<case "schoolgirl">>
-		pretty young pussy.
-	<</switch>>
-	"Clean me off, $activeSlave.slaveName," _heA demands, winking broadly at you. The slave, knowing that commands from _himA are commands from you, repositions $himself to lick up the <<if $PC.dick == 1>>ejaculate<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>girlcum<</if>>.
-	<br><br>
-	This brings the slave into a crouch with $his ass pointed at you,
-	<<if canDoVaginal($activeSlave)>>
-		<<if $activeSlave.vagina > 2>>
-			$his experienced pussy practically begging for a pounding.
-		<<elseif $activeSlave.vagina > 1>>
-			$his nice pussy practically begging for a good hard fucking.
+		You enter, eliciting an embarrassed
+		"Um, hi <<Master>>" from $activeSlave.slaveName and a cheery wave from $assistantName. At this stage of your morning ablutions, you're conveniently naked, so you
+		<<if $PC.belly >= 5000>>
+			heft yourself
+		<<elseif $PC.belly >= 1500>>
+			clamber up
 		<<else>>
-			$his tight little pussy completely vulnerable.
+			leap up
 		<</if>>
-		As <<if $PC.dick == 1>><<if $PC.vagina == 1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistantName opines helpfully, "Hey $activeSlave.slaveName! You're about to get fucked!" The slave reacts by obediently reaching back to spread $his buttocks and relaxing, but $assistantName ruins $his attempt at graceful submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention stimulation, as you penetrate $him.
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<if $activeSlave.anus > 2>>
-			$his big asspussy practically begging for a pounding.
-		<<elseif $activeSlave.anus > 1>>
-			$his nice asshole practically begging for a good hard fucking.
+		onto the desktop and kneel upright, legs splayed. (Naturally, the desk is reinforced and sealed for exactly this reason.) You point meaningfully at your
+		<<if $PC.dick == 1>>
+			stiff prick <<if $PC.vagina == 1>>and flushed pussy<</if>>, and the obedient slave <<if $activeSlave.belly >= 5000>>hefts $himself<<else>>clambers<</if>> up to suck you off<<if $PC.vagina == 1>> and eat you out<</if>>. When you're close, you surprise $him by pulling your cock out of $his mouth and blowing your load onto the glass.
 		<<else>>
-			$his tight little rosebud completely vulnerable.
+			hot cunt, and the obedient slave <<if $activeSlave.belly >= 5000>>hefts $himself<<else>>clambers<</if>> up to eat you out. You surprise $him by taking your time, drawing out the oral session with the ulterior motive of getting as much saliva and pussyjuice onto the glass as possible.
 		<</if>>
-		As <<if $PC.dick == 1>><<if $PC.vagina == 1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistantName opines helpfully, "Hey $activeSlave.slaveName! You're about to get buttfucked!" The slave reacts by obediently reaching back to spread $his buttocks, and relaxes $his anus, but $assistantName ruins $his attempt at graceful anal submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention discomfort, as you penetrate $him.
-		<<= AnalVCheck()>>
-	<</if>>
-	$He keeps licking away, cleaning up the mess you made as $assistantName does everything $he can to make it seem like the slave is pleasuring $him. Partway through, $assistantName sticks out a hand for a high-five from you, producing a gurgle of indignation @@.mediumaquamarine;or perhaps even laughter@@ as $his owner and $his owner's personal assistant program high-five over $his back.
-	<<set $activeSlave.trust += 4, $activeSlave.counter.oral++, $oralTotal++>>
+		<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> shifts _hisA avatar so that this lands all over _hisA
+		<<switch $assistantAppearance>>
+		<<case "monstergirl">>
+			cocks.
+		<<case "shemale">>
+			huge cock.
+		<<case "amazon">>
+			muscular pussy.
+		<<case "businesswoman">>
+			mature pussy.
+		<<case "fairy" "pregnant fairy">>
+			tiny body.
+		<<case "goddess">>
+			fertile pussy.
+		<<case "hypergoddess">>
+			gaping pussy.
+		<<case "loli" "cherub">>
+			tight virgin pussy.
+		<<case "preggololi">>
+			tight young pussy.
+		<<case "angel">>
+			virgin pussy.
+		<<case "incubus">>
+			perfect dick.
+		<<case "succubus">>
+			lovely pussy.
+		<<case "imp">>
+			slutty pussy.
+		<<case "witch">>
+			plump breasts.
+		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+			pussy-like body.
+		<<case "schoolgirl">>
+			pretty young pussy.
+		<</switch>>
+		"Clean me off, $activeSlave.slaveName," _heA demands, winking broadly at you. The slave, knowing that commands from _himA are commands from you, repositions $himself to lick up the <<if $PC.dick == 1>>ejaculate<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>girlcum<</if>>.
+		<br><br>
+		This brings the slave into a crouch with $his ass pointed at you,
+		<<if canDoVaginal($activeSlave)>>
+			<<if $activeSlave.vagina > 2>>
+				$his experienced pussy practically begging for a pounding.
+			<<elseif $activeSlave.vagina > 1>>
+				$his nice pussy practically begging for a good hard fucking.
+			<<else>>
+				$his tight little pussy completely vulnerable.
+			<</if>>
+			As <<if $PC.dick == 1>><<if $PC.vagina == 1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistantName opines helpfully, "Hey $activeSlave.slaveName! You're about to get fucked!" The slave reacts by obediently reaching back to spread $his buttocks and relaxing, but $assistantName ruins $his attempt at graceful submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention stimulation, as you penetrate $him.
+			<<= VaginalVCheck()>>
+		<<else>>
+			<<if $activeSlave.anus > 2>>
+				$his big asspussy practically begging for a pounding.
+			<<elseif $activeSlave.anus > 1>>
+				$his nice asshole practically begging for a good hard fucking.
+			<<else>>
+				$his tight little rosebud completely vulnerable.
+			<</if>>
+			As <<if $PC.dick == 1>><<if $PC.vagina == 1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistantName opines helpfully, "Hey $activeSlave.slaveName! You're about to get buttfucked!" The slave reacts by obediently reaching back to spread $his buttocks, and relaxes $his anus, but $assistantName ruins $his attempt at graceful anal submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention discomfort, as you penetrate $him.
+			<<= AnalVCheck()>>
+		<</if>>
+		$He keeps licking away, cleaning up the mess you made as $assistantName does everything $he can to make it seem like the slave is pleasuring $him. Partway through, $assistantName sticks out a hand for a high-five from you, producing a gurgle of indignation @@.mediumaquamarine;or perhaps even laughter@@ as $his owner and $his owner's personal assistant program high-five over $his back.
+		<<set $activeSlave.trust += 4, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "Double penetrate the slave with your PA">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You enter, eliciting an embarrassed
-	"Um, hi <<Master>>" from $activeSlave.slaveName, and ask $assistantName if $he'd like to DP the slave with you.
-	<<switch $assistantAppearance>>
-	<<case "monstergirl">>
-		"Oh yes," _heA purrs threateningly over the slave's moan of apprehension, and _hisA avatar begins to stroke _hisA dicks meaningfully.
-	<<case "shemale" "incubus">>
-		"Fuck yes," _heA groans over the slave's moan of apprehension, and _hisA avatar begins to stroke _hisA cock meaningfully.
-	<<case "amazon">>
-		"Yeah!" _heA shouts over the slave's moan of apprehension, and _hisA avatar quickly dons a big strap-on carved from mammoth tusk.
-	<<case "businesswoman">>
-		"Oh yes," _heA purrs sadistically over the slave's moan of apprehension, and _hisA avatar quickly dons a big strap-on.
-	<<case "fairy" "pregnant fairy">>
-		"Oh yeah!" _heA shouts over the slave's moan of apprehension, and _hisA avatar quickly conjures up a magic floating dick.
-	<<case "goddess" "hypergoddess">>
-		"That would be lovely," _heA says radiantly over the slave's moan of apprehension, and _hisA avatar acquires a phallus of light.
-	<<case "angel" "cherub">>
-		"If you insist," _heA says reluctantly over the slave's moan of apprehension, and _hisA avatar acquires a phallus of light.
-	<<case "succubus">>
-		"Just this once," _heA says stroking $his clit as it steadily swells into a fully functional cock.
-	<<case "imp">>
-		"Fuck yes," _heA groans over the slave's moan of apprehension, and _hisA avatar quickly dons a huge, spiked strap-on.
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		"Of course," _heA shouts over the slave's moan of apprehension, and _hisA avatar quickly forms a huge, fleshy, bulbous cock.
-	<<default>>
-		"Fuck yeah!" _heA cheers over the slave's moan of apprehension, and _hisA avatar quickly dons a big strap-on.
-	<</switch>>
-	You indicate a fuckmachine in the corner of the room, and the slave obediently hurries over to it. It's vertical, and $he hops up on it, positioning $his anus over its
-	<<switch $assistantAppearance>>
-	<<case "monstergirl">>
-		pair of dildos. They insert themselves
-	<<case "shemale" "incubus">>
-		frighteningly big dildo. It inserts itself
-	<<case "amazon">>
-		animalistically ribbed dildo. It inserts itself
-	<<case "imp">>
-		terrifyingly spiked, huge dildo. It inserts itself
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		frighteningly big, lumpy and uneven dildo. It inserts itself
-	<<default>>
-		large dildo. It inserts itself
-	<</switch>>
-	gently but firmly and then stops, the panting slave's
-	<<if $activeSlave.weight > 130>>
-		thick
-	<<elseif $activeSlave.weight > 95>>
-		chubby
-	<<elseif $activeSlave.muscles > 30>>
-		heavily muscled
-	<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth/8>>
-		motherly
-	<<elseif $activeSlave.weight > 10>>
-		plush
-	<<elseif $activeSlave.muscles > 5>>
-		toned
-	<<else>>
-		feminine
-	<</if>>
-	thighs quivering a little from supporting $his body in its perch atop the machine, and from the fullness of $his anus.
-	<<= AnalVCheck(3)>>
-	$He knows this is going to be challenging, and is breathing deeply, doing $his best to stay relaxed. You cannot resist slapping your <<if $PC.dick == 1>>big cock lightly<<else>>lubricated strap-on<</if>> against $his cheek, producing a groan of apprehension.
-	<br><br>
-	You push $him gently backward, letting $him get accustomed to the new angle.<<if $activeSlave.boobs > 2000>> $His monstrous tits spread to either side of $his <<if $activeSlave.belly >= 5000>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>now upright torso<</if>>, and you take a moment to play with them as $he prepares $himself.<</if>>
-	<<if canDoVaginal($activeSlave)>>
-		$He gasps as $he feels <<if $PC.dick == 1>>your hot dickhead<<else>>the slick head of your strap-on<</if>> part $his pussylips, no doubt feeling full already.
-		<<= VaginalVCheck(3)>>
-		When you're all the way in, the <<if $assistantAppearance == "monstergirl">>dildos in $his butt begin<<else>>dildo in $his butt begins<</if>> to fuck $him, harder and harder, as $assistantName moans happily. The all-encompassing feeling of fullness as $his cunt and ass are fucked to the very limit of their capacities
-	<<else>>
-		$He gasps as $he feels you push a finger up $his already-full butt and pull $his sphincter a bit wider. You withdraw it and replace it with <<if $PC.dick == 1>>your turgid cock<<else>>your strap-on<</if>>; the slave writhes involuntarily, $his body trying to refuse the invasion of yet another phallus.
-		<<= AnalVCheck(3)>>
-		When you're all the way in, the <<if $assistantAppearance == "monstergirl">>dildos alongside your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> in $his butt begin<<else>>dildo alongside your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> in $his butt begins<</if>> to fuck $him, harder and harder, as $assistantName moans happily. The all-encompassing feeling of fullness as $his ass is fucked to the very limit of its capacity
-	<</if>>
-	quickly drives all feminine grace, presence of mind, or really, @@.hotpink;conscious thought out of the poor slave.@@ After begging for mercy for a short while, $he lapses into animal groans, drooling and leaking tears out the corner of $his eyes as you and $assistantName fuck $him into insensibility. When you climax, $assistantName ejaculates, filling the slave's anus with warm fluid.
-	<br><br>
-	By this point $he's so helpless that you
-	<<if $activeSlave.belly >= 300000 || $activeSlave.weight > 190>>
-		have to struggle to lift
-	<<else>>
-		gently lift
-	<</if>>
-	$him off the fuckmachine and carry $him to the shower. You set $him down there, and $assistantName activates the water, using the powerful jets in pulses to massage life back into your exhausted fuckpuppet. $His avatar appears on a screen behind the shower, creating an optical illusion that makes it look like $he's petting the slave in time with the water. $He reassures to the slave as $he does:
-	<<switch $assistantAppearance>>
-	<<case "monstergirl">>
-		"You're a good little cocksock," $he says kindly.
-	<<case "shemale">>
-		"I like your butthole," $he says politely.
-	<<case "amazon">>
-		"I like fucking your butthole," $he says kindly.
-	<<case "businesswoman">>
-		"I'm sure you won't be sold right away," $he says.
-	<<case "fairy" "pregnant fairy">>
-		"You're a good $girl," $he says.
-	<<case "goddess" "hypergoddess">>
-		"There, there," $he says kindly. "You are a good sex slave."
-	<<case "angel" "cherub">>
-		"There, there," $he says kindly. "You are a good $girl."
-	<<case "incubus" "succubus" "imp">>
-		"You're a good little cocksleeve," $he says honestly.
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		"You're a good little nursery," $he says.
-	<<default>>
-		"I like you," $he says cheerily.
-	<</switch>>
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<br><<link "Double penetrate the slave with your PA">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You enter, eliciting an embarrassed
+			"Um, hi <<Master>>" from $activeSlave.slaveName, and ask $assistantName if $he'd like to DP the slave with you.
+			<<switch $assistantAppearance>>
+			<<case "monstergirl">>
+				"Oh yes," _heA purrs threateningly over the slave's moan of apprehension, and _hisA avatar begins to stroke _hisA dicks meaningfully.
+			<<case "shemale" "incubus">>
+				"Fuck yes," _heA groans over the slave's moan of apprehension, and _hisA avatar begins to stroke _hisA cock meaningfully.
+			<<case "amazon">>
+				"Yeah!" _heA shouts over the slave's moan of apprehension, and _hisA avatar quickly dons a big strap-on carved from mammoth tusk.
+			<<case "businesswoman">>
+				"Oh yes," _heA purrs sadistically over the slave's moan of apprehension, and _hisA avatar quickly dons a big strap-on.
+			<<case "fairy" "pregnant fairy">>
+				"Oh yeah!" _heA shouts over the slave's moan of apprehension, and _hisA avatar quickly conjures up a magic floating dick.
+			<<case "goddess" "hypergoddess">>
+				"That would be lovely," _heA says radiantly over the slave's moan of apprehension, and _hisA avatar acquires a phallus of light.
+			<<case "angel" "cherub">>
+				"If you insist," _heA says reluctantly over the slave's moan of apprehension, and _hisA avatar acquires a phallus of light.
+			<<case "succubus">>
+				"Just this once," _heA says stroking $his clit as it steadily swells into a fully functional cock.
+			<<case "imp">>
+				"Fuck yes," _heA groans over the slave's moan of apprehension, and _hisA avatar quickly dons a huge, spiked strap-on.
+			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+				"Of course," _heA shouts over the slave's moan of apprehension, and _hisA avatar quickly forms a huge, fleshy, bulbous cock.
+			<<default>>
+				"Fuck yeah!" _heA cheers over the slave's moan of apprehension, and _hisA avatar quickly dons a big strap-on.
+			<</switch>>
+			You indicate a fuckmachine in the corner of the room, and the slave obediently hurries over to it. It's vertical, and $he hops up on it, positioning $his anus over its
+			<<switch $assistantAppearance>>
+			<<case "monstergirl">>
+				pair of dildos. They insert themselves
+			<<case "shemale" "incubus">>
+				frighteningly big dildo. It inserts itself
+			<<case "amazon">>
+				animalistically ribbed dildo. It inserts itself
+			<<case "imp">>
+				terrifyingly spiked, huge dildo. It inserts itself
+			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+				frighteningly big, lumpy and uneven dildo. It inserts itself
+			<<default>>
+				large dildo. It inserts itself
+			<</switch>>
+			gently but firmly and then stops, the panting slave's
+			<<if $activeSlave.weight > 130>>
+				thick
+			<<elseif $activeSlave.weight > 95>>
+				chubby
+			<<elseif $activeSlave.muscles > 30>>
+				heavily muscled
+			<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth/8>>
+				motherly
+			<<elseif $activeSlave.weight > 10>>
+				plush
+			<<elseif $activeSlave.muscles > 5>>
+				toned
+			<<else>>
+				feminine
+			<</if>>
+			thighs quivering a little from supporting $his body in its perch atop the machine, and from the fullness of $his anus.
+			<<= AnalVCheck(3)>>
+			$He knows this is going to be challenging, and is breathing deeply, doing $his best to stay relaxed. You cannot resist slapping your <<if $PC.dick == 1>>big cock lightly<<else>>lubricated strap-on<</if>> against $his cheek, producing a groan of apprehension.
+			<br><br>
+			You push $him gently backward, letting $him get accustomed to the new angle.<<if $activeSlave.boobs > 2000>> $His monstrous tits spread to either side of $his <<if $activeSlave.belly >= 5000>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>now upright torso<</if>>, and you take a moment to play with them as $he prepares $himself.<</if>>
+			<<if canDoVaginal($activeSlave)>>
+				$He gasps as $he feels <<if $PC.dick == 1>>your hot dickhead<<else>>the slick head of your strap-on<</if>> part $his pussylips, no doubt feeling full already.
+				<<= VaginalVCheck(3)>>
+				When you're all the way in, the <<if $assistantAppearance == "monstergirl">>dildos in $his butt begin<<else>>dildo in $his butt begins<</if>> to fuck $him, harder and harder, as $assistantName moans happily. The all-encompassing feeling of fullness as $his cunt and ass are fucked to the very limit of their capacities
+			<<else>>
+				$He gasps as $he feels you push a finger up $his already-full butt and pull $his sphincter a bit wider. You withdraw it and replace it with <<if $PC.dick == 1>>your turgid cock<<else>>your strap-on<</if>>; the slave writhes involuntarily, $his body trying to refuse the invasion of yet another phallus.
+				<<= AnalVCheck(3)>>
+				When you're all the way in, the <<if $assistantAppearance == "monstergirl">>dildos alongside your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> in $his butt begin<<else>>dildo alongside your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> in $his butt begins<</if>> to fuck $him, harder and harder, as $assistantName moans happily. The all-encompassing feeling of fullness as $his ass is fucked to the very limit of its capacity
+			<</if>>
+			quickly drives all feminine grace, presence of mind, or really, @@.hotpink;conscious thought out of the poor slave.@@ After begging for mercy for a short while, $he lapses into animal groans, drooling and leaking tears out the corner of $his eyes as you and $assistantName fuck $him into insensibility. When you climax, $assistantName ejaculates, filling the slave's anus with warm fluid.
+			<br><br>
+			By this point $he's so helpless that you
+			<<if $activeSlave.belly >= 300000 || $activeSlave.weight > 190>>
+				have to struggle to lift
+			<<else>>
+				gently lift
+			<</if>>
+			$him off the fuckmachine and carry $him to the shower. You set $him down there, and $assistantName activates the water, using the powerful jets in pulses to massage life back into your exhausted fuckpuppet. $His avatar appears on a screen behind the shower, creating an optical illusion that makes it look like $he's petting the slave in time with the water. $He reassures to the slave as $he does:
+			<<switch $assistantAppearance>>
+			<<case "monstergirl">>
+				"You're a good little cocksock," $he says kindly.
+			<<case "shemale">>
+				"I like your butthole," $he says politely.
+			<<case "amazon">>
+				"I like fucking your butthole," $he says kindly.
+			<<case "businesswoman">>
+				"I'm sure you won't be sold right away," $he says.
+			<<case "fairy" "pregnant fairy">>
+				"You're a good $girl," $he says.
+			<<case "goddess" "hypergoddess">>
+				"There, there," $he says kindly. "You are a good sex slave."
+			<<case "angel" "cherub">>
+				"There, there," $he says kindly. "You are a good $girl."
+			<<case "incubus" "succubus" "imp">>
+				"You're a good little cocksleeve," $he says honestly.
+			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+				"You're a good little nursery," $he says.
+			<<default>>
+				"I like you," $he says cheerily.
+			<</switch>>
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 
 <<case "like me">>
@@ -14437,134 +14442,13 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Fuck $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He asked for it, and $he'll get it. You get to your
-	<<if ($activeSlave.chastityVagina) || !canDoAnal($activeSlave)>>
-		feet, unhook $his chastity,
-	<<else>>
-		feet
-	<</if>>
-	and snap your fingers, pointing
-	<<if $PC.dick == 0>>
-		at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by grabbing $him on either side of $his neck and
-		<<if $activeSlave.belly >= 300000>>
-			pulling onto $his _belly stomach
-		<<else>>
-			shoving $him down to kneel at your feet
-		<</if>>
-		with $his face
-		<<if $PC.belly >= 5000>>
-			crammed under your pregnant belly, level with your cunt.
-		<<else>>
-			level with your cunt.
-		<</if>>
-		One of your hands shifts behind $his head and tilts it back as you step forward, grinding against $his mouth. $He struggles involuntarily, but then perceptibly recollects $himself, relaxes, and starts to eat you out. Whatever internal turmoil $he's working through, you don't care, and neither does your pussy. When you climax and release $him, $he stumbles off, looking oddly proud of $himself. It seems $he got something out of that: @@.mediumaquamarine;a confidence boost,@@ at least.
-	<<else>>
-		at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and
-		<<if $activeSlave.belly >= 5000>>
-			gently eases $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground,
-		<<else>>
-			kneels,
-		<</if>>
-		$his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by shoving $him down so $his collarbone is resting on the back of the couch and $his ass is at just the right height.<<if $PC.vagina == 1>> You ensure that you're fully hard and get $him in the right frame of mind by grinding the pussy beneath your dick against $him.<</if>> You fuck
-		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-			$his pussy and then $his ass in quick succession, plundering $his holes without much regard for $his pleasure.
-			<<= BothVCheck()>>
-			$He gasps and bucks at all the right parts, and even manages to moan almost authentically when you blow your load up $his butt.
-		<<elseif canDoVaginal($activeSlave)>>
-			$his pussy hard, without much regard for $his pleasure.
-			<<= VaginalVCheck()>>
-			$He gasps and bucks at all the right parts, and even manages to moan almost authentically when you blow your load up deep inside $him.
-		<<else>>
-			$his ass hard, without cruelty but without much concern for $his pleasure, either.
-			<<= AnalVCheck()>>
-			$He takes it obediently, and does $his best to act like $he's enjoying being sodomized.
-		<</if>>
-		$He stumbles off to wash, looking oddly proud of $himself. It seems $he got something out of that: @@.mediumaquamarine;a confidence boost,@@ at least.
-	<</if>>
-	<<set $activeSlave.trust += 4>>
-	<</replace>>
-<</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick == 1)>> //This option will take virginity//<</if>>
-<br><<link "Rape $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He'll get more than $he asked for. You get to your
-	<<if ($activeSlave.chastityVagina) || !canDoAnal($activeSlave)>>
-		feet, unhook $his chastity,
-	<<else>>
-		feet
-	<</if>>
-	and snap your fingers, pointing
-	<<if $PC.dick == 0>>
-		at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by slapping $him, and when $he instinctively cringes away from the blow, poking the back of one of $his knees with your foot.
-		<<if $activeSlave.belly >= 5000>>
-			$His <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> form
-		<<else>>
-			$He
-		<</if>>
-		collapses like a doll with its strings cut, already crying. You seize $his head in both hands and ride $his sobbing mouth. If $he thought that rape required a dick, $he was wrong. If $he thought that you needed a strap-on to rape $him, $he was wrong. Your fingers form claws, holding $his head in a terrifying grip as you enjoy the not unfamiliar sensation of a slave weeping into your cunt as you grind it against $his crying face.
-	<<else>>
-		at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and
-		<<if $activeSlave.belly >= 5000>>
-			gently eases $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground,
-		<<else>>
-			kneels,
-		<</if>>
-		$his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by
-		<<if $activeSlave.belly >= 600000>>
-			slamming your hands against the bloated mass grossly distending $his sides,
-		<<else>>
-			jabbing a thumb into one of $his kidneys,
-		<</if>>
-		forcing $his back to arch in involuntary response, and then grinding $his face into the couch cushions.
-		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-			$His cunt isn't all that wet, and $he has cause to regret this, first when you fuck it without mercy, and then when you switch your barely-lubricated dick to $his anus.
-			<<= BothVCheck()>>
-			$He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape $him into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts.
-		<<elseif canDoVaginal($activeSlave)>>
-			$His cunt isn't all that wet, and $he has cause to regret this as you waste no time with foreplay.
-			<<= VaginalVCheck()>>
-			$He tries to be brave and relax, but those are contradictory goals and $he manages neither as you rape $him into inelegant, tearful begging for you to take your dick out of $his cunt because it hurts<<if canGetPregnant($activeSlave)>>, followed by desperate pleas to not cum inside $him since it's a danger day<</if>>.
-		<<else>>
-			You spit on $his asshole and then give $him some anal foreplay, if slapping your dick against $his anus twice before shoving it inside $him counts as anal foreplay.
-			<<= AnalVCheck()>>
-			$He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape $him into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts.
-		<</if>>
-		It isn't the first time you've heard that, or the hundredth.
-	<</if>>
-	When you're done, you discard $him like the human sex toy $he is, and go back to your work. $He stumbles off, looking @@.gold;fearful@@ but strangely @@.hotpink;complacent,@@ as though $he's accepted this to an extent.
-	<<set $activeSlave.trust -= 4, $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick == 1)>> //This option will take virginity//<</if>>
-<br><<link "Get the truth out of $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You ask $him why $he's really here, with devastating directness and in a tone that will brook no disobedience. $He quails, $his shoulders slumping as $he
-	<<if $activeSlave.belly >= 1500>>
-		<<if $activeSlave.pregKnown == 1>>
-			hugs $his pregnancy
-		<<else>>
-			attempts to hug $himself with $his _belly belly in the way
-		<</if>>
-	<<else>>
-		hugs $himself
-	<</if>>
-	and $his knees turning inward as $he cringes, the perfect picture of the standard human fear response. It seems $he thought you wouldn't notice $his insincerity. $He swallows nervously and makes no response, but then you <<if canSee($activeSlave)>>allow impatience to cloud your brow<<else>>cough with impatience<</if>> and $he hurriedly explains $himself.
-	<<if !canTalk($activeSlave)>>
-		$He uses sign language to communicate that $he asked the other slaves what $he could do to improve $his life, and that they told $him to do $his best to win your favor. $He asked them how to do that, and they told $him to ask you to fuck $him.
-	<<else>>
-		"<<Master>>, I, um, a<<s>>ked the other girl<<s>> what I could do to, you know, do better here," $he <<say>>s. "They <<s>>aid to g-get you to like me. A-and when I a<<s>>ked them how to do that, th-they <<s>>aid t-to a<<s>>k you to fuck me."
-	<</if>>
-	Then $he bites $his lip and <<if canSee($activeSlave)>>watches you<<elseif canHear($activeSlave)>>listens<<else>>waits<</if>> anxiously.
-	<br><br><span id="result2">
-	<<link "They're not wrong">>
-		<<replace "#result2">>
-		You get to your feet, letting $him know that the other slaves weren't wrong. $His relief is
+		$He asked for it, and $he'll get it. You get to your
 		<<if ($activeSlave.chastityVagina) || !canDoAnal($activeSlave)>>
-			palpable as you undo $his chastity.
+			feet, unhook $his chastity,
 		<<else>>
-			palpable.
+			feet
 		<</if>>
-		You snap your fingers, pointing
+		and snap your fingers, pointing
 		<<if $PC.dick == 0>>
 			at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by grabbing $him on either side of $his neck and
 			<<if $activeSlave.belly >= 300000>>
@@ -14578,7 +14462,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 			<<else>>
 				level with your cunt.
 			<</if>>
-			One of your hands shifts behind $his head and tilts it back as you step forward, grinding against $his mouth. $He struggles involuntarily, but then perceptibly recollects $himself, relaxes, and starts to eat you out. Whatever internal turmoil $he's working through, you don't care, and neither does your pussy. When you climax and release $him, $he stumbles off,
+			One of your hands shifts behind $his head and tilts it back as you step forward, grinding against $his mouth. $He struggles involuntarily, but then perceptibly recollects $himself, relaxes, and starts to eat you out. Whatever internal turmoil $he's working through, you don't care, and neither does your pussy. When you climax and release $him, $he stumbles off, looking oddly proud of $himself. It seems $he got something out of that: @@.mediumaquamarine;a confidence boost,@@ at least.
 		<<else>>
 			at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and
 			<<if $activeSlave.belly >= 5000>>
@@ -14586,7 +14470,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 			<<else>>
 				kneels,
 			<</if>>
-			$his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by shoving $him down so $his collarbone is resting on the back of the couch and $his ass is at just the right height. You fuck
+			$his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by shoving $him down so $his collarbone is resting on the back of the couch and $his ass is at just the right height.<<if $PC.vagina == 1>> You ensure that you're fully hard and get $him in the right frame of mind by grinding the pussy beneath your dick against $him.<</if>> You fuck
 			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
 				$his pussy and then $his ass in quick succession, plundering $his holes without much regard for $his pleasure.
 				<<= BothVCheck()>>
@@ -14600,21 +14484,21 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 				<<= AnalVCheck()>>
 				$He takes it obediently, and does $his best to act like $he's enjoying being sodomized.
 			<</if>>
-			$He stumbles off to wash,
+			$He stumbles off to wash, looking oddly proud of $himself. It seems $he got something out of that: @@.mediumaquamarine;a confidence boost,@@ at least.
 		<</if>>
-		looking @@.mediumaquamarine;much more confident.@@
 		<<set $activeSlave.trust += 4>>
-		<</replace>>
-	<</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick == 1)>> //This option will take virginity//<</if>>
-	<br><<link "Now rape $him">>
-		<<replace "#result2">>
-		You get to your feet, letting $him know that the other slaves weren't wrong. $His relief is palpable, but $he's getting ahead of
+	<</replace>>
+<</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick == 1)>> //This option will take $his virginity//<</if>>
+<br><<link "Rape $him">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		$He'll get more than $he asked for. You get to your
 		<<if ($activeSlave.chastityVagina) || !canDoAnal($activeSlave)>>
-			$himself as you undo $his chastity.
+			feet, unhook $his chastity,
 		<<else>>
-			$himself.
+			feet
 		<</if>>
-		You snap your fingers, pointing
+		and snap your fingers, pointing
 		<<if $PC.dick == 0>>
 			at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by slapping $him, and when $he instinctively cringes away from the blow, poking the back of one of $his knees with your foot.
 			<<if $activeSlave.belly >= 5000>>
@@ -14652,133 +14536,254 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 			<</if>>
 			It isn't the first time you've heard that, or the hundredth.
 		<</if>>
-		When you're done, you discard $him like the human sex toy $he is, and go back to your work. $He stumbles off, looking @@.gold;fearful@@ but @@.hotpink;submissive,@@ knowing that $he now has a better idea of what you want, even if what you want isn't very nice.
+		When you're done, you discard $him like the human sex toy $he is, and go back to your work. $He stumbles off, looking @@.gold;fearful@@ but strangely @@.hotpink;complacent,@@ as though $he's accepted this to an extent.
 		<<set $activeSlave.trust -= 4, $activeSlave.devotion += 4>>
-		<</replace>>
-	<</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick == 1)>> //This option will take virginity//<</if>>
-	<br><<link "It's not that simple">>
-		<<replace "#result2">>
-		You tell $him kindly that it isn't that simple, but that if $he obeys orders and does $his best, you will like $him just fine, and $he will do well as your slave. Relief floods through $him.
-		<<if !canTalk($activeSlave)>>
-			$He gestures $his thanks, and an apology for being silly.
-		<<else>>
-			"Thank you, <<Master>> and I'm <<s>>orry for being <<s>>illy," $he apologizes.
-		<</if>>
-		You dismiss $him, and $he goes, a strangely @@.hotpink;respectful@@ look on $his face. $He's no more confident of $his ability to find safety and stability here with you than $he was before, but $he seems to like that it apparently isn't as simple as <<if $PC.dick == 1>>taking your cock up $his butt<<if $PC.vagina == 1>> or <</if>><</if>><<if $PC.vagina == 1>>eating you out<</if>>.
-		<<set $activeSlave.devotion += 4>>
-		<</replace>>
-	<</link>>
-	</span>
 	<</replace>>
-<</link>>
-
-<<case "language lesson">>
-
-<<link "Give $him personal language lessons">>
+<</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick == 1)>> //This option will take $his virginity//<</if>>
+<br><<link "Get the truth out of $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You order $him to sit next to you. Sure enough, $he hesitates, but $he seems to have gotten the 'next to you' part, and comes carefully over, <<if canSee($activeSlave)>>watching you<<elseif canHear($activeSlave)>>listening<<else>>waiting<</if>> intently for any indication that $he's misunderstood you. Once there, $he stops, knees bent partway as $he second-guesses $himself about whether $he's supposed to sit. Sighing internally, you grab
-	<<if $activeSlave.belly >= 5000>>
-		<<if $activeSlave.navelPiercing > 0>>
-			the piercing dangling from $his _belly belly
+		You ask $him why $he's really here, with devastating directness and in a tone that will brook no disobedience. $He quails, $his shoulders slumping as $he
+		<<if $activeSlave.belly >= 1500>>
+			<<if $activeSlave.pregKnown == 1>>
+				hugs $his pregnancy
+			<<else>>
+				attempts to hug $himself with $his _belly belly in the way
+			<</if>>
 		<<else>>
-			$his _belly belly
+			hugs $himself
 		<</if>>
-	<<elseif $activeSlave.nipplesPiercing > 0>>
-		a nipple piercing
-	<<elseif $activeSlave.nipples == "fuckable">>
-		a nipplecunt
-	<<elseif $activeSlave.lactation > 0>>
-		a milky nipple
-	<<else>>
-		a nipple
-	<</if>>
-	and pull downward gently. "<<S>>orry <<Master>>," $he mutters in $his barbarous $activeSlave.nationality accent, and sits <<if $activeSlave.belly >= 5000>>carefully<<else>>hurriedly<</if>> down.
-	<br><br>
-	You review 'next,' praising $him for getting that, and then move on to 'sit,' 'stand,' and other such useful terms, teaching the $language language to the nude slave sitting
-	<<if $activeSlave.belly >= 10000 || $activeSlave.weight >= 130>>
-		heavily
-	<<else>>
-		cross-legged
-	<</if>>
-	next to you. $He <<if canHear($activeSlave)>>listens raptly<<elseif canSee($activeSlave)>>reads along<<else>>focuses intently<</if>>, parroting obediently and clearly doing $his best to please, but you notice a certain incredulity that slowly fades as the lesson goes on. $He's obviously having trouble believing that $his owner would trouble _himselfP with $his vocabulary lessons. You work with $his several times a day, and $he's so diligent that by the end of the week $he's @@.green;beginning to make $himself understood,@@ though $his accent is still pretty atrocious.
-	<<set $activeSlave.accent-->>
-	<</replace>>
-<</link>>
-<br><<link "Teach $him the words for body parts">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You order $him to stand next to you. $He hesitates, but eventually processes the instruction and hurries over. When $he comes to a stop, $he gasps to find you taking $him by the hands. You raise them slightly, bringing them <<if canSee($activeSlave)>>up into $his field of view<<else>>to $his attention<</if>>, and tell $him that these are $his hands. "Hand<<s>>," $he parrots in <<print $language>>, understanding that this is a language lesson. Your own hands slide over $his wrists to grasp $his
-	<<if $activeSlave.weight > 160>>
-		fat
-	<<elseif $activeSlave.weight > 95>>
-		chubby
-	<<elseif $activeSlave.muscles > 5>>
-		toned
-	<<else>>
-		soft
-	<</if>>
-	forearms, producing a little shiver; you name them, and $he repeats after you, "Arm<<s>>." You reach
-	<<if $activeSlave.height >= 185>>
-		a long way up to reach the tall
-	<<elseif $activeSlave.height >= 160>>
-		up to caress the
-	<<else>>
-		out to touch the diminutive
-	<</if>>
-	slave's shoulders possessively, and name them. "<<Sh>>oulder<<s>>."
-	<br><br>
-	You continue from there. "Neck. Chin. Lip<<s>>. Che<<s>>t. Boob<<s>>. N-nipple<<if $activeSlave.nipples == "fuckable">>cunt<</if>><<s>>. Belly. Hip<<s>>,
-	<<if ($activeSlave.dick > 0)>>
-		<<if ($activeSlave.balls > 0)>>
-			c-cock, oh <<Master>>, p-plea<<s>>e, augh, ball<<s>>,
+		and $his knees turning inward as $he cringes, the perfect picture of the standard human fear response. It seems $he thought you wouldn't notice $his insincerity. $He swallows nervously and makes no response, but then you <<if canSee($activeSlave)>>allow impatience to cloud your brow<<else>>cough with impatience<</if>> and $he hurriedly explains $himself.
+		<<if !canTalk($activeSlave)>>
+			$He uses sign language to communicate that $he asked the other slaves what $he could do to improve $his life, and that they told $him to do $his best to win your favor. $He asked them how to do that, and they told $him to ask you to fuck $him.
 		<<else>>
-			b-bitchclit, oh <<Master>>, p-plea<<s>>e,
+			"<<Master>>, I, um, a<<s>>ked the other girl<<s>> what I could do to, you know, do better here," $he <<say>>s. "They <<s>>aid to g-get you to like me. A-and when I a<<s>>ked them how to do that, th-they <<s>>aid t-to a<<s>>k you to fuck me."
 		<</if>>
-	<</if>>
-	<<if ($activeSlave.vagina > -1)>>
-		pu<<ss>>y. Cliiiiiit, oh <<Master>> n-nuh,
-	<</if>>
-	Butt," and finally, "B-butt, um, butthole."
-	<br><br><span id="result2">
-	<<link "Now let $him review">>
-		<<replace "#result2">>
-		You tell $him to do the inspection routine again, narrating it $himself. $He understands immediately, and hustles back to stand in front of your desk, brow furrowed in concentration as $he struggles to keep the vocabulary in $his head. $He shows each part of $his body to you in turn, and gets every single one of the terms to describe $his body — which in the legal sense, is actually //your// body, one of many you own — perfectly right, though of course $he repeats them in $his atrocious <<if $activeSlave.nationality == "a Cook Islander">>Cook Islander<<elseif $activeSlave.nationality == "a Liechtensteiner">>Liechtensteiner<<elseif $activeSlave.nationality == "a New Zealander">>New Zealander<<elseif $activeSlave.nationality == "a Solomon Islander">>Solomon Islander<<else>>$activeSlave.nationality<</if>> accent. $He even @@.mediumaquamarine;has the confidence@@ to throw in a little flourish: $he says
-		<<if $activeSlave.belly >= 10000>>
-			"Belly!" with flirty emphasis, stroking it sensually.
-		<<elseif ($activeSlave.boobs > 3000)>>
-			"Boob<<s>>!" with flirty emphasis, bouncing them for you.
-		<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 0)>>
-			"Cock!" with flirty emphasis, making it bounce for you.
-		<<elseif ($activeSlave.dick > 0)>>
-			"Bitchclit!" with flirty emphasis, making it wave for you.
-		<<elseif ($activeSlave.lips > 40)>>
-			"Lip<<s>>!" with flirty emphasis, and blows you a kiss.
-		<<elseif ($activeSlave.butt > 4)>>
-			"Butt!" with flirty emphasis, jiggling it for you.
+		Then $he bites $his lip and <<if canSee($activeSlave)>>watches you<<elseif canHear($activeSlave)>>listens<<else>>waits<</if>> anxiously.
+		<br><br><span id="result2">
+			<<link "They're not wrong">>
+				<<replace "#result2">>
+					You get to your feet, letting $him know that the other slaves weren't wrong. $His relief is
+					<<if ($activeSlave.chastityVagina) || !canDoAnal($activeSlave)>>
+						palpable as you undo $his chastity.
+					<<else>>
+						palpable.
+					<</if>>
+					You snap your fingers, pointing
+					<<if $PC.dick == 0>>
+						at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by grabbing $him on either side of $his neck and
+						<<if $activeSlave.belly >= 300000>>
+							pulling onto $his _belly stomach
+						<<else>>
+							shoving $him down to kneel at your feet
+						<</if>>
+						with $his face
+						<<if $PC.belly >= 5000>>
+							crammed under your pregnant belly, level with your cunt.
+						<<else>>
+							level with your cunt.
+						<</if>>
+						One of your hands shifts behind $his head and tilts it back as you step forward, grinding against $his mouth. $He struggles involuntarily, but then perceptibly recollects $himself, relaxes, and starts to eat you out. Whatever internal turmoil $he's working through, you don't care, and neither does your pussy. When you climax and release $him, $he stumbles off,
+					<<else>>
+						at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and
+						<<if $activeSlave.belly >= 5000>>
+							gently eases $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground,
+						<<else>>
+							kneels,
+						<</if>>
+						$his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by shoving $him down so $his collarbone is resting on the back of the couch and $his ass is at just the right height. You fuck
+						<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+							$his pussy and then $his ass in quick succession, plundering $his holes without much regard for $his pleasure.
+							<<= BothVCheck()>>
+							$He gasps and bucks at all the right parts, and even manages to moan almost authentically when you blow your load up $his butt.
+						<<elseif canDoVaginal($activeSlave)>>
+							$his pussy hard, without much regard for $his pleasure.
+							<<= VaginalVCheck()>>
+							$He gasps and bucks at all the right parts, and even manages to moan almost authentically when you blow your load up deep inside $him.
+						<<else>>
+							$his ass hard, without cruelty but without much concern for $his pleasure, either.
+							<<= AnalVCheck()>>
+							$He takes it obediently, and does $his best to act like $he's enjoying being sodomized.
+						<</if>>
+						$He stumbles off to wash,
+					<</if>>
+					looking @@.mediumaquamarine;much more confident.@@
+					<<set $activeSlave.trust += 4>>
+				<</replace>>
+			<</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick == 1)>> //This option will take $his virginity//<</if>>
+			<br><<link "Now rape $him">>
+				<<replace "#result2">>
+					You get to your feet, letting $him know that the other slaves weren't wrong. $His relief is palpable, but $he's getting ahead of
+					<<if ($activeSlave.chastityVagina) || !canDoAnal($activeSlave)>>
+						$himself as you undo $his chastity.
+					<<else>>
+						$himself.
+					<</if>>
+					You snap your fingers, pointing
+					<<if $PC.dick == 0>>
+						at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by slapping $him, and when $he instinctively cringes away from the blow, poking the back of one of $his knees with your foot.
+						<<if $activeSlave.belly >= 5000>>
+							$His <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> form
+						<<else>>
+							$He
+						<</if>>
+						collapses like a doll with its strings cut, already crying. You seize $his head in both hands and ride $his sobbing mouth. If $he thought that rape required a dick, $he was wrong. If $he thought that you needed a strap-on to rape $him, $he was wrong. Your fingers form claws, holding $his head in a terrifying grip as you enjoy the not unfamiliar sensation of a slave weeping into your cunt as you grind it against $his crying face.
+					<<else>>
+						at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and
+						<<if $activeSlave.belly >= 5000>>
+							gently eases $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground,
+						<<else>>
+							kneels,
+						<</if>>
+						$his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by
+						<<if $activeSlave.belly >= 600000>>
+							slamming your hands against the bloated mass grossly distending $his sides,
+						<<else>>
+							jabbing a thumb into one of $his kidneys,
+						<</if>>
+						forcing $his back to arch in involuntary response, and then grinding $his face into the couch cushions.
+						<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+							$His cunt isn't all that wet, and $he has cause to regret this, first when you fuck it without mercy, and then when you switch your barely-lubricated dick to $his anus.
+							<<= BothVCheck()>>
+							$He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape $him into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts.
+						<<elseif canDoVaginal($activeSlave)>>
+							$His cunt isn't all that wet, and $he has cause to regret this as you waste no time with foreplay.
+							<<= VaginalVCheck()>>
+							$He tries to be brave and relax, but those are contradictory goals and $he manages neither as you rape $him into inelegant, tearful begging for you to take your dick out of $his cunt because it hurts<<if canGetPregnant($activeSlave)>>, followed by desperate pleas to not cum inside $him since it's a danger day<</if>>.
+						<<else>>
+							You spit on $his asshole and then give $him some anal foreplay, if slapping your dick against $his anus twice before shoving it inside $him counts as anal foreplay.
+							<<= AnalVCheck()>>
+							$He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape $him into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts.
+						<</if>>
+						It isn't the first time you've heard that, or the hundredth.
+					<</if>>
+					When you're done, you discard $him like the human sex toy $he is, and go back to your work. $He stumbles off, looking @@.gold;fearful@@ but @@.hotpink;submissive,@@ knowing that $he now has a better idea of what you want, even if what you want isn't very nice.
+					<<set $activeSlave.trust -= 4, $activeSlave.devotion += 4>>
+				<</replace>>
+			<</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick == 1)>> //This option will take $his virginity//<</if>>
+			<br><<link "It's not that simple">>
+				<<replace "#result2">>
+					You tell $him kindly that it isn't that simple, but that if $he obeys orders and does $his best, you will like $him just fine, and $he will do well as your slave. Relief floods through $him.
+					<<if !canTalk($activeSlave)>>
+						$He gestures $his thanks, and an apology for being silly.
+					<<else>>
+						"Thank you, <<Master>> and I'm <<s>>orry for being <<s>>illy," $he apologizes.
+					<</if>>
+					You dismiss $him, and $he goes, a strangely @@.hotpink;respectful@@ look on $his face. $He's no more confident of $his ability to find safety and stability here with you than $he was before, but $he seems to like that it apparently isn't as simple as <<if $PC.dick == 1>>taking your cock up $his butt<<if $PC.vagina == 1>> or <</if>><</if>><<if $PC.vagina == 1>>eating you out<</if>>.
+					<<set $activeSlave.devotion += 4>>
+				<</replace>>
+			<</link>>
+		</span>
+	<</replace>>
+<</link>>
+
+<<case "language lesson">>
+
+<<link "Give $him personal language lessons">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You order $him to sit next to you. Sure enough, $he hesitates, but $he seems to have gotten the 'next to you' part, and comes carefully over, <<if canSee($activeSlave)>>watching you<<elseif canHear($activeSlave)>>listening<<else>>waiting<</if>> intently for any indication that $he's misunderstood you. Once there, $he stops, knees bent partway as $he second-guesses $himself about whether $he's supposed to sit. Sighing internally, you grab
+		<<if $activeSlave.belly >= 5000>>
+			<<if $activeSlave.navelPiercing > 0>>
+				the piercing dangling from $his _belly belly
+			<<else>>
+				$his _belly belly
+			<</if>>
+		<<elseif $activeSlave.nipplesPiercing > 0>>
+			a nipple piercing
+		<<elseif $activeSlave.nipples == "fuckable">>
+			a nipplecunt
+		<<elseif $activeSlave.lactation > 0>>
+			a milky nipple
 		<<else>>
-			"Butthole!" with flirty emphasis, bending over and <<if !canDoAnal($activeSlave)>>shaking $his anal chastity at<<else>>winking it for<</if>> you.
+			a nipple
 		<</if>>
-		<<set $activeSlave.trust += 4>>
-		<</replace>>
-	<</link>>
-	<<if canDoAnal($activeSlave)>>
-	<br><<link "Cover some sexual vocabulary, and make sure $he doesn't forget it">>
-		<<setNonlocalPronouns $seeDicks>>
-		<<replace "#result2">>
-		A glance at one of your desk monitors reveals that another slave whose business brought _himU past this area of the penthouse has paused and is listening quizzically, trying to figure out what this odd, heavily accented chant coming out of your office means. It soon becomes obvious. "Fingerfuuuck!" comes $activeSlave.slaveName's voice, loud and clear, and @@.hotpink;desperately eager to please.@@ $He continues, moving from "<<S>>phincter" to
-		<<if ($PC.dick == 1)>>
-			"<<Master>>'<<s>><<if $PC.vagina == 1>> futa<</if>> cock, oh no,"
+		and pull downward gently. "<<S>>orry <<Master>>," $he mutters in $his barbarous $activeSlave.nationality accent, and sits <<if $activeSlave.belly >= 5000>>carefully<<else>>hurriedly<</if>> down.
+		<br><br>
+		You review 'next,' praising $him for getting that, and then move on to 'sit,' 'stand,' and other such useful terms, teaching the $language language to the nude slave sitting
+		<<if $activeSlave.belly >= 10000 || $activeSlave.weight >= 130>>
+			heavily
 		<<else>>
-			"<<S>>trap-on, oh no,"
+			cross-legged
 		<</if>>
-		to repetition of "Anal, butt<<s>>e<<x>>, unh, a<<ss>>fucking, <<s>>odomy, um, buttfucking," and so on. Just when the eavesdropping _girlU decides that this has become monotonous and turns to go about _hisU business, $activeSlave.slaveName's voice rises sharply in pitch. "Aaah! "@@.gold;A<<ss>>rape!@@ Oh plea<<s>>e, <<Master>>, ohh, a<<ss>>rape, a<<ss>>rape," followed by much tearful repetition of what's happening to $him, and a final, sad <<if $PC.dick == 1>>"C-creampie,"<<else>>"Gape,"<</if>> in a defeated little voice.
-		<<set $activeSlave.trust -= 2, $activeSlave.devotion += 4>>
-		<<= AnalVCheck()>>
-		<</replace>>
-	<</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
-	<</if>>
-	</span>
+		next to you. $He <<if canHear($activeSlave)>>listens raptly<<elseif canSee($activeSlave)>>reads along<<else>>focuses intently<</if>>, parroting obediently and clearly doing $his best to please, but you notice a certain incredulity that slowly fades as the lesson goes on. $He's obviously having trouble believing that $his owner would trouble _himselfP with $his vocabulary lessons. You work with $his several times a day, and $he's so diligent that by the end of the week $he's @@.green;beginning to make $himself understood,@@ though $his accent is still pretty atrocious.
+		<<set $activeSlave.accent-->>
+	<</replace>>
+<</link>>
+<br><<link "Teach $him the words for body parts">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You order $him to stand next to you. $He hesitates, but eventually processes the instruction and hurries over. When $he comes to a stop, $he gasps to find you taking $him by the hands. You raise them slightly, bringing them <<if canSee($activeSlave)>>up into $his field of view<<else>>to $his attention<</if>>, and tell $him that these are $his hands. "Hand<<s>>," $he parrots in <<print $language>>, understanding that this is a language lesson. Your own hands slide over $his wrists to grasp $his
+		<<if $activeSlave.weight > 160>>
+			fat
+		<<elseif $activeSlave.weight > 95>>
+			chubby
+		<<elseif $activeSlave.muscles > 5>>
+			toned
+		<<else>>
+			soft
+		<</if>>
+		forearms, producing a little shiver; you name them, and $he repeats after you, "Arm<<s>>." You reach
+		<<if $activeSlave.height >= 185>>
+			a long way up to reach the tall
+		<<elseif $activeSlave.height >= 160>>
+			up to caress the
+		<<else>>
+			out to touch the diminutive
+		<</if>>
+		slave's shoulders possessively, and name them. "<<Sh>>oulder<<s>>."
+		<br><br>
+		You continue from there. "Neck. Chin. Lip<<s>>. Che<<s>>t. Boob<<s>>. N-nipple<<if $activeSlave.nipples == "fuckable">>cunt<</if>><<s>>. Belly. Hip<<s>>,
+		<<if ($activeSlave.dick > 0)>>
+			<<if ($activeSlave.balls > 0)>>
+				c-cock, oh <<Master>>, p-plea<<s>>e, augh, ball<<s>>,
+			<<else>>
+				b-bitchclit, oh <<Master>>, p-plea<<s>>e,
+			<</if>>
+		<</if>>
+		<<if ($activeSlave.vagina > -1)>>
+			pu<<ss>>y. Cliiiiiit, oh <<Master>> n-nuh,
+		<</if>>
+		Butt," and finally, "B-butt, um, butthole."
+		<br><br><span id="result2">
+			<<link "Now let $him review">>
+				<<replace "#result2">>
+					You tell $him to do the inspection routine again, narrating it $himself. $He understands immediately, and hustles back to stand in front of your desk, brow furrowed in concentration as $he struggles to keep the vocabulary in $his head. $He shows each part of $his body to you in turn, and gets every single one of the terms to describe $his body — which in the legal sense, is actually //your// body, one of many you own — perfectly right, though of course $he repeats them in $his atrocious <<if $activeSlave.nationality == "a Cook Islander">>Cook Islander<<elseif $activeSlave.nationality == "a Liechtensteiner">>Liechtensteiner<<elseif $activeSlave.nationality == "a New Zealander">>New Zealander<<elseif $activeSlave.nationality == "a Solomon Islander">>Solomon Islander<<else>>$activeSlave.nationality<</if>> accent. $He even @@.mediumaquamarine;has the confidence@@ to throw in a little flourish: $he says
+					<<if $activeSlave.belly >= 10000>>
+						"Belly!" with flirty emphasis, stroking it sensually.
+					<<elseif ($activeSlave.boobs > 3000)>>
+						"Boob<<s>>!" with flirty emphasis, bouncing them for you.
+					<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 0)>>
+						"Cock!" with flirty emphasis, making it bounce for you.
+					<<elseif ($activeSlave.dick > 0)>>
+						"Bitchclit!" with flirty emphasis, making it wave for you.
+					<<elseif ($activeSlave.lips > 40)>>
+						"Lip<<s>>!" with flirty emphasis, and blows you a kiss.
+					<<elseif ($activeSlave.butt > 4)>>
+						"Butt!" with flirty emphasis, jiggling it for you.
+					<<else>>
+						"Butthole!" with flirty emphasis, bending over and <<if !canDoAnal($activeSlave)>>shaking $his anal chastity at<<else>>winking it for<</if>> you.
+					<</if>>
+					<<set $activeSlave.trust += 4>>
+				<</replace>>
+			<</link>>
+			<<if canDoAnal($activeSlave)>>
+				<br><<link "Cover some sexual vocabulary, and make sure $he doesn't forget it">>
+					<<setNonlocalPronouns $seeDicks>>
+					<<replace "#result2">>
+						A glance at one of your desk monitors reveals that another slave whose business brought _himU past this area of the penthouse has paused and is listening quizzically, trying to figure out what this odd, heavily accented chant coming out of your office means. It soon becomes obvious. "Fingerfuuuck!" comes $activeSlave.slaveName's voice, loud and clear, and @@.hotpink;desperately eager to please.@@ $He continues, moving from "<<S>>phincter" to
+						<<if ($PC.dick == 1)>>
+							"<<Master>>'<<s>><<if $PC.vagina == 1>> futa<</if>> cock, oh no,"
+						<<else>>
+							"<<S>>trap-on, oh no,"
+						<</if>>
+						to repetition of "Anal, butt<<s>>e<<x>>, unh, a<<ss>>fucking, <<s>>odomy, um, buttfucking," and so on. Just when the eavesdropping _girlU decides that this has become monotonous and turns to go about _hisU business, $activeSlave.slaveName's voice rises sharply in pitch. "Aaah! "@@.gold;A<<ss>>rape!@@ Oh plea<<s>>e, <<Master>>, ohh, a<<ss>>rape, a<<ss>>rape," followed by much tearful repetition of what's happening to $him, and a final, sad <<if $PC.dick == 1>>"C-creampie,"<<else>>"Gape,"<</if>> in a defeated little voice.
+						<<set $activeSlave.trust -= 2, $activeSlave.devotion += 4>>
+						<<= AnalVCheck()>>
+					<</replace>>
+				<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
+			<</if>>
+		</span>
 	<</replace>>
 <</link>>
 
@@ -14788,35 +14793,57 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 	<<EventNameDelink $activeSlave>>
 	<<setNonlocalPronouns $seeDicks>>
 	<<replace "#result">>
-	<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
-	<<set _targetJobs = ["be a servant", "be a subordinate slave", "get milked", "learn in the schoolroom", "please you", "rest in the spa", "rest", "serve in the club", "serve the public", "take classes", "whore", "work a glory hole", "work as a servant", "work in the brothel"]>>
-	You leave for the moment, but appear at the next mealtime before even $he does. You shut off all the phallic feeders but one, and make an announcement. You decree that just for this one meal, $activeSlave.slaveName is to lie in front of the one functional feeder,
-	<<if canPenetrate($activeSlave)>>as
-		$his cock in the air;
-	<<else>>
-		with a dildo jutting up from $his crotch;
-	<</if>>
-	in order to eat, each slave must ride $activeSlave.slaveName for as long as it takes to suck down their meal<<if $activeSlave.belly >= 5000>> (given the _belly mass jutting from $his middle, it should be quite the sight)<</if>>. $activeSlave.slaveName gapes at you openmouthed for a long moment, looking like $he wants to @@.hotpink;declaim a speech of thanks,@@ but you cut $him off by pointing peremptorily at $his place; $he almost runs over, $his @@.mediumaquamarine;trust in your whim@@ nearly absolute. But the true shape of your plan isn't apparent yet. When the first slave seats _himselfU on $activeSlave.slaveName and starts sucking off the dispenser dildo, you crouch behind _himU and insert yourself as well; the bitch is now airtight. _HeU gags and splutters with the discomfort but keeps working away until _heU gets _hisU meal down and struggles off the three phalluses _heU has in _himU. The next in line gets to it with some trepidation: and so it goes, slave by slave.
-	<<for _ress = 0; _ress < $slaves.length; _ress++>>
-		<<if _targetJobs.includes($slaves[_ress].assignment) && $slaves[_ress].amp != 1 && $slaves[_ress].relationship != -3 && _ress.ID != $activeSlave.ID>>
-			<<if canDoAnal($slaves[_ress]) && canDoVaginal($slaves[_ress])>>
-				<<if $slaves[_ress].anus == 0 && $slaves[_ress].vagina == 0>>
-					<<set _virgins = 1>>
-				<<elseif $slaves[_ress].vagina == 0>>
-					<<set _virgins = 1, _anusOnly = 1>>
-					<<set $slaves[_ress].counter.anal += 2, $analTotal += 2>>
-					<<if canImpreg($slaves[_ress], $PC)>>
-						<<= knockMeUp($slaves[_ress], 5, 1, -1, 1)>>
-					<</if>>
-					<<if canImpreg($slaves[_ress])>>
-						<<= knockMeUp($slaves[_ress], 5, 1, $activeSlave.ID, 1)>>
-					<</if>>
-					<<if ($slaves[_ress].anus == 1)>>
-						<<set $slaves[_ress].trust -= 2>>
-						<<set _doubleAnal = 1>>
+		<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
+		<<set _targetJobs = ["be a servant", "be a subordinate slave", "get milked", "learn in the schoolroom", "please you", "rest in the spa", "rest", "serve in the club", "serve the public", "take classes", "whore", "work a glory hole", "work as a servant", "work in the brothel"]>>
+		You leave for the moment, but appear at the next mealtime before even $he does. You shut off all the phallic feeders but one, and make an announcement. You decree that just for this one meal, $activeSlave.slaveName is to lie in front of the one functional feeder,
+		<<if canPenetrate($activeSlave)>>as
+			$his cock in the air;
+		<<else>>
+			with a dildo jutting up from $his crotch;
+		<</if>>
+		in order to eat, each slave must ride $activeSlave.slaveName for as long as it takes to suck down their meal<<if $activeSlave.belly >= 5000>> (given the _belly mass jutting from $his middle, it should be quite the sight)<</if>>. $activeSlave.slaveName gapes at you openmouthed for a long moment, looking like $he wants to @@.hotpink;declaim a speech of thanks,@@ but you cut $him off by pointing peremptorily at $his place; $he almost runs over, $his @@.mediumaquamarine;trust in your whim@@ nearly absolute. But the true shape of your plan isn't apparent yet. When the first slave seats _himselfU on $activeSlave.slaveName and starts sucking off the dispenser dildo, you crouch behind _himU and insert yourself as well; the bitch is now airtight. _HeU gags and splutters with the discomfort but keeps working away until _heU gets _hisU meal down and struggles off the three phalluses _heU has in _himU. The next in line gets to it with some trepidation: and so it goes, slave by slave.
+		<<for _ress = 0; _ress < $slaves.length; _ress++>>
+			<<if _targetJobs.includes($slaves[_ress].assignment) && $slaves[_ress].amp != 1 && $slaves[_ress].relationship != -3 && _ress.ID != $activeSlave.ID>>
+				<<if canDoAnal($slaves[_ress]) && canDoVaginal($slaves[_ress])>>
+					<<if $slaves[_ress].anus == 0 && $slaves[_ress].vagina == 0>>
+						<<set _virgins = 1>>
+					<<elseif $slaves[_ress].vagina == 0>>
+						<<set _virgins = 1, _anusOnly = 1>>
+						<<set $slaves[_ress].counter.anal += 2, $analTotal += 2>>
+						<<if canImpreg($slaves[_ress], $PC)>>
+							<<= knockMeUp($slaves[_ress], 5, 1, -1, 1)>>
+						<</if>>
+						<<if canImpreg($slaves[_ress])>>
+							<<= knockMeUp($slaves[_ress], 5, 1, $activeSlave.ID, 1)>>
+						<</if>>
+						<<if ($slaves[_ress].anus == 1)>>
+							<<set $slaves[_ress].trust -= 2>>
+							<<set _doubleAnal = 1>>
+						<</if>>
+					<<elseif $slaves[_ress].anus == 0>>
+						<<set _virgins = 1, _pussyOnly = 1>>
+						<<set $slaves[_ress].counter.vaginal += 2, $vaginalTotal += 2>>
+						<<if canImpreg($slaves[_ress], $PC)>>
+							<<= knockMeUp($slaves[_ress], 5, 0, -1, 1)>>
+						<</if>>
+						<<if canImpreg($slaves[_ress])>>
+							<<= knockMeUp($slaves[_ress], 5, 0, $activeSlave.ID, 1)>>
+						<</if>>
+						<<if ($slaves[_ress].vagina == 1)>>
+							<<set $slaves[_ress].trust -= 2>>
+							<<set _doubleVaginal = 1>>
+						<</if>>
+					<<else>>
+						<<set $slaves[_ress].counter.vaginal++, $vaginalTotal++, $slaves[_ress].counter.anal++, $analTotal++>>
+						<<if canImpreg($slaves[_ress], $PC)>>
+							<<= knockMeUp($slaves[_ress], 5, 2, -1, 1)>>
+						<</if>>
+						<<if canImpreg($slaves[_ress])>>
+							<<= knockMeUp($slaves[_ress], 5, 1, $activeSlave.ID, 1)>>
+						<</if>>
 					<</if>>
-				<<elseif $slaves[_ress].anus == 0>>
-					<<set _virgins = 1, _pussyOnly = 1>>
+				<<elseif canDoVaginal($slaves[_ress])>>
+					<<set _pussyOnly = 1>>
 					<<set $slaves[_ress].counter.vaginal += 2, $vaginalTotal += 2>>
 					<<if canImpreg($slaves[_ress], $PC)>>
 						<<= knockMeUp($slaves[_ress], 5, 0, -1, 1)>>
@@ -14828,110 +14855,88 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 						<<set $slaves[_ress].trust -= 2>>
 						<<set _doubleVaginal = 1>>
 					<</if>>
-				<<else>>
-					<<set $slaves[_ress].counter.vaginal++, $vaginalTotal++, $slaves[_ress].counter.anal++, $analTotal++>>
+				<<elseif canDoAnal($slaves[_ress])>>
+					<<set _anusOnly = 1>>
+					<<set $slaves[_ress].counter.anal += 2, $analTotal += 2>>
 					<<if canImpreg($slaves[_ress], $PC)>>
-						<<= knockMeUp($slaves[_ress], 5, 2, -1, 1)>>
+						<<= knockMeUp($slaves[_ress], 5, 1, -1, 1)>>
 					<</if>>
 					<<if canImpreg($slaves[_ress])>>
 						<<= knockMeUp($slaves[_ress], 5, 1, $activeSlave.ID, 1)>>
 					<</if>>
+					<<if ($slaves[_ress].anus == 1)>>
+						<<set $slaves[_ress].trust -= 2>>
+						<<set _doubleAnal = 1>>
+					<</if>>
+				<<else>>
+					<<set _chaste = 1>>
 				<</if>>
-			<<elseif canDoVaginal($slaves[_ress])>>
-				<<set _pussyOnly = 1>>
-				<<set $slaves[_ress].counter.vaginal += 2, $vaginalTotal += 2>>
-				<<if canImpreg($slaves[_ress], $PC)>>
-					<<= knockMeUp($slaves[_ress], 5, 0, -1, 1)>>
-				<</if>>
-				<<if canImpreg($slaves[_ress])>>
-					<<= knockMeUp($slaves[_ress], 5, 0, $activeSlave.ID, 1)>>
-				<</if>>
-				<<if ($slaves[_ress].vagina == 1)>>
-					<<set $slaves[_ress].trust -= 2>>
-					<<set _doubleVaginal = 1>>
-				<</if>>
-			<<elseif canDoAnal($slaves[_ress])>>
-				<<set _anusOnly = 1>>
-				<<set $slaves[_ress].counter.anal += 2, $analTotal += 2>>
-				<<if canImpreg($slaves[_ress], $PC)>>
-					<<= knockMeUp($slaves[_ress], 5, 1, -1, 1)>>
-				<</if>>
-				<<if canImpreg($slaves[_ress])>>
-					<<= knockMeUp($slaves[_ress], 5, 1, $activeSlave.ID, 1)>>
-				<</if>>
-				<<if ($slaves[_ress].anus == 1)>>
-					<<set $slaves[_ress].trust -= 2>>
-					<<set _doubleAnal = 1>>
+				<<if ($slaves[_ress].fetishKnown == 1) && ($slaves[_ress].fetish == "submissive")>>
+					<<set $slaves[_ress].devotion++>>
+					<<set _subLove = 1>>
 				<</if>>
-			<<else>>
-				<<set _chaste = 1>>
+				<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
 			<</if>>
-			<<if ($slaves[_ress].fetishKnown == 1) && ($slaves[_ress].fetish == "submissive")>>
-				<<set $slaves[_ress].devotion++>>
-				<<set _subLove = 1>>
+		<</for>>
+		<<if def _virgins>>
+			You let your virgins<<if def _chaste>> and chaste slaves<</if>> hold their thighs tight together for a little frottage rather than deflowering their holes like this.
+		<<elseif def _chaste>>
+			Your chaste slaves hold their thighs tight together for a little frottage should they lack the ability to accommodate.
+		<</if>>
+		<<if def _anusOnly>>
+			Those slaves without pussies are forced to take both you and $activeSlave.slaveName up the butt at once.
+			<<if def _doubleAnal>>
+				Experienced assholes can take the strain just fine, but your tighter-assed slaves are @@.gold;frightened@@ by the anal pain they suffer.
 			<</if>>
-			<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
 		<</if>>
-	<</for>>
-	<<if def _virgins>>
-		You let your virgins<<if def _chaste>> and chaste slaves<</if>> hold their thighs tight together for a little frottage rather than deflowering their holes like this.
-	<<elseif def _chaste>>
-		Your chaste slaves hold their thighs tight together for a little frottage should they lack the ability to accommodate.
-	<</if>>
-	<<if def _anusOnly>>
-		Those slaves without pussies are forced to take both you and $activeSlave.slaveName up the butt at once.
-		<<if def _doubleAnal>>
-			Experienced assholes can take the strain just fine, but your tighter-assed slaves are @@.gold;frightened@@ by the anal pain they suffer.
+		<<if def _pussyOnly>>
+			Slaves with off-limit assholes quickly find both you and $activeSlave.slaveName delving the depths of their cunts.
+			<<if def _doubleVaginal>>
+				Experienced sluts can take the double penetration just fine, but your tighter slaves are @@.gold;frightened@@ by the amount of stretching they are forced to undergo.
+			<</if>>
 		<</if>>
-	<</if>>
-	<<if def _pussyOnly>>
-		Girls with off-limit assholes quickly find both you and $activeSlave.slaveName delving the depths of their cunts.
-		<<if def _doubleVaginal>>
-			Experienced sluts can take the double penetration just fine, but your tighter slaves are @@.gold;frightened@@ by the amount of stretching they are forced to undergo.
+		<<if def _subLove>>
+			Your subs on the other hand think this is @@.hotpink;a meal worth remembering.@@
 		<</if>>
-	<</if>>
-	<<if def _subLove>>
-		Your subs on the other hand think this is @@.hotpink;a meal worth remembering.@@
-	<</if>>
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "The rule about consent works both ways">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	<<set _targetJobs = ["be a servant", "be a subordinate slave", "get milked", "learn in the schoolroom", "please you", "rest in the spa", "rest", "serve in the club", "serve the public", "take classes", "whore", "work a glory hole", "work as a servant", "work in the brothel"]>>
-	You tell $activeSlave.slaveName to get up on the kitchen counter and spread $his legs. $He catches something in the tone of your voice and looks frightened, but obeys. You then make several conversational observations, as though for no particular reason, to the rest of the slaves. First, you point out, the consent rule works for everyone: they, hypothetically, would not need to ask $activeSlave.slaveName $his permission to fuck $his ass, just like $he doesn't have to ask their permission to molest them during meals. (At this $activeSlave.slaveName's fear deepens into obvious @@.gold;terror.@@) Second, you have decided $activeSlave.slaveName will not be getting down off the counter until everyone's done with their meals — and anything else they wish to do in the kitchen. And third, you conclude, any number of large strap-ons and dildos can be found in the kitchen cabinets. There is a general rush for these; you tell $activeSlave.slaveName, whose
-	<<if $activeSlave.lips > 40>>
-		bimbo
-	<<elseif $activeSlave.lips > 20>>
-		big
-	<<elseif $activeSlave.lips > 10>>
-		soft
-	<</if>>
-	lips are quivering, to come see you after $he's done here. About an hour later, $he hobbles into your office, and you tell $him to show you $his anus. $His longtime targets for mealtime molestation were not merciful; they weren't stupid enough to damage $him, but that's one well-gaped butthole. You fuck it anyway, and $he's too tired and desensitized to care. Your less trusting slaves carefully consider the rules, and realize that there's a @@.mediumaquamarine;built-in mechanism for correction:@@ if anyone gets too rapey, they can rape them right back.
-	<<set $activeSlave.trust -= 5>>
-	<<= AnalVCheck(20)>>
-	<<if canGetPregnant($activeSlave) && $activeSlave.mpreg == 1>>
-		<<set _sourceSeed = random(0,$slaves.length-1)>>
-		<<for _ress = _sourceSeed + 1; _ress != _sourceSeed; _ress++>>
-			<<if _ress == $slaves.length>><<set _ress = 0>><</if>> /* wrap around */
-			<<if canImpreg($activeSlave, $slaves[_ress]) && _targetJobs.includes($slaves[_ress].assignment) && $slaves[_ress].ID != $activeSlave.ID>>
-				<<= knockMeUp($activeSlave, 50, 1, $slaves[_ress].ID, 1)>>
-				<<break>>
+	<br><<link "The rule about consent works both ways">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			<<set _targetJobs = ["be a servant", "be a subordinate slave", "get milked", "learn in the schoolroom", "please you", "rest in the spa", "rest", "serve in the club", "serve the public", "take classes", "whore", "work a glory hole", "work as a servant", "work in the brothel"]>>
+			You tell $activeSlave.slaveName to get up on the kitchen counter and spread $his legs. $He catches something in the tone of your voice and looks frightened, but obeys. You then make several conversational observations, as though for no particular reason, to the rest of the slaves. First, you point out, the consent rule works for everyone: they, hypothetically, would not need to ask $activeSlave.slaveName $his permission to fuck $his ass, just like $he doesn't have to ask their permission to molest them during meals. (At this $activeSlave.slaveName's fear deepens into obvious @@.gold;terror.@@) Second, you have decided $activeSlave.slaveName will not be getting down off the counter until everyone's done with their meals — and anything else they wish to do in the kitchen. And third, you conclude, any number of large strap-ons and dildos can be found in the kitchen cabinets. There is a general rush for these; you tell $activeSlave.slaveName, whose
+			<<if $activeSlave.lips > 40>>
+				bimbo
+			<<elseif $activeSlave.lips > 20>>
+				big
+			<<elseif $activeSlave.lips > 10>>
+				soft
 			<</if>>
-		<</for>>
-	<</if>>
-	<<for _ress = 0; _ress < $slaves.length; _ress++>>
-		<<if ($slaves[_ress].trust < 50) && _targetJobs.includes($slaves[_ress].assignment)>>
-			<<set $slaves[_ress].trust++>>
-		<</if>>
-	<</for>>
-	<<if $activeSlave.anus == 1>>
-		Poor $activeSlave.slaveName's butthole @@.lime;isn't quite the same@@ afterward.
-		<<set $activeSlave.anus += 1>>
-	<</if>>
-	<</replace>>
-<</link>><<if $activeSlave.anus == 0>> //This option will take anal virginity//<</if>>
+			lips are quivering, to come see you after $he's done here. About an hour later, $he hobbles into your office, and you tell $him to show you $his anus. $His longtime targets for mealtime molestation were not merciful; they weren't stupid enough to damage $him, but that's one well-gaped butthole. You fuck it anyway, and $he's too tired and desensitized to care. Your less trusting slaves carefully consider the rules, and realize that there's a @@.mediumaquamarine;built-in mechanism for correction:@@ if anyone gets too rapey, they can rape them right back.
+			<<set $activeSlave.trust -= 5>>
+			<<= AnalVCheck(20)>>
+			<<if canGetPregnant($activeSlave) && $activeSlave.mpreg == 1>>
+				<<set _sourceSeed = random(0,$slaves.length-1)>>
+				<<for _ress = _sourceSeed + 1; _ress != _sourceSeed; _ress++>>
+					<<if _ress == $slaves.length>><<set _ress = 0>><</if>> /* wrap around */
+					<<if canImpreg($activeSlave, $slaves[_ress]) && _targetJobs.includes($slaves[_ress].assignment) && $slaves[_ress].ID != $activeSlave.ID>>
+						<<= knockMeUp($activeSlave, 50, 1, $slaves[_ress].ID, 1)>>
+						<<break>>
+					<</if>>
+				<</for>>
+			<</if>>
+			<<for _ress = 0; _ress < $slaves.length; _ress++>>
+				<<if ($slaves[_ress].trust < 50) && _targetJobs.includes($slaves[_ress].assignment)>>
+					<<set $slaves[_ress].trust++>>
+				<</if>>
+			<</for>>
+			<<if $activeSlave.anus == 1>>
+				Poor $activeSlave.slaveName's butthole @@.lime;isn't quite the same@@ afterward.
+				<<set $activeSlave.anus += 1>>
+			<</if>>
+		<</replace>>
+	<</link>><<if $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
 <</if>>
 
 <<case "forbidden masturbation">>
@@ -14939,211 +14944,211 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Let $him earn relief">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He's extremely relieved that you're not going to punish $him for the rulebreaking when you tell $him that $he can touch $himself if $he
-	<<if $activeSlave.belly >= 300000>>
-		leans over $his _belly belly
-	<<else>>
-		gets on $his knees
-	<</if>>
-	and sucks you off. $He does a decent job, playing with $himself all the while. $He's learned that $he can get away with infractions if $he's willing to suck dick afterward. $His resistance to your will @@.mediumorchid;has increased.@@
-	<<set $activeSlave.devotion -= 5, $activeSlave.counter.oral++, $oralTotal++>>
-	<</replace>>
-<</link>>
-<br>Punish $him, but then let $him get off:
-<<if ($activeSlave.fetish != "cumslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "when $he sucks">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You
-	<<if $PC.belly >= 10000>>
-		<<if $activeSlave.belly >= 300000>>
-			tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him,
-		<<elseif $activeSlave.belly >= 5000>>
-			order $him to bend over beside you so your pregnancy doesn't obstruct you as badly
-		<<else>>
-			lean back, pull $him over your knee and under your gravid dome of a middle
-		<</if>>
-	<<else>>
+		$He's extremely relieved that you're not going to punish $him for the rulebreaking when you tell $him that $he can touch $himself if $he
 		<<if $activeSlave.belly >= 300000>>
-			tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>
-		<<elseif $activeSlave.belly >= 5000>>
-			spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap
+			leans over $his _belly belly
 		<<else>>
-			pull $him down over your knee
+			gets on $his knees
 		<</if>>
-	<</if>>
-	and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull $him up to face you and give $him your instructions: from now on, $he can come to you and ask to <<if $PC.dick == 1>>blow you<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>perform cunnilingus on you<</if>>, and masturbate while $he does. $He nods through $his tears and flees. In an hour or so, though, $he finds you and asks to <<if $PC.vagina == 1>>give you oral<<else>>suck your cock<</if>>. When you pretend indifference, $he abjectly begs. Soon, $he's down on $his knees, crying a little with shame as $he masturbates furiously.
-	<<set $activeSlave.counter.oral += 5, $oralTotal += 5>>
-	<<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>> has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
-		Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>>.@@
-	<</if>>
+		and sucks you off. $He does a decent job, playing with $himself all the while. $He's learned that $he can get away with infractions if $he's willing to suck dick afterward. $His resistance to your will @@.mediumorchid;has increased.@@
+		<<set $activeSlave.devotion -= 5, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
+<br>Punish $him, but then let $him get off:
+<<if ($activeSlave.fetish != "cumslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "when $he sucks">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You
+			<<if $PC.belly >= 10000>>
+				<<if $activeSlave.belly >= 300000>>
+					tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him,
+				<<elseif $activeSlave.belly >= 5000>>
+					order $him to bend over beside you so your pregnancy doesn't obstruct you as badly
+				<<else>>
+					lean back, pull $him over your knee and under your gravid dome of a middle
+				<</if>>
+			<<else>>
+				<<if $activeSlave.belly >= 300000>>
+					tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>
+				<<elseif $activeSlave.belly >= 5000>>
+					spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap
+				<<else>>
+					pull $him down over your knee
+				<</if>>
+			<</if>>
+			and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull $him up to face you and give $him your instructions: from now on, $he can come to you and ask to <<if $PC.dick == 1>>blow you<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>perform cunnilingus on you<</if>>, and masturbate while $he does. $He nods through $his tears and flees. In an hour or so, though, $he finds you and asks to <<if $PC.vagina == 1>>give you oral<<else>>suck your cock<</if>>. When you pretend indifference, $he abjectly begs. Soon, $he's down on $his knees, crying a little with shame as $he masturbates furiously.
+			<<set $activeSlave.counter.oral += 5, $oralTotal += 5>>
+			<<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
+				<<set $activeSlave.fetishStrength += 4>>
+				@@.lightcoral;$His enjoyment of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>> has increased.@@
+			<<elseif random(1,100) > 50>>
+				<<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
+				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>>.@@
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if ($activeSlave.fetish != "boobs") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "during nipple play">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You
-	<<if $PC.belly >= 10000>>
-		<<if $activeSlave.belly >= 300000>>
-			tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you flip $him onto $his back, lower your gravid body down to $his level and start playing with $his nipples.
-		<<elseif $activeSlave.belly >= 5000>>
-			order $him to bend over beside you so your pregnancy doesn't obstruct you as badly and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him upright and start playing with $his nipples.
-		<<else>>
-			lean back, pull $him over your knee and under your gravid dome of a middle and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him upright and start playing with $his nipples.
-		<</if>>
-	<<else>>
-		<<if $activeSlave.belly >= 300000>>
-			tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap, $his stomach spreading your legs, and start playing with $his nipples.
-		<<elseif $activeSlave.belly >= 5000>>
-			spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap and start playing with $his nipples.
-		<<else>>
-			pull $him down over your knee and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap and start playing with $his nipples.
-		<</if>>
-	<</if>>
-	$He writhes and sobs at the orgasm denial, since the nipple play is just barely enough to keep $him at a high level of arousal without giving relief. You switch back and forth until $he finally goes over into muscle-spasming climax during nipple stimulation alone.
-	<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
-	<<if ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of breast play has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetish = "boobs", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
-		Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at every brush against $his breasts.@@
-	<</if>>
-	<</replace>>
-<</link>>
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "during nipple play">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You
+			<<if $PC.belly >= 10000>>
+				<<if $activeSlave.belly >= 300000>>
+					tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you flip $him onto $his back, lower your gravid body down to $his level and start playing with $his nipples.
+				<<elseif $activeSlave.belly >= 5000>>
+					order $him to bend over beside you so your pregnancy doesn't obstruct you as badly and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him upright and start playing with $his nipples.
+				<<else>>
+					lean back, pull $him over your knee and under your gravid dome of a middle and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him upright and start playing with $his nipples.
+				<</if>>
+			<<else>>
+				<<if $activeSlave.belly >= 300000>>
+					tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap, $his stomach spreading your legs, and start playing with $his nipples.
+				<<elseif $activeSlave.belly >= 5000>>
+					spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap and start playing with $his nipples.
+				<<else>>
+					pull $him down over your knee and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap and start playing with $his nipples.
+				<</if>>
+			<</if>>
+			$He writhes and sobs at the orgasm denial, since the nipple play is just barely enough to keep $him at a high level of arousal without giving relief. You switch back and forth until $he finally goes over into muscle-spasming climax during nipple stimulation alone.
+			<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
+			<<if ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
+				<<set $activeSlave.fetishStrength += 4>>
+				@@.lightcoral;$His enjoyment of breast play has increased.@@
+			<<elseif random(1,100) > 50>>
+				<<set $activeSlave.fetish = "boobs", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
+				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at every brush against $his breasts.@@
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if (($activeSlave.fetish != "pregnancy") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)) && $activeSlave.belly >= 5000>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while fondling $his belly">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You
-	<<if $activeSlave.belly >= 300000>>
-		roll $him onto $his back
-	<<else>>
-		pull $him into a sitting position on your lap
-	<</if>>
-	and grope $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>thoroughly, allowing $him to reach the painful edge of orgasm. You feel $his belly shudder as $he reaches climax under your ministrations. You tease $his <<if $activeSlave.belly >= 10001>>popped <</if>>navel as $he comes down from $his masturbation session.
-	<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of pregnancy has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
-		Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at <<if $activeSlave.pregKnown == 1>>every thought about $his pregnancy<<else>>the very thought of being pregnant<</if>>.@@
-	<</if>>
-	<</replace>>
-<</link>>
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while fondling $his belly">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You
+			<<if $activeSlave.belly >= 300000>>
+				roll $him onto $his back
+			<<else>>
+				pull $him into a sitting position on your lap
+			<</if>>
+			and grope $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>thoroughly, allowing $him to reach the painful edge of orgasm. You feel $his belly shudder as $he reaches climax under your ministrations. You tease $his <<if $activeSlave.belly >= 10001>>popped <</if>>navel as $he comes down from $his masturbation session.
+			<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
+				<<set $activeSlave.fetishStrength += 4>>
+				@@.lightcoral;$His enjoyment of pregnancy has increased.@@
+			<<elseif random(1,100) > 50>>
+				<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
+				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at <<if $activeSlave.pregKnown == 1>>every thought about $his pregnancy<<else>>the very thought of being pregnant<</if>>.@@
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if canDoAnal($activeSlave)>>
-<<if ($activeSlave.fetish != "buttslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "when $he takes it up the ass">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You
-	<<if $PC.belly >= 10000>>
-		<<if $activeSlave.belly >= 300000>>
-			tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him,
-		<<elseif $activeSlave.belly >= 5000>>
-			order $him to bend over beside you so your pregnancy doesn't obstruct you as badly
-		<<else>>
-			lean back, pull $him over your knee and under your gravid dome of a middle
-		<</if>>
-	<<else>>
-		<<if $activeSlave.belly >= 300000>>
-			tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>
-		<<elseif $activeSlave.belly >= 5000>>
-			spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap
-		<<else>>
-			pull $him down over your knee
-		<</if>>
-	<</if>>
-	and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull $him up to face you and give $him your instructions: from now on, $he can come to you and ask you to assrape $him, and masturbate while $he takes <<if $PC.dick == 0>>anal penetration<<else>>cock<</if>>. $He nods through $his tears and flees. In an hour or so, though, $he finds you and haltingly asks you to buttfuck $him. When you pretend indifference, $he offers you $his anus and abjectly begs you to stick <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> up $his butt. Soon, $he's down on all fours, crying a little with mixed shame and anal pain as $he masturbates furiously.
-	<<= AnalVCheck(5)>>
-	<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of anal has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
-		Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of anal sex.@@
-	<</if>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
-<</if>>
+	<<if ($activeSlave.fetish != "buttslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "when $he takes it up the ass">>
+			<<EventNameDelink $activeSlave>>
+			<<replace "#result">>
+				You
+				<<if $PC.belly >= 10000>>
+					<<if $activeSlave.belly >= 300000>>
+						tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him,
+					<<elseif $activeSlave.belly >= 5000>>
+						order $him to bend over beside you so your pregnancy doesn't obstruct you as badly
+					<<else>>
+						lean back, pull $him over your knee and under your gravid dome of a middle
+					<</if>>
+				<<else>>
+					<<if $activeSlave.belly >= 300000>>
+						tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>
+					<<elseif $activeSlave.belly >= 5000>>
+						spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap
+					<<else>>
+						pull $him down over your knee
+					<</if>>
+				<</if>>
+				and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull $him up to face you and give $him your instructions: from now on, $he can come to you and ask you to assrape $him, and masturbate while $he takes <<if $PC.dick == 0>>anal penetration<<else>>cock<</if>>. $He nods through $his tears and flees. In an hour or so, though, $he finds you and haltingly asks you to buttfuck $him. When you pretend indifference, $he offers you $his anus and abjectly begs you to stick <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> up $his butt. Soon, $he's down on all fours, crying a little with mixed shame and anal pain as $he masturbates furiously.
+				<<= AnalVCheck(5)>>
+				<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
+					<<set $activeSlave.fetishStrength += 4>>
+					@@.lightcoral;$His enjoyment of anal has increased.@@
+				<<elseif random(1,100) > 50>>
+					<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
+					Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of anal sex.@@
+				<</if>>
+			<</replace>>
+		<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
+	<</if>>
 <</if>>
 <<if ($activeSlave.fetish != "humiliation") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "in public">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You bring $him out <<if $club > 0>>to $clubName<<else>>onto the street<</if>> and secure $him upright with a set of vibrators attached to all of $his erogenous zones. There's a lot of them, and they're extremely powerful; when you test the setup, $he wriggles with the intensity of the stimulation, and is about to climax when you shut it down. Without telling $him, you slave the vibrators to a program originally designed for VIP security details. It uses the cameras scattered through the area to detect when passersby are looking at $him. The more eyes on $him, the stronger the vibrations.
-	<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of humiliation has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
-		Before $he realizes what's happening, @@.lightcoral;$he's starting to long for humiliation.@@
-	<</if>>
-	<</replace>>
-<</link>>
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "in public">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You bring $him out <<if $club > 0>>to $clubName<<else>>onto the street<</if>> and secure $him upright with a set of vibrators attached to all of $his erogenous zones. There's a lot of them, and they're extremely powerful; when you test the setup, $he wriggles with the intensity of the stimulation, and is about to climax when you shut it down. Without telling $him, you slave the vibrators to a program originally designed for VIP security details. It uses the cameras scattered through the area to detect when passersby are looking at $him. The more eyes on $him, the stronger the vibrations.
+			<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
+				<<set $activeSlave.fetishStrength += 4>>
+				@@.lightcoral;$His enjoyment of humiliation has increased.@@
+			<<elseif random(1,100) > 50>>
+				<<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
+				Before $he realizes what's happening, @@.lightcoral;$he's starting to long for humiliation.@@
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if ($activeSlave.fetish != "submissive") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while submitting to a spanking">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him that $he can get $himself off while $he's being spanked, and that's it: you don't tell $him to offer $his bottom, much less start spanking $him. $He doesn't understand for a long moment, but before long $he's begging abjectly for a spanking, and has $his buttocks presented, quivering with simultaneous arousal and fear of pain. The pain comes soon enough, with a delicious crack of palm on flesh <<if $activeSlave.voice == 0>>and a hoarse grunt, the most noise $he can make.<<else>>and a shriek of agony.<</if>> $He masturbates furiously, but you're an accomplished spanker, and you repeatedly cause $him just enough pain to prevent climax. Eventually $he gets off in part because of, rather than in spite of, the lengthy beating.
-	<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of submission has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
-		Before $he realizes what's happening, @@.lightcoral;$he starts to associate submitting to you with getting off.@@
-	<</if>>
-	<</replace>>
-<</link>>
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while submitting to a spanking">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him that $he can get $himself off while $he's being spanked, and that's it: you don't tell $him to offer $his bottom, much less start spanking $him. $He doesn't understand for a long moment, but before long $he's begging abjectly for a spanking, and has $his buttocks presented, quivering with simultaneous arousal and fear of pain. The pain comes soon enough, with a delicious crack of palm on flesh <<if $activeSlave.voice == 0>>and a hoarse grunt, the most noise $he can make.<<else>>and a shriek of agony.<</if>> $He masturbates furiously, but you're an accomplished spanker, and you repeatedly cause $him just enough pain to prevent climax. Eventually $he gets off in part because of, rather than in spite of, the lengthy beating.
+			<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
+				<<set $activeSlave.fetishStrength += 4>>
+				@@.lightcoral;$His enjoyment of submission has increased.@@
+			<<elseif random(1,100) > 50>>
+				<<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
+				Before $he realizes what's happening, @@.lightcoral;$he starts to associate submitting to you with getting off.@@
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if ($activeSlave.fetish != "masochist") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while in pain">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You order $him to
-	<<if ($activeSlave.heels == 1) && ($activeSlave.shoes != "heels") && ($activeSlave.shoes != "boots") && ($activeSlave.shoes != "extreme heels")>>
-		kneel
-	<<elseif ($activeSlave.shoes == "heels") || ($activeSlave.shoes == "boots") || ($activeSlave.shoes == "extreme heels")>>
-		teeter
-	<<else>>
-		stand
-	<</if>>
-	with $his arms over $his head and $his legs splayed, and tell $him that if $he moves or resists $his punishment will begin again from the start.
-	<<if ($activeSlave.chastityVagina) || ($activeSlave.chastityPenis == 1)>>
-		$He was touching $his nipples and ass, so you flick and torture $his nipples and give $him a severe spanking.
-	<<elseif !canAchieveErection($activeSlave) && ($activeSlave.dick > 6)>>
-		$He was playing with $his oversized cock, so you kick and swat at the swollen monster, enjoying the way it spasms.
-	<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
-		$He was touching $his limp dick and ass, so you slap and torture $his offending dick and give $him a severe spanking.
-	<<elseif ($activeSlave.vagina == -1) && ($activeSlave.dick == 0)>>
-		$He was desperately rubbing $his perineum and anus, the most sensitive parts $he has left, so you slap that part of $him repeatedly, enjoying the way it spasms.
-	<<elseif $activeSlave.vagina == -1 || $activeSlave.clit >= 3>>
-		$He was jacking it, so you force $him to get $himself hard for punishment and then deliver a series of agonizing slaps and flicks to $his offending member.
-	<<elseif $activeSlave.labia > 1>>
-		$His generous pussylips bear a sheen of incriminating moisture, so you slap and flick them, causing $him intense agony.
-	<<else>>
-		You deliver a series of agonizing slaps to $his mons.
-	<</if>>
-	You have to start over twice. By the end, $he's managed to orgasm to all the stimulation, but $he's crying and desperately promising never to touch $himself again without your permission. $His submission to you @@.hotpink;has increased.@@
-	<<set $activeSlave.devotion += 4>>
-	<<if ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
-		<<set $activeSlave.fetishStrength += 4>>
-		@@.lightcoral;$His enjoyment of pain has increased.@@
-	<<elseif random(1,100) > 50>>
-		<<set $activeSlave.fetish = "masochist", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
-		Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<= WrittenMaster($activeSlave)>> beating $him.@@
-	<</if>>
-	<</replace>>
-<</link>>
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while in pain">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You order $him to
+			<<if ($activeSlave.heels == 1) && ($activeSlave.shoes != "heels") && ($activeSlave.shoes != "boots") && ($activeSlave.shoes != "extreme heels")>>
+				kneel
+			<<elseif ($activeSlave.shoes == "heels") || ($activeSlave.shoes == "boots") || ($activeSlave.shoes == "extreme heels")>>
+				teeter
+			<<else>>
+				stand
+			<</if>>
+			with $his arms over $his head and $his legs splayed, and tell $him that if $he moves or resists $his punishment will begin again from the start.
+			<<if ($activeSlave.chastityVagina) || ($activeSlave.chastityPenis == 1)>>
+				$He was touching $his nipples and ass, so you flick and torture $his nipples and give $him a severe spanking.
+			<<elseif !canAchieveErection($activeSlave) && ($activeSlave.dick > 6)>>
+				$He was playing with $his oversized cock, so you kick and swat at the swollen monster, enjoying the way it spasms.
+			<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
+				$He was touching $his limp dick and ass, so you slap and torture $his offending dick and give $him a severe spanking.
+			<<elseif ($activeSlave.vagina == -1) && ($activeSlave.dick == 0)>>
+				$He was desperately rubbing $his perineum and anus, the most sensitive parts $he has left, so you slap that part of $him repeatedly, enjoying the way it spasms.
+			<<elseif $activeSlave.vagina == -1 || $activeSlave.clit >= 3>>
+				$He was jacking it, so you force $him to get $himself hard for punishment and then deliver a series of agonizing slaps and flicks to $his offending member.
+			<<elseif $activeSlave.labia > 1>>
+				$His generous pussylips bear a sheen of incriminating moisture, so you slap and flick them, causing $him intense agony.
+			<<else>>
+				You deliver a series of agonizing slaps to $his mons.
+			<</if>>
+			You have to start over twice. By the end, $he's managed to orgasm to all the stimulation, but $he's crying and desperately promising never to touch $himself again without your permission. $His submission to you @@.hotpink;has increased.@@
+			<<set $activeSlave.devotion += 4>>
+			<<if ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
+				<<set $activeSlave.fetishStrength += 4>>
+				@@.lightcoral;$His enjoyment of pain has increased.@@
+			<<elseif random(1,100) > 50>>
+				<<set $activeSlave.fetish = "masochist", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
+				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<= WrittenMaster($activeSlave)>> beating $him.@@
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "hates oral">>
@@ -15151,209 +15156,209 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Let $him earn a break for $his throat">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him $he's a sex slave, and that $he needs to learn how to suck dick.
-	<<if !canTalk($activeSlave) && ($activeSlave.amp != 1)>>
-		$He frantically begs with gestures, pleading on $his knees.
-	<<elseif !canTalk($activeSlave)>>
-		$He frantically mouths pleas that you leave $his throat cock-free.
-	<<else>>
-		$He begs, "Plea<<s>>e no, <<Master>>, plea<<s>>e don't rape my mouth, <<Master>>!"
-	<</if>>
-	You make a show of considering, and then tell $him that if $he's extra obedient, you might let $him earn a break for $his throat — for now.
-	<<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
-		You tell $him to lie back and spread $his legs, because you're going to give $him a good old fashioned missionary-position pounding. $He does so with unusual obedience<<if $activeSlave.belly >= 5000>>, $his legs hanging off the couch to give you a better angle with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> in the way<</if>>, and as you're giving $him a thorough pounding, whether out of relief, gratitude, or a desire to put on a good performance, $he certainly seems to be enjoying it more than usual.
-		<<= VaginalVCheck()>>
-	<<elseif canDoAnal($activeSlave) && $activeSlave.anus > 0>>
-		You tell $him to bend over and spread $his ass for you, because if $he doesn't want you going in one end you're going to go in the other. $He does so with unusual obedience, and as you
-		<<if ($activeSlave.anus == 1)>>
-			gently but firmly pound $his still-tight ass
-		<<elseif ($activeSlave.anus == 2)>>
-			pound away at $his well-used backdoor
+		You tell $him $he's a sex slave, and that $he needs to learn how to suck dick.
+		<<if !canTalk($activeSlave) && ($activeSlave.amp != 1)>>
+			$He frantically begs with gestures, pleading on $his knees.
+		<<elseif !canTalk($activeSlave)>>
+			$He frantically mouths pleas that you leave $his throat cock-free.
 		<<else>>
-			mercilessly jackhammer $his gaping hole
+			$He begs, "Plea<<s>>e no, <<Master>>, plea<<s>>e don't rape my mouth, <<Master>>!"
 		<</if>>
-		$he actively tries to match the rhythm of your thrusts.
-		<<= AnalVCheck()>>
-	<<else>>
-		You tell $him that if $he's going to hesitate to use $his mouth when
-		<<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>>
-			$he has no other hole to amuse you
-		<<elseif !canDoAnal($activeSlave) && $activeSlave.vagina == 0>>
-			$his only available hole is still virgin
-		<<elseif $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
-			all $his other holes are still virgin
-		<<elseif $activeSlave.anus == 0>>
-			$his girly little butthole is still virgin
-		<</if>>
-		$he's going to have to find an amazingly thorough way to please a dick if $he's going to earn $his throat a reprieve. $He looks<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> uncharacteristically<</if>> thoughtful for a moment before bending over before you, spitting in $his hand
-		<<if $activeSlave.vagina == 0>>
-			and thoroughly coating $his inner thighs with $his saliva.
-		<<else>>
-			and thoroughly coating the
-			<<if $activeSlave.butt <= 2>>
-				crack of $his slender
-			<<elseif $activeSlave.butt <= 4>>
-				crack of $his curvy
-			<<elseif $activeSlave.butt <= 8>>
-				crack of $his huge
-			<<elseif $activeSlave.butt <= 12>>
-				crevice of $his expansive
-			<<elseif $activeSlave.butt <= 20>>
-				ravine of $his endless
-			<</if>>
-			ass.
-		<</if>>
-		The invitation is obvious, but just to be sure $he pleads with you to satisfy yourself alongside $his
-		<<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>>
-			chastity. You answer $his pleading with your dick, and though it's not quite as pleasurable as pilfering an off-limits hole,
-			<<if $activeSlave.vagina > -1>>
-				before long $his <<if $activeSlave.vagina == 0>>virgin <</if>>cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts.
+		You make a show of considering, and then tell $him that if $he's extra obedient, you might let $him earn a break for $his throat — for now.
+		<<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
+			You tell $him to lie back and spread $his legs, because you're going to give $him a good old fashioned missionary-position pounding. $He does so with unusual obedience<<if $activeSlave.belly >= 5000>>, $his legs hanging off the couch to give you a better angle with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> in the way<</if>>, and as you're giving $him a thorough pounding, whether out of relief, gratitude, or a desire to put on a good performance, $he certainly seems to be enjoying it more than usual.
+			<<= VaginalVCheck()>>
+		<<elseif canDoAnal($activeSlave) && $activeSlave.anus > 0>>
+			You tell $him to bend over and spread $his ass for you, because if $he doesn't want you going in one end you're going to go in the other. $He does so with unusual obedience, and as you
+			<<if ($activeSlave.anus == 1)>>
+				gently but firmly pound $his still-tight ass
+			<<elseif ($activeSlave.anus == 2)>>
+				pound away at $his well-used backdoor
 			<<else>>
-				$activeSlave.slaveName's trembling whenever your thrusts slam against $his anal chastity is thoroughly entertaining.
+				mercilessly jackhammer $his gaping hole
 			<</if>>
-			Before long, you plaster $his belt with your cum.
-		<<elseif !canDoAnal($activeSlave) && $activeSlave.vagina == 0>>
-			virgin hole. You answer $his pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole, before long $his virgin cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts. Before long, you plaster $his still-virgin hole with your cum.
-		<<elseif $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
-			virgin holes. You answer $his pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole,
+			$he actively tries to match the rhythm of your thrusts.
+			<<= AnalVCheck()>>
+		<<else>>
+			You tell $him that if $he's going to hesitate to use $his mouth when
+			<<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>>
+				$he has no other hole to amuse you
+			<<elseif !canDoAnal($activeSlave) && $activeSlave.vagina == 0>>
+				$his only available hole is still virgin
+			<<elseif $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
+				all $his other holes are still virgin
+			<<elseif $activeSlave.anus == 0>>
+				$his girly little butthole is still virgin
+			<</if>>
+			$he's going to have to find an amazingly thorough way to please a dick if $he's going to earn $his throat a reprieve. $He looks<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> uncharacteristically<</if>> thoughtful for a moment before bending over before you, spitting in $his hand
 			<<if $activeSlave.vagina == 0>>
-				before long $his virgin cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts.
+				and thoroughly coating $his inner thighs with $his saliva.
 			<<else>>
-				$activeSlave.slaveName's trembling whenever your thrusts come perilously close to penetrating $his virgin ass is thoroughly entertaining.
+				and thoroughly coating the
+				<<if $activeSlave.butt <= 2>>
+					crack of $his slender
+				<<elseif $activeSlave.butt <= 4>>
+					crack of $his curvy
+				<<elseif $activeSlave.butt <= 8>>
+					crack of $his huge
+				<<elseif $activeSlave.butt <= 12>>
+					crevice of $his expansive
+				<<elseif $activeSlave.butt <= 20>>
+					ravine of $his endless
+				<</if>>
+				ass.
+			<</if>>
+			The invitation is obvious, but just to be sure $he pleads with you to satisfy yourself alongside $his
+			<<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>>
+				chastity. You answer $his pleading with your dick, and though it's not quite as pleasurable as pilfering an off-limits hole,
+				<<if $activeSlave.vagina > -1>>
+					before long $his <<if $activeSlave.vagina == 0>>virgin <</if>>cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts.
+				<<else>>
+					$activeSlave.slaveName's trembling whenever your thrusts slam against $his anal chastity is thoroughly entertaining.
+				<</if>>
+				Before long, you plaster $his belt with your cum.
+			<<elseif !canDoAnal($activeSlave) && $activeSlave.vagina == 0>>
+				virgin hole. You answer $his pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole, before long $his virgin cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts. Before long, you plaster $his still-virgin hole with your cum.
+			<<elseif $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
+				virgin holes. You answer $his pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole,
+				<<if $activeSlave.vagina == 0>>
+					before long $his virgin cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts.
+				<<else>>
+					$activeSlave.slaveName's trembling whenever your thrusts come perilously close to penetrating $his virgin ass is thoroughly entertaining.
+				<</if>>
+				Before long, you plaster $his still-virgin hole with your cum.
+			<<elseif $activeSlave.anus == 0>>
+				virgin hole. You answer $his pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole, $activeSlave.slaveName's trembling whenever your thrusts come perilously close to penetrating $his virgin ass is thoroughly entertaining. Before long, you plaster $his still-virgin hole with your cum.
 			<</if>>
-			Before long, you plaster $his still-virgin hole with your cum.
-		<<elseif $activeSlave.anus == 0>>
-			virgin hole. You answer $his pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole, $activeSlave.slaveName's trembling whenever your thrusts come perilously close to penetrating $his virgin ass is thoroughly entertaining. Before long, you plaster $his still-virgin hole with your cum.
 		<</if>>
-	<</if>>
-	When you're done, you bend down and whisper in $his ear that if $he shows any sign of rebelliousness, you'll give every dick in $arcologies[0].name free access to $his throat. @@.hotpink;$He has become more obedient,@@ in the hope this will persuade you to not follow through on your threat.
-	<<set $activeSlave.devotion += 4>>
-<</replace>>
+		When you're done, you bend down and whisper in $his ear that if $he shows any sign of rebelliousness, you'll give every dick in $arcologies[0].name free access to $his throat. @@.hotpink;$He has become more obedient,@@ in the hope this will persuade you to not follow through on your threat.
+		<<set $activeSlave.devotion += 4>>
+	<</replace>>
 <</link>>
 <br><<link "Try to brute-force $his oral resistance with a public blowbang">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Simple problems require simple solutions — $he'll get fucked in the mouth until $he either gets over $his hang-ups about oral or learns to hide them. You drag the protesting $activeSlave.slaveName out in public, chain $him low so that $his mouth is available, and tell $him that $he'll suck dicks until $he gets through five in a row without grimacing, gagging, or resisting. You have a comfortable chair brought out to you and settle in to watch the show.
-	$activeSlave.slaveName tries, $he really does. But when word gets out as to the conditions of $his enslavement, $his users take a perverse enjoyment in being rougher than usual to evoke the exact reactions $he's trying to avoid. By the third failed streak, you've started to grow bored of the spectacle, but luckily you find entertainment in conversation with those who have already been entertained by poor $activeSlave.slaveName. Before long more chairs have been brought up and an impromptu salon has been set up alongside the blowbang line. By the sixth failed streak, an enterprising citizen has set up a small bar and is serving drinks. By the ninth, you've delegated watching $activeSlave.slaveName to your assistant. You personally break the eleventh streak after $he reached four, to general acclaim from your newfound friends and a toast to your virility.
-	When the fourteenth streak is finally successful, there are serious talks about making these blowbang salons a regular occurrence and some backslapping directed towards you for your innovation in genteel hedonism. While you seriously doubt $activeSlave.slaveName enjoys oral sex any more than $he did at the start of the day, $he's certainly @@.green;learned to keep $his feelings on the matter to $himself.@@ $He did, however, @@.red;have quite a rough time@@ of it<<if $activeSlave.skill.oral <= 30>>, though $he did learn a thing or two about sucking dick.<<= SkillIncrease.Oral($activeSlave, 10)>><<else>>.<</if>> And last of all, you and $activeSlave.slaveName did make @@.green;quite a good impression@@ today, though for widely differing reasons.
-	<<set $activeSlave.health -= 10, $activeSlave.sexualFlaw = "none">>
-	<<set _oralSeed = random(65,80)>>
-	<<set $activeSlave.counter.oral += _oralSeed, $activeSlave.counter.publicUse += _oralSeed, $oralTotal += _oralSeed>>
-	<<run repX(500, "event", $activeSlave)>>
+		Simple problems require simple solutions — $he'll get fucked in the mouth until $he either gets over $his hang-ups about oral or learns to hide them. You drag the protesting $activeSlave.slaveName out in public, chain $him low so that $his mouth is available, and tell $him that $he'll suck dicks until $he gets through five in a row without grimacing, gagging, or resisting. You have a comfortable chair brought out to you and settle in to watch the show.
+		$activeSlave.slaveName tries, $he really does. But when word gets out as to the conditions of $his enslavement, $his users take a perverse enjoyment in being rougher than usual to evoke the exact reactions $he's trying to avoid. By the third failed streak, you've started to grow bored of the spectacle, but luckily you find entertainment in conversation with those who have already been entertained by poor $activeSlave.slaveName. Before long more chairs have been brought up and an impromptu salon has been set up alongside the blowbang line. By the sixth failed streak, an enterprising citizen has set up a small bar and is serving drinks. By the ninth, you've delegated watching $activeSlave.slaveName to your assistant. You personally break the eleventh streak after $he reached four, to general acclaim from your newfound friends and a toast to your virility.
+		When the fourteenth streak is finally successful, there are serious talks about making these blowbang salons a regular occurrence and some backslapping directed towards you for your innovation in genteel hedonism. While you seriously doubt $activeSlave.slaveName enjoys oral sex any more than $he did at the start of the day, $he's certainly @@.green;learned to keep $his feelings on the matter to $himself.@@ $He did, however, @@.red;have quite a rough time@@ of it<<if $activeSlave.skill.oral <= 30>>, though $he did learn a thing or two about sucking dick.<<= SkillIncrease.Oral($activeSlave, 10)>><<else>>.<</if>> And last of all, you and $activeSlave.slaveName did make @@.green;quite a good impression@@ today, though for widely differing reasons.
+		<<set $activeSlave.health -= 10, $activeSlave.sexualFlaw = "none">>
+		<<set _oralSeed = random(65,80)>>
+		<<set $activeSlave.counter.oral += _oralSeed, $activeSlave.counter.publicUse += _oralSeed, $oralTotal += _oralSeed>>
+		<<run repX(500, "event", $activeSlave)>>
 	<</replace>>
 <</link>>
 <br><<link "Teach $him to see cum as a reward">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You bring $activeSlave.slaveName into your office and stand $him in front of your leather couch. $He <<if canSee($activeSlave)>>eyes you <<elseif canHear($activeSlave)>>listens <<else>>waits silently and <</if>><<if $activeSlave.devotion < -20>>suspiciously<<else>>worriedly<</if>> as you ready a bullet vibrator.
-	<<if $activeSlave.dick > 0>>
-		You secure the bullet to $activeSlave.slaveName's frenulum.
-	<<elseif $activeSlave.vagina == -1>>
-		You secure the bullet to $his perineum.
-	<<else>>
-		You secure the bullet to $activeSlave.slaveName's clit.
-	<</if>>
-	You explain that the arcology continually monitors your vital signs, and will use them to estimate your arousal; the system controls the bullet vibrator, which will emit stimulating vibrations scaled to your pleasure. The more pleasure you feel, the more pleasant the vibrations will be, though they will not bring $him to orgasm until you climax. To demonstrate, you give the head of your cock a quick squeeze. $activeSlave.slaveName squeals in surprise at the sudden stimulation as the bullets spring to life. You tell $him to get to work. Though timid at first, as $he proceeds to blow you, $he becomes more and more enthusiastic as $his own pleasure builds. It isn't long until $he's deepthroating you enthusiastically and begging you to cum in $his mouth. You make $him hold out a bit longer, and then you complete the training session,
-	<<if $PC.balls == 3>>
-		pumping cum into $his stomach until it visibly begins to swell.
-	<<elseif $PC.balls == 2>>
-		pumping cum into $his stomach until it threatens to come back up.
-	<<elseif $PC.balls == 1>>
-		cumming into $his mouth until it spurts from $his nose.
-	<<else>>
-		filling $his mouth with your cum.
-	<</if>>
-	$He climaxes in turn, and virtually melts into a quivering mess on your floor.
-	<<if $activeSlave.dick > 0>>
-		$activeSlave.slaveName's cock oozes cum from $his intense orgasm, and you command $him to clean it off the floor before $he gets back to $his duties.
-	<</if>>
-	<<if random(1,4) == 4>>
-		@@.lightcoral;You've successfully linked cum and pleasure in $his mind,@@ guaranteeing $him a confusing few days as $he tries to reconcile this with $his hatred of oral sex.
-		<<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
-	<<else>>
-		This has @@.green;broken $him of $his bad habits.@@
-		<<set $activeSlave.sexualFlaw = "none">>
-	<</if>>
-	This demonstration of your control over $him has @@.hotpink;worn down $his resistance to your commands.@@
-	<<set $activeSlave.counter.oral++, $oralTotal++, $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>>
-<<if ($activeSlave.dick > 0) && $activeSlave.balls > 0 && ($activeSlave.belly < 1500) && $activeSlave.weight < 130>> /* won't work if too pregnant */
-<br><<link "Make $him eat $his own cum">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	Your cum training tactics have two components: Cum should be linked with pleasure, and cum should not be disgusting to $activeSlave.slaveName, because even $activeSlave.slaveName produces it. To drive home these lessons, you lead $activeSlave.slaveName to your office's leather couch, arranging $his
-	<<if $activeSlave.height < 150>>
-		petite
-	<<elseif $activeSlave.height < 160>>
-		short
-	<<elseif $activeSlave.height >= 170>>
-		tall
-	<<elseif $activeSlave.height >= 185>>
-		very tall
-	<</if>>
-	form upside down with $his head on the cushion, $his back on the backrest, and $his <<if $activeSlave.amp == 1>>stumps<<else>>legs<</if>> in the air. In this position, $his
-	<<if ($activeSlave.dick > 10)>>
-		obscene
-	<<elseif ($activeSlave.dick > 9)>>
-		inhuman
-	<<elseif ($activeSlave.dick > 8)>>
-		monstrous
-	<<elseif ($activeSlave.dick > 7)>>
-		imposing
-	<<elseif ($activeSlave.dick > 6)>>
-		massive
-	<<elseif ($activeSlave.dick > 5)>>
-		gigantic
-	<<elseif ($activeSlave.dick > 4)>>
-		huge
-	<<elseif ($activeSlave.dick > 3)>>
-		large
-	<<elseif ($activeSlave.dick > 2)>>
-		average
-	<<elseif ($activeSlave.dick > 1)>>
-		small
-	<<elseif ($activeSlave.dick > 0)>>
-		tiny
-	<</if>>
-	cock <<if $activeSlave.belly >= 100 || $activeSlave.weight > 30>>rests over $his <<if $activeSlave.pregKnown == 1>>early pregnancy<<else>>belly<</if>> and <</if>>hangs directly over $his anxious face.
-	<<if ($activeSlave.aphrodisiacs > 0) || $activeSlave.inflationType == "aphrodisiac">>
-		The aphrodisiacs in $his system already have $him so aroused $he's already dripping precum; as you approach $his vulnerable form on the couch, a drop lands on $his chin.
-	<<elseif $activeSlave.prostate > 1>>
-		$His overactive prostate has $him steadily dripping precum; as you approach $his vulnerable form on the couch, a drop lands on $his chin.
-	<<else>>
-		You sit next to $his vulnerable form on the couch as $he looks at you in anticipation.
-	<</if>>
-	You
-	<<if canDoAnal($activeSlave)>>
-		<<if ($activeSlave.anus > 2)>>
-			insert a wide vibrating plug into $his gaping anus,
-		<<elseif ($activeSlave.anus > 1)>>
-			insert a big vibrating plug into $his ass,
-		<<elseif ($activeSlave.anus > 0)>>
-			insert a vibrating plug into $his tight ass,
+		You bring $activeSlave.slaveName into your office and stand $him in front of your leather couch. $He <<if canSee($activeSlave)>>eyes you <<elseif canHear($activeSlave)>>listens <<else>>waits silently and <</if>><<if $activeSlave.devotion < -20>>suspiciously<<else>>worriedly<</if>> as you ready a bullet vibrator.
+		<<if $activeSlave.dick > 0>>
+			You secure the bullet to $activeSlave.slaveName's frenulum.
+		<<elseif $activeSlave.vagina == -1>>
+			You secure the bullet to $his perineum.
 		<<else>>
-			place a bullet vibrator over the pucker of $his virgin anus,
+			You secure the bullet to $activeSlave.slaveName's clit.
 		<</if>>
-	<<else>>
-		strap a strong vibrator to $his anal chastity,
-	<</if>>
-	secure a bullet vibrator $his quivering perineum, and another to the base of $his dick, and set them all to gradually increase the strength of their vibrations. In no time at all $he releases a
-	<<if ($activeSlave.chastityPenis == 1)>>
-		squirt of ejaculate from $his cock cage,
-	<<elseif $activeSlave.prostate > 2>>
-		torrent of nearly clear, watery ejaculate,
-	<<elseif $activeSlave.prostate == 0>>
-		pathetic dribble of semen,
-	<<elseif $activeSlave.balls > 0>>
-		torrent of thick, white semen,
-	<<else>>
-		pathetic dribble of watery ejaculate,
-	<</if>>
-	all of which lands right on $his outstretched tongue and pools in $his throat. You nudge $his chin to make $him close $his mouth and swallow. After a week of such treatment, $he @@.lightcoral;acquires a taste for semen.@@
-	<<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.devotion += 4>>
+		You explain that the arcology continually monitors your vital signs, and will use them to estimate your arousal; the system controls the bullet vibrator, which will emit stimulating vibrations scaled to your pleasure. The more pleasure you feel, the more pleasant the vibrations will be, though they will not bring $him to orgasm until you climax. To demonstrate, you give the head of your cock a quick squeeze. $activeSlave.slaveName squeals in surprise at the sudden stimulation as the bullets spring to life. You tell $him to get to work. Though timid at first, as $he proceeds to blow you, $he becomes more and more enthusiastic as $his own pleasure builds. It isn't long until $he's deepthroating you enthusiastically and begging you to cum in $his mouth. You make $him hold out a bit longer, and then you complete the training session,
+		<<if $PC.balls == 3>>
+			pumping cum into $his stomach until it visibly begins to swell.
+		<<elseif $PC.balls == 2>>
+			pumping cum into $his stomach until it threatens to come back up.
+		<<elseif $PC.balls == 1>>
+			cumming into $his mouth until it spurts from $his nose.
+		<<else>>
+			filling $his mouth with your cum.
+		<</if>>
+		$He climaxes in turn, and virtually melts into a quivering mess on your floor.
+		<<if $activeSlave.dick > 0>>
+			$activeSlave.slaveName's cock oozes cum from $his intense orgasm, and you command $him to clean it off the floor before $he gets back to $his duties.
+		<</if>>
+		<<if random(1,4) == 4>>
+			@@.lightcoral;You've successfully linked cum and pleasure in $his mind,@@ guaranteeing $him a confusing few days as $he tries to reconcile this with $his hatred of oral sex.
+			<<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
+		<<else>>
+			This has @@.green;broken $him of $his bad habits.@@
+			<<set $activeSlave.sexualFlaw = "none">>
+		<</if>>
+		This demonstration of your control over $him has @@.hotpink;worn down $his resistance to your commands.@@
+		<<set $activeSlave.counter.oral++, $oralTotal++, $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
+<<if ($activeSlave.dick > 0) && $activeSlave.balls > 0 && ($activeSlave.belly < 1500) && $activeSlave.weight < 130>> /* won't work if too pregnant */
+	<br><<link "Make $him eat $his own cum">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			Your cum training tactics have two components: Cum should be linked with pleasure, and cum should not be disgusting to $activeSlave.slaveName, because even $activeSlave.slaveName produces it. To drive home these lessons, you lead $activeSlave.slaveName to your office's leather couch, arranging $his
+			<<if $activeSlave.height < 150>>
+				petite
+			<<elseif $activeSlave.height < 160>>
+				short
+			<<elseif $activeSlave.height >= 170>>
+				tall
+			<<elseif $activeSlave.height >= 185>>
+				very tall
+			<</if>>
+			form upside down with $his head on the cushion, $his back on the backrest, and $his <<if $activeSlave.amp == 1>>stumps<<else>>legs<</if>> in the air. In this position, $his
+			<<if ($activeSlave.dick > 10)>>
+				obscene
+			<<elseif ($activeSlave.dick > 9)>>
+				inhuman
+			<<elseif ($activeSlave.dick > 8)>>
+				monstrous
+			<<elseif ($activeSlave.dick > 7)>>
+				imposing
+			<<elseif ($activeSlave.dick > 6)>>
+				massive
+			<<elseif ($activeSlave.dick > 5)>>
+				gigantic
+			<<elseif ($activeSlave.dick > 4)>>
+				huge
+			<<elseif ($activeSlave.dick > 3)>>
+				large
+			<<elseif ($activeSlave.dick > 2)>>
+				average
+			<<elseif ($activeSlave.dick > 1)>>
+				small
+			<<elseif ($activeSlave.dick > 0)>>
+				tiny
+			<</if>>
+			cock <<if $activeSlave.belly >= 100 || $activeSlave.weight > 30>>rests over $his <<if $activeSlave.pregKnown == 1>>early pregnancy<<else>>belly<</if>> and <</if>>hangs directly over $his anxious face.
+			<<if ($activeSlave.aphrodisiacs > 0) || $activeSlave.inflationType == "aphrodisiac">>
+				The aphrodisiacs in $his system already have $him so aroused $he's already dripping precum; as you approach $his vulnerable form on the couch, a drop lands on $his chin.
+			<<elseif $activeSlave.prostate > 1>>
+				$His overactive prostate has $him steadily dripping precum; as you approach $his vulnerable form on the couch, a drop lands on $his chin.
+			<<else>>
+				You sit next to $his vulnerable form on the couch as $he looks at you in anticipation.
+			<</if>>
+			You
+			<<if canDoAnal($activeSlave)>>
+				<<if ($activeSlave.anus > 2)>>
+					insert a wide vibrating plug into $his gaping anus,
+				<<elseif ($activeSlave.anus > 1)>>
+					insert a big vibrating plug into $his ass,
+				<<elseif ($activeSlave.anus > 0)>>
+					insert a vibrating plug into $his tight ass,
+				<<else>>
+					place a bullet vibrator over the pucker of $his virgin anus,
+				<</if>>
+			<<else>>
+				strap a strong vibrator to $his anal chastity,
+			<</if>>
+			secure a bullet vibrator $his quivering perineum, and another to the base of $his dick, and set them all to gradually increase the strength of their vibrations. In no time at all $he releases a
+			<<if ($activeSlave.chastityPenis == 1)>>
+				squirt of ejaculate from $his cock cage,
+			<<elseif $activeSlave.prostate > 2>>
+				torrent of nearly clear, watery ejaculate,
+			<<elseif $activeSlave.prostate == 0>>
+				pathetic dribble of semen,
+			<<elseif $activeSlave.balls > 0>>
+				torrent of thick, white semen,
+			<<else>>
+				pathetic dribble of watery ejaculate,
+			<</if>>
+			all of which lands right on $his outstretched tongue and pools in $his throat. You nudge $his chin to make $him close $his mouth and swallow. After a week of such treatment, $he @@.lightcoral;acquires a taste for semen.@@
+			<<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 /*Written by anon, coded by Boney M*/
@@ -15363,7 +15368,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Let $him be">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Satisfied that there's no need for immediate intervention, you head back to your desk. A few minutes later, $he heads in to finish getting ready and get to work, saving $assistantName the necessity of directing $him. As the broken slave passes your office, you think for a moment that you see a bit of moisture glinting in $his eyes, but soon correct yourself: it's just a reflection from the glass walls of the arcology. $He makes it to $his assignment on time, and no one notices anything unusual about $him today.
+		Satisfied that there's no need for immediate intervention, you head back to your desk. A few minutes later, $he heads in to finish getting ready and get to work, saving $assistantName the necessity of directing $him. As the broken slave passes your office, you think for a moment that you see a bit of moisture glinting in $his eyes, but soon correct yourself: it's just a reflection from the glass walls of the arcology. $He makes it to $his assignment on time, and no one notices anything unusual about $him today.
 	<</replace>>
 	<<if $activeSlave.relationship == -3>>
 		<<if def $activeSlave.kindness>>
@@ -15372,134 +15377,134 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 	<</if>>
 <</link>>
 <<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
-<br><<link "See if an orgasm will cheer $him up">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You<<if $PC.dick == 0>> don a strap-on and<</if>> slide your hands around $his
-	<<if $activeSlave.belly >= 150000>>
-		_belly distended
-	<<elseif $activeSlave.weight > 95>>
-		fat
-	<<elseif $activeSlave.belly >= 5000>>
-		<<if $activeSlave.bellyPreg >= 3000>>
-			pregnancy swollen
-		<<elseif $activeSlave.bellyImplant >= 3000>>
-			implant swollen
-		<<else>>
-			<<print $activeSlave.inflationType>>-bloated
-		<</if>>
-	<<elseif $activeSlave.weight > 30>>
-		pudgy
-	<<elseif $activeSlave.waist < -95>>
-		cartoonishly narrow
-	<<elseif $activeSlave.muscles > 30>>
-		ripped
-	<<elseif $activeSlave.waist < -10>>
-		wasp
-	<<elseif $activeSlave.weight > 10>>
-		soft
-	<<elseif $activeSlave.muscles > 5>>
-		toned
-	<<elseif $activeSlave.weight >= -10>>
-		trim
-	<<else>>
-		skinny
-	<</if>>
-	waist, feeling the warmth of $his skin, and gently step forward until $he's between you and the balcony railing. $He is silently obedient, not reacting at all other than to obey your direction as to where $he should go. For example, when $he feels <<if $PC.dick == 0>>the phallus<<else>>your hardening dick<</if>> pressing against $him, $he
-	<<if ($activeSlave.height >= 170)>>
-		unconsciously bends forward a little and cocks $his hips to position $himself
-	<<else>>
-		rises up on the balls of $his feet to bring $his short body up to the right height
-	<</if>>
-	<<if canDoVaginal($activeSlave)>>
-		for penetration. $His
-		<<if ($activeSlave.vagina > 2)>>
-			loose cunt
-		<<elseif ($activeSlave.vagina > 1)>>
-			pussy
-		<<else>>
-			tight little pussy
-		<</if>>
-		is already moist in expectation, making entry easy.
-		<<= VaginalVCheck()>>
-	<<else>>
-		for anal. $He relaxes $his
-		<<if ($activeSlave.anus > 2)>>
-			loose anus
-		<<elseif ($activeSlave.anus > 1)>>
-			asshole
-		<<else>>
-			tight little asshole
-		<</if>>
-		completely, making entry easy.
-		<<= AnalVCheck()>>
-	<</if>>
-	Your hands rove, teasing $his $activeSlave.nipples nipples,
-	<<if ($activeSlave.boobs > 1000)>>
-		hefting $his heavy tits,
-	<<elseif ($activeSlave.boobs > 300)>>
-		squeezing $his healthy breasts,
-	<<else>>
-		pressing $him flat chest,
-	<</if>>
-	<<if $activeSlave.belly >= 1500>>
-		massaging $his rounded belly<<if $activeSlave.belly > 10000>> and fondling $his popped navel<</if>>.
-	<<else>>
-		and
-		<<if $activeSlave.weight > 130>>
-			groping $his huge gut.
-		<<elseif $activeSlave.weight > 95>>
-			groping $his fat belly.
-		<<elseif $activeSlave.muscles > 30>>
-			fondling $his abs.
-		<<elseif $activeSlave.weight > 10>>
-			groping $his plush belly.
-		<<else>>
-			fondling $his flat stomach.
-		<</if>>
-	<</if>>
-	$His face is complacent and unaffected even as $his body responds,
-	<<if ($activeSlave.chastityPenis == 1)>>
-		since $his body is used to its caged cock being neglected in favor of $his <<if $activeSlave.vagina > -1>>pussy<<else>>asspussy<</if>>.
-	<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
-		$his useless dick sporting a drop of precum.
-	<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0 || $activeSlave.ballType == "sterile")>>
-		$his soft dick twitching feebly.
-	<<elseif $activeSlave.dick > 4>>
-		$his giant penis protruding through a gap in the railing.
-	<<elseif $activeSlave.dick > 2>>
-		$his penis pressing hard against the railing.
-	<<elseif $activeSlave.dick > 0>>
-		$his pathetic hard-on barely protruding from between $his thighs.
-	<<elseif $activeSlave.clit > 0>>
-		$his huge clit stiff under a brush from your fingers.
-	<<elseif $activeSlave.vagina == -1>>
-		$his asspussy ready and relaxed under a brush from your fingers.
-	<<else>>
-		$his pussy warm and wet under a brush from your fingers.
-	<</if>>
-	Even $his eventual orgasm is entirely mechanical, a simple tightening of $his
-	<<if canDoVaginal($activeSlave)>>
-		<<if ($activeSlave.vagina > 2)>>
-			gaping cunt,
-		<<elseif ($activeSlave.vagina > 1)>>
-			traveled pussy,
-		<<else>>
-			tight vagina,
-		<</if>>
-	<<else>>
-		<<if ($activeSlave.anus > 2)>>
-			gaping
-		<<elseif ($activeSlave.anus > 1)>>
-			loosened
-		<<else>>
-			tight
-		<</if>>
-		sphincter,
-	<</if>>
-	a gasp of air into $his lungs, and a slight shiver. There is a flaw at the corner of $his mouth that might be transitory pleasure, but a look <<if canSee($activeSlave)>>into $his eyes<<else>>at $his face<</if>> confirms that it is not so.
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<br><<link "See if an orgasm will cheer $him up">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You<<if $PC.dick == 0>> don a strap-on and<</if>> slide your hands around $his
+			<<if $activeSlave.belly >= 150000>>
+				_belly distended
+			<<elseif $activeSlave.weight > 95>>
+				fat
+			<<elseif $activeSlave.belly >= 5000>>
+				<<if $activeSlave.bellyPreg >= 3000>>
+					pregnancy swollen
+				<<elseif $activeSlave.bellyImplant >= 3000>>
+					implant swollen
+				<<else>>
+					<<print $activeSlave.inflationType>>-bloated
+				<</if>>
+			<<elseif $activeSlave.weight > 30>>
+				pudgy
+			<<elseif $activeSlave.waist < -95>>
+				cartoonishly narrow
+			<<elseif $activeSlave.muscles > 30>>
+				ripped
+			<<elseif $activeSlave.waist < -10>>
+				wasp
+			<<elseif $activeSlave.weight > 10>>
+				soft
+			<<elseif $activeSlave.muscles > 5>>
+				toned
+			<<elseif $activeSlave.weight >= -10>>
+				trim
+			<<else>>
+				skinny
+			<</if>>
+			waist, feeling the warmth of $his skin, and gently step forward until $he's between you and the balcony railing. $He is silently obedient, not reacting at all other than to obey your direction as to where $he should go. For example, when $he feels <<if $PC.dick == 0>>the phallus<<else>>your hardening dick<</if>> pressing against $him, $he
+			<<if ($activeSlave.height >= 170)>>
+				unconsciously bends forward a little and cocks $his hips to position $himself
+			<<else>>
+				rises up on the balls of $his feet to bring $his short body up to the right height
+			<</if>>
+			<<if canDoVaginal($activeSlave)>>
+				for penetration. $His
+				<<if ($activeSlave.vagina > 2)>>
+					loose cunt
+				<<elseif ($activeSlave.vagina > 1)>>
+					pussy
+				<<else>>
+					tight little pussy
+				<</if>>
+				is already moist in expectation, making entry easy.
+				<<= VaginalVCheck()>>
+			<<else>>
+				for anal. $He relaxes $his
+				<<if ($activeSlave.anus > 2)>>
+					loose anus
+				<<elseif ($activeSlave.anus > 1)>>
+					asshole
+				<<else>>
+					tight little asshole
+				<</if>>
+				completely, making entry easy.
+				<<= AnalVCheck()>>
+			<</if>>
+			Your hands rove, teasing $his $activeSlave.nipples nipples,
+			<<if ($activeSlave.boobs > 1000)>>
+				hefting $his heavy tits,
+			<<elseif ($activeSlave.boobs > 300)>>
+				squeezing $his healthy breasts,
+			<<else>>
+				pressing $him flat chest,
+			<</if>>
+			<<if $activeSlave.belly >= 1500>>
+				massaging $his rounded belly<<if $activeSlave.belly > 10000>> and fondling $his popped navel<</if>>.
+			<<else>>
+				and
+				<<if $activeSlave.weight > 130>>
+					groping $his huge gut.
+				<<elseif $activeSlave.weight > 95>>
+					groping $his fat belly.
+				<<elseif $activeSlave.muscles > 30>>
+					fondling $his abs.
+				<<elseif $activeSlave.weight > 10>>
+					groping $his plush belly.
+				<<else>>
+					fondling $his flat stomach.
+				<</if>>
+			<</if>>
+			$His face is complacent and unaffected even as $his body responds,
+			<<if ($activeSlave.chastityPenis == 1)>>
+				since $his body is used to its caged cock being neglected in favor of $his <<if $activeSlave.vagina > -1>>pussy<<else>>asspussy<</if>>.
+			<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
+				$his useless dick sporting a drop of precum.
+			<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0 || $activeSlave.ballType == "sterile")>>
+				$his soft dick twitching feebly.
+			<<elseif $activeSlave.dick > 4>>
+				$his giant penis protruding through a gap in the railing.
+			<<elseif $activeSlave.dick > 2>>
+				$his penis pressing hard against the railing.
+			<<elseif $activeSlave.dick > 0>>
+				$his pathetic hard-on barely protruding from between $his thighs.
+			<<elseif $activeSlave.clit > 0>>
+				$his huge clit stiff under a brush from your fingers.
+			<<elseif $activeSlave.vagina == -1>>
+				$his asspussy ready and relaxed under a brush from your fingers.
+			<<else>>
+				$his pussy warm and wet under a brush from your fingers.
+			<</if>>
+			Even $his eventual orgasm is entirely mechanical, a simple tightening of $his
+			<<if canDoVaginal($activeSlave)>>
+				<<if ($activeSlave.vagina > 2)>>
+					gaping cunt,
+				<<elseif ($activeSlave.vagina > 1)>>
+					traveled pussy,
+				<<else>>
+					tight vagina,
+				<</if>>
+			<<else>>
+				<<if ($activeSlave.anus > 2)>>
+					gaping
+				<<elseif ($activeSlave.anus > 1)>>
+					loosened
+				<<else>>
+					tight
+				<</if>>
+				sphincter,
+			<</if>>
+			a gasp of air into $his lungs, and a slight shiver. There is a flaw at the corner of $his mouth that might be transitory pleasure, but a look <<if canSee($activeSlave)>>into $his eyes<<else>>at $his face<</if>> confirms that it is not so.
+		<</replace>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 
 <<case "masterful entertainer">>
@@ -15507,53 +15512,53 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Go clubbing">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing glitzy heels, an extremely short skirt<<if $activeSlave.belly >= 5000>> barely noticeable under $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, and a string bikini top so brief that $his areolae are clearly visible. As you descend through $arcologies[0].name the beats get faster and the drops get heavier. By the time you reach the club where the Free Cities' hottest DJ has a show tonight, $activeSlave.slaveName is a whirlwind of sexual energy in motion, moving <<if canHear($activeSlave)>>with every beat<<else>>wildly<</if>> and catching every eye<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>, despite how far along $he is<<elseif $activeSlave.belly >= 5000 || $activeSlave.weight > 130>>, despite how big $he is<</if>>. $His skills could have half the club lining up to fuck $him for money, but tonight $he's all yours. The entire floor is envious of you as the night wears on and $his dancing turns into sexually servicing you<<if canHear($activeSlave)>> in time with the music<</if>>.
-	<<if ($activeSlave.chastityPenis == 1)>>
-		The smell of $his pre-cum is noticeable even over the stink of sweat.
-	<<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
-		$His tiny skirt does nothing to hide $his erection.
-	<<elseif ($activeSlave.clit > 0)>>
-		$His tiny skirt displays $his big, engorged clit.
-	<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-		$His arched back and cocked hips make it very clear that $he wants $his asspussy fucked.
-	<<else>>
-		The smell of $his arousal is noticeable even over the stink of sweat.
-	<</if>>
-	<<if ($activeSlave.boobs > 1000)>>
-		$His breasts get groped and mauled all night.
-	<<elseif ($activeSlave.butt > 5)>>
-		$He grinds $his ass against your crotch all night.
-	<<else>>
-		Cum joins the sweat running off $him.
-	<</if>>
-	The crowd is duly impressed; @@.green;your reputation has increased.@@
-	<<run repX(500, "event", $activeSlave)>>
+		You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing glitzy heels, an extremely short skirt<<if $activeSlave.belly >= 5000>> barely noticeable under $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, and a string bikini top so brief that $his areolae are clearly visible. As you descend through $arcologies[0].name the beats get faster and the drops get heavier. By the time you reach the club where the Free Cities' hottest DJ has a show tonight, $activeSlave.slaveName is a whirlwind of sexual energy in motion, moving <<if canHear($activeSlave)>>with every beat<<else>>wildly<</if>> and catching every eye<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>, despite how far along $he is<<elseif $activeSlave.belly >= 5000 || $activeSlave.weight > 130>>, despite how big $he is<</if>>. $His skills could have half the club lining up to fuck $him for money, but tonight $he's all yours. The entire floor is envious of you as the night wears on and $his dancing turns into sexually servicing you<<if canHear($activeSlave)>> in time with the music<</if>>.
+		<<if ($activeSlave.chastityPenis == 1)>>
+			The smell of $his pre-cum is noticeable even over the stink of sweat.
+		<<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
+			$His tiny skirt does nothing to hide $his erection.
+		<<elseif ($activeSlave.clit > 0)>>
+			$His tiny skirt displays $his big, engorged clit.
+		<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+			$His arched back and cocked hips make it very clear that $he wants $his asspussy fucked.
+		<<else>>
+			The smell of $his arousal is noticeable even over the stink of sweat.
+		<</if>>
+		<<if ($activeSlave.boobs > 1000)>>
+			$His breasts get groped and mauled all night.
+		<<elseif ($activeSlave.butt > 5)>>
+			$He grinds $his ass against your crotch all night.
+		<<else>>
+			Cum joins the sweat running off $him.
+		<</if>>
+		The crowd is duly impressed; @@.green;your reputation has increased.@@
+		<<run repX(500, "event", $activeSlave)>>
 	<</replace>>
 <</link>>
 <<if $activeSlave.belly < 15000>>
-<br><<link "Attend a milonga">>
+	<br><<link "Attend a milonga">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing classy heels and a gorgeous long dress cunningly designed to adhere to $him while $he dances despite the fact that it displays all of one leg, $his entire back<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, cleavage, and the sides of both breasts. $He has $his hair up in a perfect bun accented with a spray of the latest jewelry, and is wearing severe makeup that makes $him look aristocratic and elegant by turns. The host of the milonga, an old-world tango enthusiast, knows well the social graces and invites you, as the most prominent attendee, to perform the traditional demonstration tango that begins the dance. It goes wonderfully, and the entire party sighs in appreciation as you perform the classic tango. You lower $activeSlave.slaveName<<if $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>'s heavy body<</if>> gracefully and pull $him back up into a close embrace, and breath catches in more than one throat. As tradition dictates $he dances with many partners throughout the night. One concession to Free Cities sensibilities is that the male and female roles in the tango may be filled by anyone, and $activeSlave.slaveName switches flawlessly between playing the female role to the elderly host one dance and the male role to his teenage granddaughter the next. The poor girl spends the rest of the evening staring at $activeSlave.slaveName with $his tongue tied. Whoever $activeSlave.slaveName dances with, $he always subtly shows by glance and gesture that it's you $he truly wants. Everyone is quite envious of you; @@.green;your reputation has increased.@@
+			<<run repX(500, "event", $activeSlave)>>
+		<</replace>>
+	<</link>>
+<</if>>
+<br><<link "Never mind Friday night; the moon's out and it's romantic on the balcony">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing classy heels and a gorgeous long dress cunningly designed to adhere to $him while $he dances despite the fact that it displays all of one leg, $his entire back<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, cleavage, and the sides of both breasts. $He has $his hair up in a perfect bun accented with a spray of the latest jewelry, and is wearing severe makeup that makes $him look aristocratic and elegant by turns. The host of the milonga, an old-world tango enthusiast, knows well the social graces and invites you, as the most prominent attendee, to perform the traditional demonstration tango that begins the dance. It goes wonderfully, and the entire party sighs in appreciation as you perform the classic tango. You lower $activeSlave.slaveName<<if $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>'s heavy body<</if>> gracefully and pull $him back up into a close embrace, and breath catches in more than one throat. As tradition dictates $he dances with many partners throughout the night. One concession to Free Cities sensibilities is that the male and female roles in the tango may be filled by anyone, and $activeSlave.slaveName switches flawlessly between playing the female role to the elderly host one dance and the male role to his teenage granddaughter the next. The poor girl spends the rest of the evening staring at $activeSlave.slaveName with $his tongue tied. Whoever $activeSlave.slaveName dances with, $he always subtly shows by glance and gesture that it's you $he truly wants. Everyone is quite envious of you; @@.green;your reputation has increased.@@
-	<<run repX(500, "event", $activeSlave)>>
-	<</replace>>
-<</link>>
-<</if>>
-<br><<link "Never mind Friday night, the moon's out and it's romantic on the balcony">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door absolutely naked<<if $activeSlave.bellyPreg >= 1500>>, $his motherly body on full display<</if>>. $He has half a question on $his face, wondering whether this is going too far, but it vanishes when you <<if canSee($activeSlave)>>smile reassuringly at<<else>>compliment<</if>> $him. You take $him by the hand and lead $him out onto the private balcony outside your office. It's a cloudless night, and the moon is full. You order the arcology to play a classic dance medley, and $activeSlave.slaveName becomes all innocence and grace, the perfect dance partner<<if $activeSlave.bellyPreg >= 10000>>, despite $his heavy pregnancy<<elseif $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>, despite $his weight<</if>>. The only real consequence of $his nudity is
-	<<if $activeSlave.boobs >= 300>>
-		the extra sway of $his breasts,
-	<</if>>
-	<<if canPenetrate($activeSlave)>>
-		$his visible erection, and
-	<<elseif ($activeSlave.clit > 0)>>
-		$his visibly engorged clit and
-	<<elseif $activeSlave.boobs >= 300>>
-		and
-	<</if>>
-	<<if $activeSlave.nipples != "fuckable">>the hardness of $his nipples<<else>>how swollen $his nipples are<</if>> in the cool night when the dance brings you close. $He enjoys $himself immensely and in no time at all, $he's meekly asking you to take $him inside and dance with $him on the bed. Naturally, you oblige.
+		You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door absolutely naked<<if $activeSlave.bellyPreg >= 1500>>, $his motherly body on full display<</if>>. $He has half a question on $his face, wondering whether this is going too far, but it vanishes when you <<if canSee($activeSlave)>>smile reassuringly at<<else>>compliment<</if>> $him. You take $him by the hand and lead $him out onto the private balcony outside your office. It's a cloudless night, and the moon is full. You order the arcology to play a classic dance medley, and $activeSlave.slaveName becomes all innocence and grace, the perfect dance partner<<if $activeSlave.bellyPreg >= 10000>>, despite $his heavy pregnancy<<elseif $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>, despite $his weight<</if>>. The only real consequence of $his nudity is
+		<<if $activeSlave.boobs >= 300>>
+			the extra sway of $his breasts,
+		<</if>>
+		<<if canPenetrate($activeSlave)>>
+			$his visible erection, and
+		<<elseif ($activeSlave.clit > 0)>>
+			$his visibly engorged clit and
+		<<elseif $activeSlave.boobs >= 300>>
+			and
+		<</if>>
+		<<if $activeSlave.nipples != "fuckable">>the hardness of $his nipples<<else>>how swollen $his nipples are<</if>> in the cool night when the dance brings you close. $He enjoys $himself immensely and in no time at all, $he's meekly asking you to take $him inside and dance with $him on the bed. Naturally, you oblige.
 	<</replace>>
 	<<set $activeSlave.devotion += 3, $activeSlave.trust += 3>>
 	<<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>>
@@ -15571,154 +15576,50 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 		<<set $activeSlave.counter.oral++, $oralTotal++>>
 	<</if>>
 	$His @@.hotpink;devotion to you@@ and @@.mediumaquamarine;trust in you@@ have increased.
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 
 <<case "masterful whore">>
 
 <<link "Require double repayment">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Your tenant knows that abject surrender is his only hope once you make it clear to him that his scheme is known to you. He complies all too eagerly with your demand that he @@.yellowgreen;repay double what he owes.@@
-	<<run cashX(random(150,200)*10, "event", $activeSlave)>>
+		Your tenant knows that abject surrender is his only hope once you make it clear to him that his scheme is known to you. He complies all too eagerly with your demand that he @@.yellowgreen;repay double what he owes.@@
+		<<run cashX(random(150,200)*10, "event", $activeSlave)>>
 	<</replace>>
 <</link>>
 <br><<link "Require double repayment and spend it on $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Your tenant knows that abject surrender is his only hope once you make it clear to him that his scheme is known to you. He complies all too eagerly with your demand that he repay double what he owes. Slaves are not permitted to keep possessions, especially money, so you spend it on $activeSlave.slaveName directly. $He spends the day <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>having $his pregnant belly moisturized, $his tired feet rubbed, $his cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take $him out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex.
-	<<set $activeSlave.devotion += 10>>
+		Your tenant knows that abject surrender is his only hope once you make it clear to him that his scheme is known to you. He complies all too eagerly with your demand that he repay double what he owes. Slaves are not permitted to keep possessions, especially money, so you spend it on $activeSlave.slaveName directly. $He spends the day <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>having $his pregnant belly moisturized, $his tired feet rubbed, $his cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take $him out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex.
+		<<set $activeSlave.devotion += 10>>
 	<</replace>>
 <</link>>
 <br><<link "Leverage the situation and reward $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Archimedes might have his lever, but give you a place to set such information as this, and you can move a mountain of money. Before he knows what has beset him, your tenant is bustled out of $arcologies[0].name and replaced by a favored and hopefully more honest competitor, who @@.green;is well aware of the score here.@@ $activeSlave.slaveName, who made this possible, spends the day <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>having $his pregnant belly moisturized, $his tired feet rubbed, $his cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take $him out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex, and $he @@.mediumaquamarine;trusts you@@ with all sorts of amusing whorehouse rumors.
-	<<set $activeSlave.devotion += 3, $activeSlave.trust += 3>>
-	<<run cashX(-2000, "event", $activeSlave)>>
-	<<set $arcologies[0].prosperity += 1>>
+		Archimedes might have his lever, but give you a place to set such information as this, and you can move a mountain of money. Before he knows what has beset him, your tenant is bustled out of $arcologies[0].name and replaced by a favored and hopefully more honest competitor, who @@.green;is well aware of the score here.@@ $activeSlave.slaveName, who made this possible, spends the day <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>having $his pregnant belly moisturized, $his tired feet rubbed, $his cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take $him out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex, and $he @@.mediumaquamarine;trusts you@@ with all sorts of amusing whorehouse rumors.
+		<<set $activeSlave.devotion += 3, $activeSlave.trust += 3>>
+		<<run cashX(forceNeg(2000), "event", $activeSlave)>>
+		<<set $arcologies[0].prosperity += 1>>
 	<</replace>>
-<</link>> //This will cost <<print cashFormat(2000)>>//
+<</link>> //This option will cost <<print cashFormat(2000)>>//
 
 <<case "sleeping ambivalent">>
 
 <<link "Grope $his boob">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$His eyes fly open as $he feels someone groping $him.
-	<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
-		You're mauling $his fake boob, squeezing it and making the skin of $his breast, which is already stretched rather taut by the implant, stretch a bit farther.
-	<<elseif $activeSlave.boobs > 3000>>
-		You're hefting and massaging $his mass of breastflesh, playing with $his <<if ($activeSlave.boobsImplant/$activeSlave.boobs) < .60>>mostly <</if>>natural boob, making $his huge soft udder bounce and jiggle.
-	<<elseif $activeSlave.lactation > 0>>
-		You're kneading and massaging $his udder, and the milk begins to <<if $activeSlave.nipples != "fuckable">>bead at<<else>>leak from<</if>> the cow's nipple.
-	<<elseif $activeSlave.boobs > 300>>
-		You've got $his whole tit in your hands, jiggling and squeezing the entire thing.
-	<<else>>
-		You're massaging and squeezing $his flat chest.
-	<</if>>
-	$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
-	<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
-		Though $he's smart,
-	<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
-		Though $he's not dumb,
-	<<else>>
-		$He's an idiot, and
-	<</if>>
-	in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by
-	<<switch $activeSlave.nipples>>
-	<<case "inverted">>
-		painfully protruding $his fully inverted nipple. $He puts up with even that, though $he cries a little as it pops out.
-	<<case "partially inverted">>
-		painfully protruding $his partially inverted nipple. $He puts up with that, too, though $he winces as it pops out.
-	<<case "huge">>
-		rolling $his huge nipple between a thumb and forefinger, hard enough to hurt. $He accepts the mammary abuse.
-	<<case "fuckable">>
-		forcing your entire fist into $his nipple. $He accepts the stimulation as best $he can.
-	<<default>>
-		playing with $his nipple, pinching it hard enough to hurt. $He accepts the mammary abuse.
-	<</switch>>
-	Satisfied, you leave $him to get back to sleep as best $he can.
-	<<set $activeSlave.devotion += 4>>
-	<<if $activeSlave.lactation > 0>>
-		<<set $activeSlave.lactationDuration = 2>>
-		<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
-	<</if>>
-	<</replace>>
-<</link>>
-<<if $activeSlave.belly >= 5000 || $activeSlave.weight > 30>>
-<br><<link "Rub $his Belly">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	<<if $activeSlave.bellyPreg >= 5000>>
-		$His eyes fly open as soon as $he feels someone touching $his _belly, life-rounded, stomach.
-		<<if $activeSlave.weight > 10>>
-			You're massaging and teasing $his huge, soft belly.
-		<<elseif $activeSlave.muscles > 5>>
-			You're massaging and teasing $his taut belly and ruined abs.
-		<<else>>
-			You're massaging and teasing $his taut belly.
-		<</if>>
-		$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
-		<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
-			Though $he's smart,
-		<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
-			Though $he's not dumb,
-		<<else>>
-			$He's an idiot, and
-		<</if>>
-		in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by
-		<<if $activeSlave.weight > 10>>
-			sinking your hands into $his fat to get a good feel of the life growing within.
-		<<else>>
-			feeling for the life growing within $him.
-		<</if>>
-		<<if $activeSlave.weight > 30>>
-			Though it takes some groping before you are met with a kick from $his unborn child.
-		<<elseif $activeSlave.pregType < 3>>
-			It doesn't take long before you are met with a kick from $his unborn child.
-		<<else>>
-			$He is so full of children that your ministrations are met with a hail of motion.
-		<</if>>
-		<<if $activeSlave.pregSource == -1>>Smiling at how active your children are<<else>>Satisfied<</if>>,
-	<<elseif $activeSlave.bellyImplant >= 5000>>
-		$His eyes fly open as soon as $he feels someone touching $his _belly stomach.
-		<<if $activeSlave.weight > 10>>
-			You're massaging and teasing $his huge, soft belly.
-		<<elseif $activeSlave.muscles > 5>>
-			You're massaging and teasing $his taut belly and ruined abs.
-		<<else>>
-			You're massaging and teasing $his taut belly.
-		<</if>>
-		$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
-		<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
-			Though $he's smart,
-		<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
-			Though $he's not dumb,
-		<<else>>
-			$He's an idiot, and
-		<</if>>
-		in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by
-		<<if $activeSlave.weight > 10>>
-			sinking your hands into $his fat to get a good feel of the implant hidden within.
-		<<else>>
-			feeling up the implant within $him.
-		<</if>>
-		<<if $activeSlave.weight > 30>>
-			Though it takes some groping before you locate the firm sphere.
-		<<elseif $activeSlave.belly < 10000>>
-			It doesn't take long for you to have a solid grip on the firm sphere.
-		<<else>>
-			It's so huge it's hard to miss, but that just gives you more room to poke and prod at.
-		<</if>>
-		Satisfied,
-	<<elseif $activeSlave.bellyFluid >= 5000>>
-		$His eyes fly open as soon as $he feels someone touching $his _belly, <<print $activeSlave.inflationType>>-filled stomach.
-		<<if $activeSlave.weight > 10>>
-			You're massaging and jiggling $his huge, soft belly, enjoying the sounds it makes as you move it.
-		<<elseif $activeSlave.muscles > 5>>
-			You're massaging and jiggling $his taut belly and stretched abs, enjoying the sounds it makes as you move it.
+		$His eyes fly open as $he feels someone groping $him.
+		<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
+			You're mauling $his fake boob, squeezing it and making the skin of $his breast, which is already stretched rather taut by the implant, stretch a bit farther.
+		<<elseif $activeSlave.boobs > 3000>>
+			You're hefting and massaging $his mass of breastflesh, playing with $his <<if ($activeSlave.boobsImplant/$activeSlave.boobs) < .60>>mostly <</if>>natural boob, making $his huge soft udder bounce and jiggle.
+		<<elseif $activeSlave.lactation > 0>>
+			You're kneading and massaging $his udder, and the milk begins to <<if $activeSlave.nipples != "fuckable">>bead at<<else>>leak from<</if>> the cow's nipple.
+		<<elseif $activeSlave.boobs > 300>>
+			You've got $his whole tit in your hands, jiggling and squeezing the entire thing.
 		<<else>>
-			You're massaging and jiggling $his taut belly, enjoying the sounds it makes as you move it.
+			You're massaging and squeezing $his flat chest.
 		<</if>>
 		$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
 		<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
@@ -15729,80 +15630,184 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 			$He's an idiot, and
 		<</if>>
 		in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by
-		<<if $activeSlave.weight > 10>>
-			sinking your hands into $his fat to get a good grip
-		<<else>>
-			wrapping your hands around the sloshing globe
-		<</if>>
-		and vigorously shaking. As $his gut's groaning from the sudden shift of its contents dies down, you gently apply pressure to the bloated organ, careful to only cause $his discomfort and not to disgorge $his contents. Satisfied,
-	<<else>>
-		$His eyes fly open as soon as $he feels someone touching $his
-		<<if $activeSlave.weight > 190>>
-			expansive belly. You're massaging and jiggling $his obscene gut while teasing $his many folds and struggling to find $his belly button.
-		<<elseif $activeSlave.weight > 160>>
-			massive, soft belly. You're massaging and jiggling $his obscene gut while teasing $his many folds and hidden belly button.
-		<<elseif $activeSlave.weight > 130>>
-			huge, soft belly. You're massaging and jiggling $his thick gut while teasing $his folds and hidden belly button.
-		<<elseif $activeSlave.weight > 95>>
-			big soft belly. You're massaging and jiggling $his gut while teasing $his folds and hidden belly button.
-		<<else>>
-			chubby middle. You're massaging and jiggling $his tiny gut.
-		<</if>>
-		$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
-		<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
-			Though $he's smart,
-		<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
-			Though $he's not dumb,
-		<<else>>
-			$He's an idiot, and
+		<<switch $activeSlave.nipples>>
+		<<case "inverted">>
+			painfully protruding $his fully inverted nipple. $He puts up with even that, though $he cries a little as it pops out.
+		<<case "partially inverted">>
+			painfully protruding $his partially inverted nipple. $He puts up with that, too, though $he winces as it pops out.
+		<<case "huge">>
+			rolling $his huge nipple between a thumb and forefinger, hard enough to hurt. $He accepts the mammary abuse.
+		<<case "fuckable">>
+			forcing your entire fist into $his nipple. $He accepts the stimulation as best $he can.
+		<<default>>
+			playing with $his nipple, pinching it hard enough to hurt. $He accepts the mammary abuse.
+		<</switch>>
+		Satisfied, you leave $him to get back to sleep as best $he can.
+		<<set $activeSlave.devotion += 4>>
+		<<if $activeSlave.lactation > 0>>
+			<<set $activeSlave.lactationDuration = 2>>
+			<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
 		<</if>>
-		in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by roughly kneading $his pliant flesh, testing how well it can be molded into pleasurable valleys and ravines. Satisfied,
-	<</if>>
-	you leave $him to get back to sleep as best $he can.
-	<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
+<<if $activeSlave.belly >= 5000 || $activeSlave.weight > 30>>
+	<br><<link "Rub $his Belly">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			<<if $activeSlave.bellyPreg >= 5000>>
+				$His eyes fly open as soon as $he feels someone touching $his _belly, life-rounded, stomach.
+				<<if $activeSlave.weight > 10>>
+					You're massaging and teasing $his huge, soft belly.
+				<<elseif $activeSlave.muscles > 5>>
+					You're massaging and teasing $his taut belly and ruined abs.
+				<<else>>
+					You're massaging and teasing $his taut belly.
+				<</if>>
+				$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
+				<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
+					Though $he's smart,
+				<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
+					Though $he's not dumb,
+				<<else>>
+					$He's an idiot, and
+				<</if>>
+				in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by
+				<<if $activeSlave.weight > 10>>
+					sinking your hands into $his fat to get a good feel of the life growing within.
+				<<else>>
+					feeling for the life growing within $him.
+				<</if>>
+				<<if $activeSlave.weight > 30>>
+					Though it takes some groping before you are met with a kick from $his unborn child.
+				<<elseif $activeSlave.pregType < 3>>
+					It doesn't take long before you are met with a kick from $his unborn child.
+				<<else>>
+					$He is so full of children that your ministrations are met with a hail of motion.
+				<</if>>
+				<<if $activeSlave.pregSource == -1>>Smiling at how active your children are<<else>>Satisfied<</if>>,
+			<<elseif $activeSlave.bellyImplant >= 5000>>
+				$His eyes fly open as soon as $he feels someone touching $his _belly stomach.
+				<<if $activeSlave.weight > 10>>
+					You're massaging and teasing $his huge, soft belly.
+				<<elseif $activeSlave.muscles > 5>>
+					You're massaging and teasing $his taut belly and ruined abs.
+				<<else>>
+					You're massaging and teasing $his taut belly.
+				<</if>>
+				$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
+				<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
+					Though $he's smart,
+				<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
+					Though $he's not dumb,
+				<<else>>
+					$He's an idiot, and
+				<</if>>
+				in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by
+				<<if $activeSlave.weight > 10>>
+					sinking your hands into $his fat to get a good feel of the implant hidden within.
+				<<else>>
+					feeling up the implant within $him.
+				<</if>>
+				<<if $activeSlave.weight > 30>>
+					Though it takes some groping before you locate the firm sphere.
+				<<elseif $activeSlave.belly < 10000>>
+					It doesn't take long for you to have a solid grip on the firm sphere.
+				<<else>>
+					It's so huge it's hard to miss, but that just gives you more room to poke and prod at.
+				<</if>>
+				Satisfied,
+			<<elseif $activeSlave.bellyFluid >= 5000>>
+				$His eyes fly open as soon as $he feels someone touching $his _belly, <<print $activeSlave.inflationType>>-filled stomach.
+				<<if $activeSlave.weight > 10>>
+					You're massaging and jiggling $his huge, soft belly, enjoying the sounds it makes as you move it.
+				<<elseif $activeSlave.muscles > 5>>
+					You're massaging and jiggling $his taut belly and stretched abs, enjoying the sounds it makes as you move it.
+				<<else>>
+					You're massaging and jiggling $his taut belly, enjoying the sounds it makes as you move it.
+				<</if>>
+				$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
+				<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
+					Though $he's smart,
+				<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
+					Though $he's not dumb,
+				<<else>>
+					$He's an idiot, and
+				<</if>>
+				in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by
+				<<if $activeSlave.weight > 10>>
+					sinking your hands into $his fat to get a good grip
+				<<else>>
+					wrapping your hands around the sloshing globe
+				<</if>>
+				and vigorously shaking. As $his gut's groaning from the sudden shift of its contents dies down, you gently apply pressure to the bloated organ, careful to only cause $his discomfort and not to disgorge $his contents. Satisfied,
+			<<else>>
+				$His eyes fly open as soon as $he feels someone touching $his
+				<<if $activeSlave.weight > 190>>
+					expansive belly. You're massaging and jiggling $his obscene gut while teasing $his many folds and struggling to find $his belly button.
+				<<elseif $activeSlave.weight > 160>>
+					massive, soft belly. You're massaging and jiggling $his obscene gut while teasing $his many folds and hidden belly button.
+				<<elseif $activeSlave.weight > 130>>
+					huge, soft belly. You're massaging and jiggling $his thick gut while teasing $his folds and hidden belly button.
+				<<elseif $activeSlave.weight > 95>>
+					big soft belly. You're massaging and jiggling $his gut while teasing $his folds and hidden belly button.
+				<<else>>
+					chubby middle. You're massaging and jiggling $his tiny gut.
+				<</if>>
+				$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
+				<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
+					Though $he's smart,
+				<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
+					Though $he's not dumb,
+				<<else>>
+					$He's an idiot, and
+				<</if>>
+				in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by roughly kneading $his pliant flesh, testing how well it can be molded into pleasurable valleys and ravines. Satisfied,
+			<</if>>
+			you leave $him to get back to sleep as best $he can.
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if $PC.dick == 1>>
-<br><<link "Cum on $his face">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You stand over $him, quietly masturbating while watching $him sleep. Several of $his fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You fancy yourself a bit of a marks<<= _womanP>>, and you don't feel the need to bend over $him to score good hits. Your load comes in three main jets: the first hits $him on the nipple, the second tracks up $his sternum and throat, and the third splashes full across $his face as $his eyes fly open<<if $PC.vagina == 1>>, each of these accompanied by some less directionally perfect girlcum<</if>>. $He sputters with surprise and then outrage, but <<if !canSee($activeSlave)>>once $he recognizes your <<if canTaste($activeSlave)>>taste<<else>>presence<</if>> and<<else>>then $he<</if>> realizes who it is standing over $him <<if canSee($activeSlave)>>and<<else>>does $he<</if>> @@.gold;freezes in terror.@@
-	<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
-		$He's quick, and $he immediately realizes
-	<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
-		$He's not dumb, and $he quickly realizes
-	<<else>>
-		$He gradually manages to calculate
-	<</if>>
-	that doing anything other than thanking you would be phenomenally stupid. "Thank you, <<Master>>," $he <<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps<<else>>mumbles<</if>> blearily. You leave $him to @@.hotpink;puzzle over $his own submissiveness,@@ covered in your cum.
-	<<set $activeSlave.devotion += 4, $activeSlave.trust -= 2>>
-	<</replace>>
-<</link>>
+	<br><<link "Cum on $his face">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You stand over $him, quietly masturbating while watching $him sleep. Several of $his fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You fancy yourself a bit of a marks<<= _womanP>>, and you don't feel the need to bend over $him to score good hits. Your load comes in three main jets: the first hits $him on the nipple, the second tracks up $his sternum and throat, and the third splashes full across $his face as $his eyes fly open<<if $PC.vagina == 1>>, each of these accompanied by some less directionally perfect girlcum<</if>>. $He sputters with surprise and then outrage, but <<if !canSee($activeSlave)>>once $he recognizes your <<if canTaste($activeSlave)>>taste<<else>>presence<</if>> and<<else>>then $he<</if>> realizes who it is standing over $him <<if canSee($activeSlave)>>and<<else>>does $he<</if>> @@.gold;freezes in terror.@@
+			<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
+				$He's quick, and $he immediately realizes
+			<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
+				$He's not dumb, and $he quickly realizes
+			<<else>>
+				$He gradually manages to calculate
+			<</if>>
+			that doing anything other than thanking you would be phenomenally stupid. "Thank you, <<Master>>," $he <<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps<<else>>mumbles<</if>> blearily. You leave $him to @@.hotpink;puzzle over $his own submissiveness,@@ covered in your cum.
+			<<set $activeSlave.devotion += 4, $activeSlave.trust -= 2>>
+		<</replace>>
+	<</link>>
 <<else>>
-<br><<link "Squirt on $his face">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You stand over $him, quietly masturbating while watching $him sleep. Several of $his fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You're on excellent terms with your cunt, and you know just what it takes to make yourself squirt. When you feel the heat building just right, you quickly straddle $his face without touching $him, angling yourself carefully and increasing the pace of your schlicking. In no time at all, a jet of femcum splashes onto $his face and down across $his chest. $He sputters with surprise and then outrage, but then $he <<if canSee($activeSlave)>>realizes whose pussy $he's staring straight into<<else>>recognizes your <<if canTaste($activeSlave)>>flavor<<else>>presence<</if>><</if>> and @@.gold;freezes in terror.@@
-	<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
-		$He's quick, and $he immediately realizes
-	<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
-		$He's not dumb, and $he quickly realizes
-	<<else>>
-		$He gradually manages to calculate
-	<</if>>
-	that doing anything other than thanking you would be phenomenally stupid. "Thank you, <<Master>>," $he <<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps<<else>>mumbles<</if>> blearily. You leave $him to @@.hotpink;puzzle over $his own submissiveness,@@ covered in your pussyjuice.
-	<<set $activeSlave.devotion += 4, $activeSlave.trust -= 2>>
-	<</replace>>
-<</link>>
+	<br><<link "Squirt on $his face">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You stand over $him, quietly masturbating while watching $him sleep. Several of $his fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You're on excellent terms with your cunt, and you know just what it takes to make yourself squirt. When you feel the heat building just right, you quickly straddle $his face without touching $him, angling yourself carefully and increasing the pace of your schlicking. In no time at all, a jet of femcum splashes onto $his face and down across $his chest. $He sputters with surprise and then outrage, but then $he <<if canSee($activeSlave)>>realizes whose pussy $he's staring straight into<<else>>recognizes your <<if canTaste($activeSlave)>>flavor<<else>>presence<</if>><</if>> and @@.gold;freezes in terror.@@
+			<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
+				$He's quick, and $he immediately realizes
+			<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
+				$He's not dumb, and $he quickly realizes
+			<<else>>
+				$He gradually manages to calculate
+			<</if>>
+			that doing anything other than thanking you would be phenomenally stupid. "Thank you, <<Master>>," $he <<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps<<else>>mumbles<</if>> blearily. You leave $him to @@.hotpink;puzzle over $his own submissiveness,@@ covered in your pussyjuice.
+			<<set $activeSlave.devotion += 4, $activeSlave.trust -= 2>>
+		<</replace>>
+	<</link>>
 <</if>>
 <br><<link "Just watch $him for a little while">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You stand there for a while, watching the exhausted slave sleep. It's an oddly restful sight, and the aesthetics of $his slumbering little movements hold your attention for a time.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> You watch the subtle movements going on within $his womb as well.<</if>> After a while, you head to your own bed. Several of $his fellow slaves came and went as you watched $him, but if they're surprised by the sight, they have the presence of mind not to show it.
-	<br><br>
-	One of them quietly lets $him know about the incident the next day, though, and the overall impact on $his mental state is surprisingly positive. In a more normal human setting, the news that someone watched $him sleep last night without $his consent or even knowledge at the time would disturb $him greatly. However, it's not uncommon for slaves in the dormitory to wake up to the sounds of the occupant of the bedroll next to theirs getting fucked, and without any consent, either. Perhaps you're odd, $he's obviously thinking, but @@.mediumaquamarine;perhaps you won't rape $him while $he sleeps.@@
-	<<set $activeSlave.trust += 4>>
+		You stand there for a while, watching the exhausted slave sleep. It's an oddly restful sight, and the aesthetics of $his slumbering little movements hold your attention for a time.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> You watch the subtle movements going on within $his womb as well.<</if>> After a while, you head to your own bed. Several of $his fellow slaves came and went as you watched $him, but if they're surprised by the sight, they have the presence of mind not to show it.
+		<br><br>
+		One of them quietly lets $him know about the incident the next day, though, and the overall impact on $his mental state is surprisingly positive. In a more normal human setting, the news that someone watched $him sleep last night without $his consent or even knowledge at the time would disturb $him greatly. However, it's not uncommon for slaves in the dormitory to wake up to the sounds of the occupant of the bedroll next to theirs getting fucked, and without any consent, either. Perhaps you're odd, $he's obviously thinking, but @@.mediumaquamarine;perhaps you won't rape $him while $he sleeps.@@
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 
@@ -15811,801 +15816,801 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "let $him eat">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him $he's a good little succubus, and you're going to let $him feed. $He knows exactly what you mean, and
-	<<if $activeSlave.belly >= 300000>>
-		leans onto $his _belly stomach
-	<<else>>
-		<<if $activeSlave.belly >= 5000>>gently lowers $himself<<else>>gets<</if>> to $his knees
-	<</if>>
-	quickly, pressing $him $activeSlave.nipples nipples against your thighs and grasping your hips to give $himself leverage for some very aggressive oral. After
-	<<if $PC.dick == 1>>
-		a couple of lush sucks at each of your balls<<if $PC.vagina == 1>> and some eager nuzzling of your pussylips<</if>>, $he moves straight to a hard blowjob, deepthroating your cock and almost ramming $his head against you.<<if $PC.vagina == 1>> $He keeps $his tongue stuck out, and whenever $he gets you fully hilted, $he manages to reach your pussylips with it.<</if>> $He <<if $activeSlave.fetish == "cumslut">>doesn't have to pretend to be starving for your cum.<<else>>does a good job of acting like $he's authentically starving for your cum.<</if>> $He groans with satisfaction when you blow your load down $his gullet,
-	<<else>>
-		nuzzling $his nose against your moist cunt, $he starts to eat you out like $he's starving, sparing no time for subtlety, lapping up your female juices with evident relish. You run your fingers through $his $activeSlave.slaveName hair, telling $him $he'll have to survive on pussyjuice. $He replies, but you hold $his head hard against you as $he does, turning whatever $he says into an unintelligible, delectable mumbling into your womanhood. $He groans with satisfaction when you stiffen with orgasm, giving $him a final gush of girlcum,
-	<</if>>
-	and <<if $activeSlave.belly >= 5000>>hefts $his <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> bulk up<<else>>gets to $his feet<</if>> licking $his lips and patting $his _belly stomach.
-	<<if $activeSlave.belly >= 1500>>
-		"That wa<<s>> <<s>>uch a big meal <<Master>>, look how full it made me!" $He teases, pretending $his
-		<<if $activeSlave.bellyPreg >= 1500>>
-			gravid belly is filled with your fluids.
-		<<elseif $activeSlave.bellyImplant >= 1500>>
-			distended belly is filled with your fluids.
-		<<else>>
-			wobbling, <<print $activeSlave.inflationType>>-filled belly is filled with your fluids.
-		<</if>>
-		<<if $PC.balls >= 3>>
-			Seeing as $he took the entirety of your inhuman load, there is some truth to $his words.
-		<</if>>
-	<</if>>
-	$He's obviously @@.mediumaquamarine;becoming more comfortable@@ playing the part of a vampiric sex
-	<<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishStrength > 95)>>
-		demon, and it's a role the incorrigible cumslut @@.hotpink;loves.@@
-		<<set $activeSlave.devotion += 2>>
-	<<elseif ($activeSlave.fetish == "cumslut")>>
-		demon, and it's a role that @@.lightcoral;reinforces $his oral fixation.@@
-		<<set $activeSlave.fetishStrength += 4>>
-	<<elseif (($activeSlave.fetishStrength <= 95) || ($activeSlave.fetishKnown == 0)) && (random(0,1) == 0)>>
-		demon, and the role @@.lightcoral;focuses $his attention on $his mouth.@@
-		<<set $activeSlave.fetishStrength = 10, $activeSlave.fetishKnown = 1, $activeSlave.fetish = "cumslut">>
-	<<else>>
-		demon.
-	<</if>>
-	<<set $activeSlave.trust += 4, $activeSlave.counter.oral++, $oralTotal++>>
-	<</replace>>
-<</link>>
-<<if canDoVaginal($activeSlave) && ($PC.dick == 1)>>
-<br><<link "Feed $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him $he's a good little succubus, and you're going to feed $him.
-	<<if $activeSlave.boobs > 2000>>
-		Reaching up under $his breasts for the top edge of $his outfit
-	<<else>>
-		Grabbing $his outfit's top edge
-	<</if>>
-	and seizing $him behind a knee with your other hand, you sling $him across
-	<<if $activeSlave.belly >= 300000 || $activeSlave.weight > 190>>
-		an unfortunate nearby tabletop. Once the table finishes its creaking and promises to hold $his weight, $he
-	<<else>>
-		a convenient tabletop nearby. $He
-	<</if>>
-	spreads $his legs for you, smiling with anticipation, $his
-	<<if $activeSlave.vaginaLube > 0>>
-		cunt already soaking wet.
-	<<elseif $activeSlave.labia > 0>>
-		prominent petals swollen with arousal.
-	<<elseif $activeSlave.clit > 0>>
-		big bitch button stiff with arousal.
-	<<else>>
-		cunt flushing with arousal.
-	<</if>>
-	$He reaches down around $his own ass and spreads $his pussy for you, only releasing $his fingertip grip on $his labia when $he feels you hilt yourself inside $his
-	<<if $activeSlave.vagina > 2>>
-		cavernous
-	<<elseif $activeSlave.vagina > 1>>
-		comfortable
-	<<elseif $activeSlave.vagina > 0>>
-		caressing
-	<<else>>
-		needy
-	<</if>>
-	channel.
-	<<= VaginalVCheck()>>
-	You're here to rut, not make love, and you give it to $his hard, forcing <<if $activeSlave.voice >= 3>>high squeals<<else>>animal grunts<</if>> out of $him. $He climaxes strongly, and the glorious feeling finishes you as well, bringing rope after rope of your cum jetting into $him. $He groans at the feeling, and as $he <<if $activeSlave.belly >= 5000 || $activeSlave.weight > 190>>slowly <</if>>gets to $his feet $he uses a hand to transfer a <<if canTaste($activeSlave)>>taste<<else>>bit<</if>> of the mixture of your seed and <<if $PC.vagina == 1>>both of your<<else>>$his<</if>> pussyjuice to $his mouth.
-	<<if $activeSlave.belly >= 750000>>
-		"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> like I'm going to bur<<s>>t! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope _heP can handle them all!" $He groans, cradling $his _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger. "<<Master>>! They won't <<s>>top! Oh... <<S>>o full... I can't <<s>>top con<<c>>eiving!" $He roles onto $his back and clutches $his absurd stomach. "<<S>>o tight! <<S>>o full! <<S>>o Good! I need more! Oh, <<Master>>..." $He may be getting a little too into the fantasy.
-		<<if $activeSlave.broodmother == 2 && $activeSlave.preg > 37>>
-			A gush of fluid flows from $his pussy, snapping $him out of $his roleplay. "<<Master>>! I need... One'<<s>> coming now!" You rub $his contracting stomach, enjoying the feeling of the life within shifting to take advantage of the free space. You sigh and lean down, the vessel of your spawn needs help after pinning $himself in such a compromising position. Holding $his belly clear of $his crotch, you watch $him steadily push out $his child before spasming with orgasm and freeing it effortlessly into the world. After collecting it for a servant to handle, you help the exhausted $girl back to $his feet. $He thanks you sincerely for the assist before going to clean $himself up. You barely have time to turn away before another splash catches your attention. "<<Master>>... Another'<<s>>, mmmmh, coming..."
-		<</if>>
-	<<elseif $activeSlave.belly >= 600000>>
-		"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> like I'm going to bur<<s>>t! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope _heP can handle them all!" $He teases, cradling $his _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger.
-	<<elseif $activeSlave.belly >= 450000>>
-		"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> <<s>>o good! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope _heP can handle them all!" $He teases, cradling $his _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger.
-	<<elseif $activeSlave.belly >= 300000>>
-		"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> <<s>>o good! I feel them moving! They're ready to come out <<Master>>!" $He teases, cradling $his _belly belly and pretending it just grew that huge.
-	<<elseif $activeSlave.belly >= 150000>>
-		"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me, look how big I'm getting!" $He teases, cradling $his _belly belly and pretending it just rapidly became that large.
-	<<elseif $activeSlave.belly >= 5000>>
-		"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you!" $He teases, cradling $his _belly belly and pretending it just grew that big.
-	<<else>>
-		"Oh <<Master>>! I feel it! Your <<s>>eed is being devoured by my eggs! I can't wait to <<s>>ee how happy they make you!" $He teases, rubbing $his belly and pretending to conceive.
-	<</if>>
-	$He's obviously @@.mediumaquamarine;becoming more comfortable@@ playing the part of a sex demon whose hunger knows no
-	<<set $activeSlave.trust += 4>>
-	<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 95)>>
-		end, and it's a role the pregnancy fetishist @@.hotpink;loves.@@
-		<<set $activeSlave.devotion += 2>>
-	<<elseif ($activeSlave.fetish == "pregnancy")>>
-		end, and it's a role that @@.lightcoral;reinforces $his love of insemination.@@
-		<<set $activeSlave.fetishStrength += 4>>
-	<<elseif (($activeSlave.fetishStrength <= 95) || ($activeSlave.fetishKnown == 0)) && (random(0,1) == 0)>>
-		end, and the role @@.lightcoral;focuses $his attention on insemination.@@
-		<<set $activeSlave.fetishStrength = 10, $activeSlave.fetishKnown = 1, $activeSlave.fetish = "pregnancy">>
-	<<else>>
-		end.
-	<</if>>
-	<</replace>>
-<</link>><<if $activeSlave.vagina == 0>> //This option will take virginity//<</if>>
-<</if>>
-<<if canDoAnal($activeSlave) && ($activeSlave.anus > 0) && ($PC.dick == 1)>>
-<br><<link "Fuck $him without feeding $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him $he's a good little succubus. Thinking $he understands, $he
-	<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
-		turns and hugs the nearest wall,
+		You tell $him $he's a good little succubus, and you're going to let $him feed. $He knows exactly what you mean, and
 		<<if $activeSlave.belly >= 300000>>
-			sliding $his _belly belly down it until it parts $his legs. $He shuffles onto it to offer you $his needy cunt.
+			leans onto $his _belly stomach
 		<<else>>
-			going up on tiptoe and cocking $his hips to offer you $his needy cunt.
+			<<if $activeSlave.belly >= 5000>>gently lowers $himself<<else>>gets<</if>> to $his knees
 		<</if>>
-		$He moans as your dick
-		<<if $activeSlave.vagina > 2>>
-			enters $his big cunt.
-		<<elseif $activeSlave.vagina > 1>>
-			fills $his wet cunt.
+		quickly, pressing $him $activeSlave.nipples nipples against your thighs and grasping your hips to give $himself leverage for some very aggressive oral. After
+		<<if $PC.dick == 1>>
+			a couple of lush sucks at each of your balls<<if $PC.vagina == 1>> and some eager nuzzling of your pussylips<</if>>, $he moves straight to a hard blowjob, deepthroating your cock and almost ramming $his head against you.<<if $PC.vagina == 1>> $He keeps $his tongue stuck out, and whenever $he gets you fully hilted, $he manages to reach your pussylips with it.<</if>> $He <<if $activeSlave.fetish == "cumslut">>doesn't have to pretend to be starving for your cum.<<else>>does a good job of acting like $he's authentically starving for your cum.<</if>> $He groans with satisfaction when you blow your load down $his gullet,
 		<<else>>
-			slides slowly inside $his tight cunt.
+			nuzzling $his nose against your moist cunt, $he starts to eat you out like $he's starving, sparing no time for subtlety, lapping up your female juices with evident relish. You run your fingers through $his $activeSlave.slaveName hair, telling $him $he'll have to survive on pussyjuice. $He replies, but you hold $his head hard against you as $he does, turning whatever $he says into an unintelligible, delectable mumbling into your womanhood. $He groans with satisfaction when you stiffen with orgasm, giving $him a final gush of girlcum,
 		<</if>>
-		As you fuck $him, you ask $him how succubi feed. "W-well," $he gasps, struggling to gather $his wits,
-	<<else>>
-		<<if $activeSlave.belly >= 300000>>
-			leans onto $his _belly belly
+		and <<if $activeSlave.belly >= 5000>>hefts $his <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> bulk up<<else>>gets to $his feet<</if>> licking $his lips and patting $his _belly stomach.
+		<<if $activeSlave.belly >= 1500>>
+			"That wa<<s>> <<s>>uch a big meal <<Master>>, look how full it made me!" $He teases, pretending $his
+			<<if $activeSlave.bellyPreg >= 1500>>
+				gravid belly is filled with your fluids.
+			<<elseif $activeSlave.bellyImplant >= 1500>>
+				distended belly is filled with your fluids.
+			<<else>>
+				wobbling, <<print $activeSlave.inflationType>>-filled belly is filled with your fluids.
+			<</if>>
+			<<if $PC.balls >= 3>>
+				Seeing as $he took the entirety of your inhuman load, there is some truth to $his words.
+			<</if>>
+		<</if>>
+		$He's obviously @@.mediumaquamarine;becoming more comfortable@@ playing the part of a vampiric sex
+		<<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishStrength > 95)>>
+			demon, and it's a role the incorrigible cumslut @@.hotpink;loves.@@
+			<<set $activeSlave.devotion += 2>>
+		<<elseif ($activeSlave.fetish == "cumslut")>>
+			demon, and it's a role that @@.lightcoral;reinforces $his oral fixation.@@
+			<<set $activeSlave.fetishStrength += 4>>
+		<<elseif (($activeSlave.fetishStrength <= 95) || ($activeSlave.fetishKnown == 0)) && (random(0,1) == 0)>>
+			demon, and the role @@.lightcoral;focuses $his attention on $his mouth.@@
+			<<set $activeSlave.fetishStrength = 10, $activeSlave.fetishKnown = 1, $activeSlave.fetish = "cumslut">>
 		<<else>>
-			gets down on $his knees
+			demon.
 		<</if>>
-		and starts to suck you off. $He deepthroats you eagerly, stretching to tickle your balls with $his tongue as $he gets you all the way in, and then shifting a hand to roll them around as $he sucks. As $he blows you, you ask $him how succubi feed. "Well," $he gasps, popping your dickhead free of $his mouth and replacing the sucking with a stroking hand,
-	<</if>>
-	"<<Master>>, they can eat a man'<<s>> e<<ss>>en<<c>>e by <<s>>wallowing hi<<s>> cum or getting him to ejaculate in<<s>>ide their pu<<ss>>ie<<s>>."
-	<br><br>
-	You ask $him whether $he would like to feed off you. "Oh ye<<s>> <<Master>>, plea<<s>>e. Plea<<s>>e feed me," $he begs. Too bad, you tell $him; $he gets to go hungry. After all, succubi can't feed using their butts.
-	<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
-		You withdraw from $his cunt and stuff your cock up $his ass without pausing or softening your thrusting at all.
-	<<else>>
-		You pull $him to $his feet by the hair, spin $him around, shove $him up against the wall, and stuff your cock up $his ass.
-	<</if>>
-	<<if $activeSlave.anus > 2>>
-		It's not like $his experienced butt can't take an assraping, but
-	<<elseif $activeSlave.anus > 1>>
-		$His practiced ass relaxes and accommodates your dick, but
-	<<else>>
-		$His tight asshole spasms with pain as it stretches to accommodate you, and
-	<</if>>
-	$he whines at your sudden aggression, wiggling within your dominating grip. You fill $his ass with cum as $he struggles, still playing $his part, begging you not to cum in $his bottom, since succubi can't live on buttsex.
-	<<set $activeSlave.trust += 4>>
-	<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishStrength > 95)>>
-		It's a role the submissive slut @@.hotpink;loves.@@
-		<<set $activeSlave.devotion += 2>>
-	<<elseif ($activeSlave.fetish == "submissive")>>
-		It's a role that @@.lightcoral;reinforces $his submissive streak.@@
-		<<set $activeSlave.fetishStrength += 4>>
-	<<elseif (($activeSlave.fetishStrength <= 95) || ($activeSlave.fetishKnown == 0)) && (random(0,1) == 0)>>
-		The role @@.lightcoral;focuses $his attention on submission.@@
-		<<set $activeSlave.fetishStrength = 10, $activeSlave.fetishKnown = 1, $activeSlave.fetish = "submissive">>
-	<<else>>
-		$He @@.hotpink;plays the role well.@@
-	<</if>>
-	<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
-		<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
-	<<else>>
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<</if>>
-	<<= AnalVCheck()>>
+		<<set $activeSlave.trust += 4, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
+<<if canDoVaginal($activeSlave) && ($PC.dick == 1)>>
+	<br><<link "Feed $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him $he's a good little succubus, and you're going to feed $him.
+			<<if $activeSlave.boobs > 2000>>
+				Reaching up under $his breasts for the top edge of $his outfit
+			<<else>>
+				Grabbing $his outfit's top edge
+			<</if>>
+			and seizing $him behind a knee with your other hand, you sling $him across
+			<<if $activeSlave.belly >= 300000 || $activeSlave.weight > 190>>
+				an unfortunate nearby tabletop. Once the table finishes its creaking and promises to hold $his weight, $he
+			<<else>>
+				a convenient tabletop nearby. $He
+			<</if>>
+			spreads $his legs for you, smiling with anticipation, $his
+			<<if $activeSlave.vaginaLube > 0>>
+				cunt already soaking wet.
+			<<elseif $activeSlave.labia > 0>>
+				prominent petals swollen with arousal.
+			<<elseif $activeSlave.clit > 0>>
+				big bitch button stiff with arousal.
+			<<else>>
+				cunt flushing with arousal.
+			<</if>>
+			$He reaches down around $his own ass and spreads $his pussy for you, only releasing $his fingertip grip on $his labia when $he feels you hilt yourself inside $his
+			<<if $activeSlave.vagina > 2>>
+				cavernous
+			<<elseif $activeSlave.vagina > 1>>
+				comfortable
+			<<elseif $activeSlave.vagina > 0>>
+				caressing
+			<<else>>
+				needy
+			<</if>>
+			channel.
+			<<= VaginalVCheck()>>
+			You're here to rut, not make love, and you give it to $his hard, forcing <<if $activeSlave.voice >= 3>>high squeals<<else>>animal grunts<</if>> out of $him. $He climaxes strongly, and the glorious feeling finishes you as well, bringing rope after rope of your cum jetting into $him. $He groans at the feeling, and as $he <<if $activeSlave.belly >= 5000 || $activeSlave.weight > 190>>slowly <</if>>gets to $his feet $he uses a hand to transfer a <<if canTaste($activeSlave)>>taste<<else>>bit<</if>> of the mixture of your seed and <<if $PC.vagina == 1>>both of your<<else>>$his<</if>> pussyjuice to $his mouth.
+			<<if $activeSlave.belly >= 750000>>
+				"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> like I'm going to bur<<s>>t! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope _heP can handle them all!" $He groans, cradling $his _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger. "<<Master>>! They won't <<s>>top! Oh... <<S>>o full... I can't <<s>>top con<<c>>eiving!" $He roles onto $his back and clutches $his absurd stomach. "<<S>>o tight! <<S>>o full! <<S>>o Good! I need more! Oh, <<Master>>..." $He may be getting a little too into the fantasy.
+				<<if $activeSlave.broodmother == 2 && $activeSlave.preg > 37>>
+					A gush of fluid flows from $his pussy, snapping $him out of $his roleplay. "<<Master>>! I need... One'<<s>> coming now!" You rub $his contracting stomach, enjoying the feeling of the life within shifting to take advantage of the free space. You sigh and lean down, the vessel of your spawn needs help after pinning $himself in such a compromising position. Holding $his belly clear of $his crotch, you watch $him steadily push out $his child before spasming with orgasm and freeing it effortlessly into the world. After collecting it for a servant to handle, you help the exhausted $girl back to $his feet. $He thanks you sincerely for the assist before going to clean $himself up. You barely have time to turn away before another splash catches your attention. "<<Master>>... Another'<<s>>, mmmmh, coming..."
+				<</if>>
+			<<elseif $activeSlave.belly >= 600000>>
+				"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> like I'm going to bur<<s>>t! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope _heP can handle them all!" $He teases, cradling $his _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger.
+			<<elseif $activeSlave.belly >= 450000>>
+				"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> <<s>>o good! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope _heP can handle them all!" $He teases, cradling $his _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger.
+			<<elseif $activeSlave.belly >= 300000>>
+				"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> <<s>>o good! I feel them moving! They're ready to come out <<Master>>!" $He teases, cradling $his _belly belly and pretending it just grew that huge.
+			<<elseif $activeSlave.belly >= 150000>>
+				"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me, look how big I'm getting!" $He teases, cradling $his _belly belly and pretending it just rapidly became that large.
+			<<elseif $activeSlave.belly >= 5000>>
+				"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you!" $He teases, cradling $his _belly belly and pretending it just grew that big.
+			<<else>>
+				"Oh <<Master>>! I feel it! Your <<s>>eed is being devoured by my eggs! I can't wait to <<s>>ee how happy they make you!" $He teases, rubbing $his belly and pretending to conceive.
+			<</if>>
+			$He's obviously @@.mediumaquamarine;becoming more comfortable@@ playing the part of a sex demon whose hunger knows no
+			<<set $activeSlave.trust += 4>>
+			<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 95)>>
+				end, and it's a role the pregnancy fetishist @@.hotpink;loves.@@
+				<<set $activeSlave.devotion += 2>>
+			<<elseif ($activeSlave.fetish == "pregnancy")>>
+				end, and it's a role that @@.lightcoral;reinforces $his love of insemination.@@
+				<<set $activeSlave.fetishStrength += 4>>
+			<<elseif (($activeSlave.fetishStrength <= 95) || ($activeSlave.fetishKnown == 0)) && (random(0,1) == 0)>>
+				end, and the role @@.lightcoral;focuses $his attention on insemination.@@
+				<<set $activeSlave.fetishStrength = 10, $activeSlave.fetishKnown = 1, $activeSlave.fetish = "pregnancy">>
+			<<else>>
+				end.
+			<</if>>
+		<</replace>>
+	<</link>><<if $activeSlave.vagina == 0>> //This option will take $his virginity//<</if>>
 <</if>>
-
-<<case "PA flirting">>
-
-<<link "Tell your personal assistant to fuck $him already">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You ask $assistantName whether _heA's going anywhere with all this flirting. _HisA avatar looks at $activeSlave.slaveName. "Hear that,
-	<<switch $assistantAppearance>>
-	<<case "monstergirl">>
-		human?" _heA growls. "You're all mine!"
-		<br><br>
-		"Oh noo, I'm being <<s>>acrifi<<c>>ed to a rape mon<<s>>ter,"
-	<<case "shemale">>
-		slut?" _heA says, smacking _hisA lips. "You're all mine!"
-		<br><br>
-		"Oh noo, there'<<s>> no way that thing will fit in<<s>>ide me,"
-	<<case "amazon">>
-		slave?" _heA roars, rubbing _hisA palms together powerfully. "You're my prize!"
-		<br><br>
-		"Oh noo, I've been captured by a horny amazon,"
-	<<case "businesswoman">>
-		bitch?" _heA says icily, making a steeple with _hisA fingers. "You'll satisfy me! Now!"
-		<br><br>
-		"Oh noo, I'm a <<s>>lave to a horny older woman'<<s>> lewd de<<s>>ire<<s>>,"
-	<<case "fairy" "pregnant fairy">>
-		cutie?" _heA says, giggling devilishly. "You're aaaaaall miiiine!"
-		<br><br>
-		"Oh noo, I'm a <<s>>lave to a horny fairy'<<s>> lewd de<<s>>ire<<s>>,"
-	<<case "schoolgirl">>
-		cutie?" _heA says eagerly, already reaching down to start schlicking away. "You get to be my FWB!"
-		<br><br>
-		"Oh noo, I have to <<s>>ati<<s>>fy a naughty little <<s>>choolgirl,"
-	<<case "goddess">>
-		$girl?" _heA says beatifically. "When I'm through with you, you'll be as pregnant as I!"
-		<br><br>
-		"Oh noo, I'm about to be impregnated by a godde<<ss>>,"
-	<<case "hypergoddess">>
-		$girl?" _heA says beatifically. "When I'm through with you, you'll be struggling to move!"
-		<br><br>
-		"Oh noo, I'm about to be bur<<s>>t by a <<s>>lut godde<<ss>>,"
-	<<case "loli">>
-		$girl?" _heA says cutely. "If you think I'm so cute, why don't you lick my pussy?"
-		<br><br>
-		"Oh noo, I'm about to be dominated by a _loliA,"
-	<<case "preggololi">>
-		$girl?" _heA says cutely. "If you think I'm so cute, why don't you lick my pussy?"
-		<br><br>
-		"Oh noo, I'm about to be dominated by a <<s>>lutty _loliA,"
-	<<case "angel">>
-		$girl?" _heA says beatifically. "I'm going to show you divine skill!"
-		<br><br>
-		"Oh noo, I'm going to be taken to heaven,"
-	<<case "cherub">>
-		cutie?" _heA says cutely, already reaching down to start schlicking away. "You get to be my best friend for the evening!"
-		<br><br>
-		"Oh noo, I'm going to get bapti<<s>>ed by a <<s>>quirting little angel,"
-	<<case "incubus">>
-		dick-sleeve?" _heA says dominantly, already at full mast. "I'm going to use you till all you can think of is cock!"
-		<br><br>
-		"Oh noo, I'm going to fucked out of my mind,"
-	<<case "succubus">>
-		bitch?" _heA says dominantly, already wet. "I'm going to ride you till you're all used up!"
-		<br><br>
-		"Oh noo, I'm going to have my <<s>>e<<x>>ual e<<ss>>ence <<s>>tolen,"
-	<<case "imp">>
-		whore?" _heA says eagerly. "I'm going to torment you till you scream in pleasure!"
-		<br><br>
-		"Oh noo, I'd better <<s>>tart licking if I don't want to <<s>>uffer,"
-	<<case "witch">>
-		sexy?" _heA says eagerly, hiking _hisA dress to reveal a squirming cock. "For once a spell gone wrong is working out!"
-		<br><br>
-		"Oh noo, I'm going to get violated by a terrible witch,"
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		nest?" _heA says eagerly, forming multiple cocks out of _hisA body. "I'm going to fill you with eggs!"
-		<br><br>
-		"Oh noo, I'm going to be a nur<<s>>ery for a freak,"
-	<</switch>>
-	the $desc gasps with mock horror. Your personal assistant gives $him rapid-fire orders, making $him set up sex toys in the corner of your office to conform to _hisA avatar.
-	<br><br>
-	<<setNonlocalPronouns $seeDicks>>
-	The next slave on the inspection enters and approaches you, sitting imperturbably behind your desk, but stops and stares when _heU notices what's going on in the corner of your office. A wallscreen in the corner shows $assistantName's avatar
-	<<switch $assistantAppearance>>
-	<<case "monstergirl">>
-		with both _hisA cocks up the asshole of an avatar of $activeSlave.slaveName. Below this, the slave $himself is
-		<<if $activeSlave.belly >= 300000>>
-			face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
-		<<elseif $activeSlave.belly >= 5000>>
-			face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
-		<<else>>
-			face-down,
-		<</if>>
-		with two fuckmachines pounding
-		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-			$him: one in the pussy, one in the ass.
-			<<set $activeSlave.counter.vaginal++, $vaginalTotal++, $activeSlave.counter.anal++, $analTotal++>>
-		<<elseif canDoVaginal($activeSlave)>>
-			$his pussy.
-			<<set $activeSlave.counter.vaginal += 2, $vaginalTotal += 2>>
-		<<else>>
-			$his ass.
-			<<set $activeSlave.counter.anal += 2, $analTotal += 2>>
-		<</if>>
-	<<case "shemale">>
-		with _hisA third leg inside
-		<<if canDoVaginal($activeSlave)>>
-			the pussy of an avatar of $activeSlave.slaveName. Below this, the slave $himself is taking vaginal from a fuckmachine with an absurdly big dildo.
-			<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
-		<<else>>
-			the ass of an avatar of $activeSlave.slaveName. Below this, the slave $himself is taking anal from a fuckmachine with an absurdly big dildo.
-			<<set $activeSlave.counter.anal++, $analTotal++>>
-		<</if>>
-	<<case "amazon">>
-		powerfully fucking an avatar of $activeSlave.slaveName with a beautiful carved bone and worked leather strap-on.
-		<<if canDoVaginal($activeSlave)>>
-			Below this, the slave $himself is taking hard vaginal from a fuckmachine.
-			<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
-		<<else>>
-			Below this, the slave $himself is taking hard anal from a fuckmachine.
-			<<set $activeSlave.counter.anal++, $analTotal++>>
-		<</if>>
-	<<case "angel" "businesswoman" "cherub" "loli" "preggololi" "schoolgirl">>
-		being eaten out by an avatar of $activeSlave.slaveName, who is touching $himself in turn. Below this, the slave $himself is performing oral on a realistic fake pussy while masturbating.
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<case "fairy">>
-		<<if $activeSlave.height < 35>>
-			<<if $activeSlave.dick > 0>>bouncing on $activeSlave.slaveName's lap and eagerly taking $his cock, finally enjoying sex with someone _hisA size. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll, bloated with cum.<<else>>legs tied to one another as they scissor enthusiastically, covered in sexual fluids from the waist down, Below this, the slave $himself is grinding away between a 'realistic' tiny fairy doll's legs.<</if>>
-		<<else>>
-			bouncing on $activeSlave.slaveName's <<if $activeSlave.dick > 0>>cock, distending _hisA belly with each thrust<<else>>hard clit<</if>> while a vine is gently penetrating below $him. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll pussy <<if $activeSlave.dick > 0>>bloated with cum<</if>> while a flexible dildo gently thrusts into $his
-			<<if canDoVaginal($activeSlave)>>
-				pussy. It's an ejaculating model, and it's currently pumping a large volume of semen into $his cunt.
+<<if canDoAnal($activeSlave) && ($activeSlave.anus > 0) && ($PC.dick == 1)>>
+	<br><<link "Fuck $him without feeding $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him $he's a good little succubus. Thinking $he understands, $he
+			<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
+				turns and hugs the nearest wall,
+				<<if $activeSlave.belly >= 300000>>
+					sliding $his _belly belly down it until it parts $his legs. $He shuffles onto it to offer you $his needy cunt.
+				<<else>>
+					going up on tiptoe and cocking $his hips to offer you $his needy cunt.
+				<</if>>
+				$He moans as your dick
+				<<if $activeSlave.vagina > 2>>
+					enters $his big cunt.
+				<<elseif $activeSlave.vagina > 1>>
+					fills $his wet cunt.
+				<<else>>
+					slides slowly inside $his tight cunt.
+				<</if>>
+				As you fuck $him, you ask $him how succubi feed. "W-well," $he gasps, struggling to gather $his wits,
+			<<else>>
+				<<if $activeSlave.belly >= 300000>>
+					leans onto $his _belly belly
+				<<else>>
+					gets down on $his knees
+				<</if>>
+				and starts to suck you off. $He deepthroats you eagerly, stretching to tickle your balls with $his tongue as $he gets you all the way in, and then shifting a hand to roll them around as $he sucks. As $he blows you, you ask $him how succubi feed. "Well," $he gasps, popping your dickhead free of $his mouth and replacing the sucking with a stroking hand,
+			<</if>>
+			"<<Master>>, they can eat a man'<<s>> e<<ss>>en<<c>>e by <<s>>wallowing hi<<s>> cum or getting him to ejaculate in<<s>>ide their pu<<ss>>ie<<s>>."
+			<br><br>
+			You ask $him whether $he would like to feed off you. "Oh ye<<s>> <<Master>>, plea<<s>>e. Plea<<s>>e feed me," $he begs. Too bad, you tell $him; $he gets to go hungry. After all, succubi can't feed using their butts.
+			<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
+				You withdraw from $his cunt and stuff your cock up $his ass without pausing or softening your thrusting at all.
+			<<else>>
+				You pull $him to $his feet by the hair, spin $him around, shove $him up against the wall, and stuff your cock up $his ass.
+			<</if>>
+			<<if $activeSlave.anus > 2>>
+				It's not like $his experienced butt can't take an assraping, but
+			<<elseif $activeSlave.anus > 1>>
+				$His practiced ass relaxes and accommodates your dick, but
+			<<else>>
+				$His tight asshole spasms with pain as it stretches to accommodate you, and
+			<</if>>
+			$he whines at your sudden aggression, wiggling within your dominating grip. You fill $his ass with cum as $he struggles, still playing $his part, begging you not to cum in $his bottom, since succubi can't live on buttsex.
+			<<set $activeSlave.trust += 4>>
+			<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishStrength > 95)>>
+				It's a role the submissive slut @@.hotpink;loves.@@
+				<<set $activeSlave.devotion += 2>>
+			<<elseif ($activeSlave.fetish == "submissive")>>
+				It's a role that @@.lightcoral;reinforces $his submissive streak.@@
+				<<set $activeSlave.fetishStrength += 4>>
+			<<elseif (($activeSlave.fetishStrength <= 95) || ($activeSlave.fetishKnown == 0)) && (random(0,1) == 0)>>
+				The role @@.lightcoral;focuses $his attention on submission.@@
+				<<set $activeSlave.fetishStrength = 10, $activeSlave.fetishKnown = 1, $activeSlave.fetish = "submissive">>
+			<<else>>
+				$He @@.hotpink;plays the role well.@@
+			<</if>>
+			<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
 				<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
 			<<else>>
-				ass. It's an ejaculating model, and it's currently pumping a large volume of semen into $his ass.
-				<<set $activeSlave.counter.anal++, $analTotal++>>
+				<<set $activeSlave.counter.oral++, $oralTotal++>>
 			<</if>>
-		<</if>>
-	<<case "pregnant fairy">>
-		<<if $activeSlave.height < 35>>
-			<<if $activeSlave.dick > 0>>lying on _hisA back as $activeSlave.slaveName gently thrusts into _himA, legs locked around $his waist. $activeSlave.slaveName enjoys running $his hands over the fairy's pregnant belly as $he leans in to suckle on the fairy's breasts. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll, the pregnant belly swelling a little larger with every ejaculation.<<else>>legs tied to one another as they scissor gently, covered in sexual fluids from the waist down. $activeSlave.slaveName enjoys rubbing and kissing the pregnant belly from time to time. Below this, the slave $himself is grinding away between a 'realistic' tiny fairy doll's legs.<</if>>
-		<<else>>
-			cradling _hisA belly as _heA's being eaten out by an avatar of $activeSlave.slaveName, who is being double penetrated by a couple of vines. Below this, the slave $himself is performing oral on a 'realistic' tiny fairy doll pussy while being penetrated by two flexible dildos. They're an ejaculating model, and it's filled $him so completely that each thrust sends a gush of fake cum down $his legs to join the puddle on the floor.
-			<<set $activeSlave.counter.oral++, $oralTotal++>>
+			<<= AnalVCheck()>>
+		<</replace>>
+	<</link>>
+<</if>>
+
+<<case "PA flirting">>
+
+<<link "Tell your personal assistant to fuck $him already">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You ask $assistantName whether _heA's going anywhere with all this flirting. _HisA avatar looks at $activeSlave.slaveName. "Hear that,
+		<<switch $assistantAppearance>>
+		<<case "monstergirl">>
+			human?" _heA growls. "You're all mine!"
+			<br><br>
+			"Oh noo, I'm being <<s>>acrifi<<c>>ed to a rape mon<<s>>ter,"
+		<<case "shemale">>
+			slut?" _heA says, smacking _hisA lips. "You're all mine!"
+			<br><br>
+			"Oh noo, there'<<s>> no way that thing will fit in<<s>>ide me,"
+		<<case "amazon">>
+			slave?" _heA roars, rubbing _hisA palms together powerfully. "You're my prize!"
+			<br><br>
+			"Oh noo, I've been captured by a horny amazon,"
+		<<case "businesswoman">>
+			bitch?" _heA says icily, making a steeple with _hisA fingers. "You'll satisfy me! Now!"
+			<br><br>
+			"Oh noo, I'm a <<s>>lave to a horny older woman'<<s>> lewd de<<s>>ire<<s>>,"
+		<<case "fairy" "pregnant fairy">>
+			cutie?" _heA says, giggling devilishly. "You're aaaaaall miiiine!"
+			<br><br>
+			"Oh noo, I'm a <<s>>lave to a horny fairy'<<s>> lewd de<<s>>ire<<s>>,"
+		<<case "schoolgirl">>
+			cutie?" _heA says eagerly, already reaching down to start schlicking away. "You get to be my FWB!"
+			<br><br>
+			"Oh noo, I have to <<s>>ati<<s>>fy a naughty little <<s>>choolgirl,"
+		<<case "goddess">>
+			$girl?" _heA says beatifically. "When I'm through with you, you'll be as pregnant as I!"
+			<br><br>
+			"Oh noo, I'm about to be impregnated by a godde<<ss>>,"
+		<<case "hypergoddess">>
+			$girl?" _heA says beatifically. "When I'm through with you, you'll be struggling to move!"
+			<br><br>
+			"Oh noo, I'm about to be bur<<s>>t by a <<s>>lut godde<<ss>>,"
+		<<case "loli">>
+			$girl?" _heA says cutely. "If you think I'm so cute, why don't you lick my pussy?"
+			<br><br>
+			"Oh noo, I'm about to be dominated by a _loliA,"
+		<<case "preggololi">>
+			$girl?" _heA says cutely. "If you think I'm so cute, why don't you lick my pussy?"
+			<br><br>
+			"Oh noo, I'm about to be dominated by a <<s>>lutty _loliA,"
+		<<case "angel">>
+			$girl?" _heA says beatifically. "I'm going to show you divine skill!"
+			<br><br>
+			"Oh noo, I'm going to be taken to heaven,"
+		<<case "cherub">>
+			cutie?" _heA says cutely, already reaching down to start schlicking away. "You get to be my best friend for the evening!"
+			<br><br>
+			"Oh noo, I'm going to get bapti<<s>>ed by a <<s>>quirting little angel,"
+		<<case "incubus">>
+			dick-sleeve?" _heA says dominantly, already at full mast. "I'm going to use you till all you can think of is cock!"
+			<br><br>
+			"Oh noo, I'm going to fucked out of my mind,"
+		<<case "succubus">>
+			bitch?" _heA says dominantly, already wet. "I'm going to ride you till you're all used up!"
+			<br><br>
+			"Oh noo, I'm going to have my <<s>>e<<x>>ual e<<ss>>ence <<s>>tolen,"
+		<<case "imp">>
+			whore?" _heA says eagerly. "I'm going to torment you till you scream in pleasure!"
+			<br><br>
+			"Oh noo, I'd better <<s>>tart licking if I don't want to <<s>>uffer,"
+		<<case "witch">>
+			sexy?" _heA says eagerly, hiking _hisA dress to reveal a squirming cock. "For once a spell gone wrong is working out!"
+			<br><br>
+			"Oh noo, I'm going to get violated by a terrible witch,"
+		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+			nest?" _heA says eagerly, forming multiple cocks out of _hisA body. "I'm going to fill you with eggs!"
+			<br><br>
+			"Oh noo, I'm going to be a nur<<s>>ery for a freak,"
+		<</switch>>
+		the $desc gasps with mock horror. Your personal assistant gives $him rapid-fire orders, making $him set up sex toys in the corner of your office to conform to _hisA avatar.
+		<br><br>
+		<<setNonlocalPronouns $seeDicks>>
+		The next slave on the inspection enters and approaches you, sitting imperturbably behind your desk, but stops and stares when _heU notices what's going on in the corner of your office. A wallscreen in the corner shows $assistantName's avatar
+		<<switch $assistantAppearance>>
+		<<case "monstergirl">>
+			with both _hisA cocks up the asshole of an avatar of $activeSlave.slaveName. Below this, the slave $himself is
+			<<if $activeSlave.belly >= 300000>>
+				face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
+			<<elseif $activeSlave.belly >= 5000>>
+				face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
+			<<else>>
+				face-down,
+			<</if>>
+			with two fuckmachines pounding
 			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+				$him: one in the pussy, one in the ass.
 				<<set $activeSlave.counter.vaginal++, $vaginalTotal++, $activeSlave.counter.anal++, $analTotal++>>
 			<<elseif canDoVaginal($activeSlave)>>
+				$his pussy.
 				<<set $activeSlave.counter.vaginal += 2, $vaginalTotal += 2>>
 			<<else>>
+				$his ass.
 				<<set $activeSlave.counter.anal += 2, $analTotal += 2>>
 			<</if>>
-		<</if>>
-	<<case "goddess">>
-		gently making love to an avatar of $activeSlave.slaveName, whose
-		<<if $activeSlave.bellyPreg >= 1500>>
-			_belly pregnant belly is growing ever more full of children.
-		<<elseif $activeSlave.belly >= 1500>>
-			_belly belly is growing ever larger and kicks begin to dot its surface.
-		<<else>>
-			belly is becoming distended.
-		<</if>>
-		Below this, the slave $himself
-		<<if isItemAccessible("a huge empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight <= 130>>
-			has a huge empathy belly hanging from $his middle and is
-		<<else>>
-			is
-		<</if>>
-		taking a fuckmachine
-		<<if canDoVaginal($activeSlave)>>
-			in $his cunt;
-			<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
-		<<else>>
-			up $his butt;
-			<<set $activeSlave.counter.anal++, $analTotal++>>
-		<</if>>
-		it's an ejaculating model, and it's filled $him so completely that each thrust sends a gush of fake cum down $his legs to join the puddle on the floor.
-	<<case "hypergoddess">>
-		gently making love to an avatar of $activeSlave.slaveName, whose
-		<<if $activeSlave.bellyPreg >= 450000>>
-			_belly pregnant belly is rapidly ballooning with life and pushing $him upwards from the sheer size of the squirming mass.
-		<<elseif $activeSlave.bellyPreg >= 1500>>
-			_belly pregnant belly is growing taut and beginning to bulge from the amount of children growing within $him.
-		<<elseif $activeSlave.belly >= 1500>>
-			_belly belly is growing taut and beginning to bulge from the amount of children growing within $him.
-		<<else>>
-			belly is becoming massively distended.
-		<</if>>
-		Below this, the slave $himself
-		<<if isItemAccessible("a huge empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight <= 130>>
-			has a huge empathy belly hanging from $his middle and is
-		<<else>>
-			is
-		<</if>>
-		taking a fuckmachine
-		<<if canDoVaginal($activeSlave)>>
-			in $his cunt;
-			<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
-		<<else>>
-			up $his butt;
-			<<set $activeSlave.counter.anal++, $analTotal++>>
-		<</if>>
-		it's an ejaculating model, and it's filled $him so completely that each thrust sends a gush of fake cum down $his legs to join the puddle on the floor.
-	<<case "incubus">>
-		powerfully fucking an avatar of $activeSlave.slaveName with a dick sized to perfectly fill $him.
-		<<if canDoVaginal($activeSlave)>>
-			Below this, the slave $himself is taking hard vaginal from a fuckmachine;
-			<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
-		<<else>>
-			Below this, the slave $himself is taking hard anal from a fuckmachine;
-			<<set $activeSlave.counter.anal++, $analTotal++>>
-		<</if>>
-		it's an ejaculating model, and it's filled $him so completely that each thrust sends a gush of fake cum down $his legs to join the puddle on the floor.
-	<<case "succubus">>
-		<<if canPenetrate($activeSlave)>>
-			riding $activeSlave.slaveName's dick. Below this, the slave $himself is humping a realistic fake pussy built into a finely crafted female lower body.
-			<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-		<<else>>
+		<<case "shemale">>
+			with _hisA third leg inside
+			<<if canDoVaginal($activeSlave)>>
+				the pussy of an avatar of $activeSlave.slaveName. Below this, the slave $himself is taking vaginal from a fuckmachine with an absurdly big dildo.
+				<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
+			<<else>>
+				the ass of an avatar of $activeSlave.slaveName. Below this, the slave $himself is taking anal from a fuckmachine with an absurdly big dildo.
+				<<set $activeSlave.counter.anal++, $analTotal++>>
+			<</if>>
+		<<case "amazon">>
+			powerfully fucking an avatar of $activeSlave.slaveName with a beautiful carved bone and worked leather strap-on.
+			<<if canDoVaginal($activeSlave)>>
+				Below this, the slave $himself is taking hard vaginal from a fuckmachine.
+				<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
+			<<else>>
+				Below this, the slave $himself is taking hard anal from a fuckmachine.
+				<<set $activeSlave.counter.anal++, $analTotal++>>
+			<</if>>
+		<<case "angel" "businesswoman" "cherub" "loli" "preggololi" "schoolgirl">>
 			being eaten out by an avatar of $activeSlave.slaveName, who is touching $himself in turn. Below this, the slave $himself is performing oral on a realistic fake pussy while masturbating.
 			<<set $activeSlave.counter.oral++, $oralTotal++>>
-		<</if>>
-	<<case "imp">>
-			being eaten out by an avatar of $activeSlave.slaveName, who is touching $himself in turn while the imp yanks a chain connected to $his nipples with one hand and smacks $him with a riding crop with the other. Below this, the slave $himself is performing oral on a realistic fake pussy while masturbating; a pair of <<if $activeSlave.nipples != "fuckable">>clamps attached to $his nipples randomly jerking<<else>>vibrators wedged in $his nipples violently vibrating<</if>> and a whip lined wheel steadily slapping at $his ass and back.
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<case "witch">>
-		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-			with _hisA prehensile cocks crammed into every available hole in an avatar of $activeSlave.slaveName. Below this, the slave $himself is
-			<<if $activeSlave.belly >= 300000>>
-				face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
-			<<elseif $activeSlave.belly >= 5000>>
-				face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
+		<<case "fairy">>
+			<<if $activeSlave.height < 35>>
+				<<if $activeSlave.dick > 0>>bouncing on $activeSlave.slaveName's lap and eagerly taking $his cock, finally enjoying sex with someone _hisA size. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll, bloated with cum.<<else>>legs tied to one another as they scissor enthusiastically, covered in sexual fluids from the waist down, Below this, the slave $himself is grinding away between a 'realistic' tiny fairy doll's legs.<</if>>
 			<<else>>
-				face-down,
+				bouncing on $activeSlave.slaveName's <<if $activeSlave.dick > 0>>cock, distending _hisA belly with each thrust<<else>>hard clit<</if>> while a vine is gently penetrating below $him. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll pussy <<if $activeSlave.dick > 0>>bloated with cum<</if>> while a flexible dildo gently thrusts into $his
+				<<if canDoVaginal($activeSlave)>>
+					pussy. It's an ejaculating model, and it's currently pumping a large volume of semen into $his cunt.
+					<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
+				<<else>>
+					ass. It's an ejaculating model, and it's currently pumping a large volume of semen into $his ass.
+					<<set $activeSlave.counter.anal++, $analTotal++>>
+				<</if>>
 			<</if>>
-			with multiple vibrating dildos quivering in $his ass and pussy.
-			<<set $activeSlave.counter.vaginal += 2, $vaginalTotal += 2, $activeSlave.counter.anal += 2, $analTotal += 2>>
-		<<elseif canDoVaginal($activeSlave)>>
-			with _hisA prehensile cocks crammed into every available hole in an avatar of $activeSlave.slaveName. Below this, the slave $himself is
-			<<if $activeSlave.belly >= 300000>>
-				face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
-			<<elseif $activeSlave.belly >= 5000>>
-				face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
+		<<case "pregnant fairy">>
+			<<if $activeSlave.height < 35>>
+				<<if $activeSlave.dick > 0>>lying on _hisA back as $activeSlave.slaveName gently thrusts into _himA, legs locked around $his waist. $activeSlave.slaveName enjoys running $his hands over the fairy's pregnant belly as $he leans in to suckle on the fairy's breasts. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll, the pregnant belly swelling a little larger with every ejaculation.<<else>>legs tied to one another as they scissor gently, covered in sexual fluids from the waist down. $activeSlave.slaveName enjoys rubbing and kissing the pregnant belly from time to time. Below this, the slave $himself is grinding away between a 'realistic' tiny fairy doll's legs.<</if>>
 			<<else>>
-				face-down,
+				cradling _hisA belly as _heA's being eaten out by an avatar of $activeSlave.slaveName, who is being double penetrated by a couple of vines. Below this, the slave $himself is performing oral on a 'realistic' tiny fairy doll pussy while being penetrated by two flexible dildos. They're an ejaculating model, and it's filled $him so completely that each thrust sends a gush of fake cum down $his legs to join the puddle on the floor.
+				<<set $activeSlave.counter.oral++, $oralTotal++>>
+				<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+					<<set $activeSlave.counter.vaginal++, $vaginalTotal++, $activeSlave.counter.anal++, $analTotal++>>
+				<<elseif canDoVaginal($activeSlave)>>
+					<<set $activeSlave.counter.vaginal += 2, $vaginalTotal += 2>>
+				<<else>>
+					<<set $activeSlave.counter.anal += 2, $analTotal += 2>>
+				<</if>>
 			<</if>>
-			with multiple vibrating dildos quivering in $his pussy.
-			<<set $activeSlave.counter.vaginal += 4, $vaginalTotal += 4>>
-		<<else>>
-			with _hisA prehensile cocks crammed into the asshole of an avatar of $activeSlave.slaveName. Below this, the slave $himself is
-			<<if $activeSlave.belly >= 300000>>
-				face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
-			<<elseif $activeSlave.belly >= 5000>>
-				face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
+		<<case "goddess">>
+			gently making love to an avatar of $activeSlave.slaveName, whose
+			<<if $activeSlave.bellyPreg >= 1500>>
+				_belly pregnant belly is growing ever more full of children.
+			<<elseif $activeSlave.belly >= 1500>>
+				_belly belly is growing ever larger and kicks begin to dot its surface.
 			<<else>>
-				face-down,
+				belly is becoming distended.
 			<</if>>
-			with multiple vibrating dildos quivering in $his ass.
-			<<set $activeSlave.counter.anal += 4, $analTotal += 4>>
-		<</if>>
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		with _hisA tentacles crammed into every available hole in an avatar of $activeSlave.slaveName, rapidly pumping eggs into $his quickly swelling body.
-		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
 			Below this, the slave $himself
 			<<if isItemAccessible("a huge empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight <= 130>>
-				has a huge empathy belly strapped to $his middle and
+				has a huge empathy belly hanging from $his middle and is
+			<<else>>
+				is
 			<</if>>
-			is
-			<<if $activeSlave.belly >= 300000>>
-				face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
-			<<elseif $activeSlave.belly >= 5000>>
-				face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
+			taking a fuckmachine
+			<<if canDoVaginal($activeSlave)>>
+				in $his cunt;
+				<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
 			<<else>>
-				face-down,
+				up $his butt;
+				<<set $activeSlave.counter.anal++, $analTotal++>>
+			<</if>>
+			it's an ejaculating model, and it's filled $him so completely that each thrust sends a gush of fake cum down $his legs to join the puddle on the floor.
+		<<case "hypergoddess">>
+			gently making love to an avatar of $activeSlave.slaveName, whose
+			<<if $activeSlave.bellyPreg >= 450000>>
+				_belly pregnant belly is rapidly ballooning with life and pushing $him upwards from the sheer size of the squirming mass.
+			<<elseif $activeSlave.bellyPreg >= 1500>>
+				_belly pregnant belly is growing taut and beginning to bulge from the amount of children growing within $him.
+			<<elseif $activeSlave.belly >= 1500>>
+				_belly belly is growing taut and beginning to bulge from the amount of children growing within $him.
+			<<else>>
+				belly is becoming massively distended.
+			<</if>>
+			Below this, the slave $himself
+			<<if isItemAccessible("a huge empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight <= 130>>
+				has a huge empathy belly hanging from $his middle and is
+			<<else>>
+				is
+			<</if>>
+			taking a fuckmachine
+			<<if canDoVaginal($activeSlave)>>
+				in $his cunt;
+				<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
+			<<else>>
+				up $his butt;
+				<<set $activeSlave.counter.anal++, $analTotal++>>
+			<</if>>
+			it's an ejaculating model, and it's filled $him so completely that each thrust sends a gush of fake cum down $his legs to join the puddle on the floor.
+		<<case "incubus">>
+			powerfully fucking an avatar of $activeSlave.slaveName with a dick sized to perfectly fill $him.
+			<<if canDoVaginal($activeSlave)>>
+				Below this, the slave $himself is taking hard vaginal from a fuckmachine;
+				<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
+			<<else>>
+				Below this, the slave $himself is taking hard anal from a fuckmachine;
+				<<set $activeSlave.counter.anal++, $analTotal++>>
+			<</if>>
+			it's an ejaculating model, and it's filled $him so completely that each thrust sends a gush of fake cum down $his legs to join the puddle on the floor.
+		<<case "succubus">>
+			<<if canPenetrate($activeSlave)>>
+				riding $activeSlave.slaveName's dick. Below this, the slave $himself is humping a realistic fake pussy built into a finely crafted female lower body.
+				<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+			<<else>>
+				being eaten out by an avatar of $activeSlave.slaveName, who is touching $himself in turn. Below this, the slave $himself is performing oral on a realistic fake pussy while masturbating.
+				<<set $activeSlave.counter.oral++, $oralTotal++>>
+			<</if>>
+		<<case "imp">>
+				being eaten out by an avatar of $activeSlave.slaveName, who is touching $himself in turn while the imp yanks a chain connected to $his nipples with one hand and smacks $him with a riding crop with the other. Below this, the slave $himself is performing oral on a realistic fake pussy while masturbating; a pair of <<if $activeSlave.nipples != "fuckable">>clamps attached to $his nipples randomly jerking<<else>>vibrators wedged in $his nipples violently vibrating<</if>> and a whip lined wheel steadily slapping at $his ass and back.
+			<<set $activeSlave.counter.oral++, $oralTotal++>>
+		<<case "witch">>
+			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+				with _hisA prehensile cocks crammed into every available hole in an avatar of $activeSlave.slaveName. Below this, the slave $himself is
+				<<if $activeSlave.belly >= 300000>>
+					face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
+				<<elseif $activeSlave.belly >= 5000>>
+					face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
+				<<else>>
+					face-down,
+				<</if>>
+				with multiple vibrating dildos quivering in $his ass and pussy.
+				<<set $activeSlave.counter.vaginal += 2, $vaginalTotal += 2, $activeSlave.counter.anal += 2, $analTotal += 2>>
+			<<elseif canDoVaginal($activeSlave)>>
+				with _hisA prehensile cocks crammed into every available hole in an avatar of $activeSlave.slaveName. Below this, the slave $himself is
+				<<if $activeSlave.belly >= 300000>>
+					face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
+				<<elseif $activeSlave.belly >= 5000>>
+					face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
+				<<else>>
+					face-down,
+				<</if>>
+				with multiple vibrating dildos quivering in $his pussy.
+				<<set $activeSlave.counter.vaginal += 4, $vaginalTotal += 4>>
+			<<else>>
+				with _hisA prehensile cocks crammed into the asshole of an avatar of $activeSlave.slaveName. Below this, the slave $himself is
+				<<if $activeSlave.belly >= 300000>>
+					face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
+				<<elseif $activeSlave.belly >= 5000>>
+					face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
+				<<else>>
+					face-down,
+				<</if>>
+				with multiple vibrating dildos quivering in $his ass.
+				<<set $activeSlave.counter.anal += 4, $analTotal += 4>>
+			<</if>>
+		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+			with _hisA tentacles crammed into every available hole in an avatar of $activeSlave.slaveName, rapidly pumping eggs into $his quickly swelling body.
+			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+				Below this, the slave $himself
+				<<if isItemAccessible("a huge empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight <= 130>>
+					has a huge empathy belly strapped to $his middle and
+				<</if>>
+				is
+				<<if $activeSlave.belly >= 300000>>
+					face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
+				<<elseif $activeSlave.belly >= 5000>>
+					face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
+				<<else>>
+					face-down,
+				<</if>>
+				while a fuckmachine powerfully fucks $his mouth, ass and pussy.
+				<<set $activeSlave.counter.vaginal += 4, $vaginalTotal += 4, $activeSlave.counter.anal += 4, $analTotal += 4, $activeSlave.counter.oral += 3, $oralTotal += 3>>
+			<<elseif canDoVaginal($activeSlave)>>
+				Below this, the slave $himself
+				<<if isItemAccessible("a huge empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight <= 130>>
+					has a huge empathy belly strapped to $his middle and
+				<</if>>
+				is
+				<<if $activeSlave.belly >= 300000>>
+					face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
+				<<elseif $activeSlave.belly >= 5000>>
+					face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
+				<<else>>
+					face-down,
+				<</if>>
+				with multiple vibrating dildos quivering in $his pussy.
+				<<set $activeSlave.counter.vaginal += 8, $vaginalTotal += 8, $activeSlave.counter.oral += 3, $oralTotal += 3>>
+			<<else>>
+				Below this, the slave $himself
+				<<if isItemAccessible("a huge empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight <= 130>>
+					has a huge empathy belly strapped to $his middle and
+				<</if>>
+				is
+				<<if $activeSlave.belly >= 300000>>
+					face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
+				<<elseif $activeSlave.belly >= 5000>>
+					face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
+				<<else>>
+					face-down,
+				<</if>>
+				with multiple vibrating dildos quivering in $his ass.
+				<<set $activeSlave.counter.anal += 8, $analTotal += 8, $activeSlave.counter.oral += 3, $oralTotal += 3>>
+			<</if>>
+			At different intervals, an undulation moves down the dildo, forcing $him to stretch wide to allow it to pass into $his body. Each "egg" forced into $him coincides with another blast from the ejaculating model, and it's filled $him so completely that each gush of fake cum flows down $his legs to join the puddle on the floor.
+		<</switch>>
+		"@@.hotpink;Good $girl,@@" $assistantName says. The new slave turns resolutely away from the arresting sight and gets on with the inspection, doing _hisU best to ignore the lewd noises coming from that part of the room.
+		<<set $activeSlave.devotion += 4>>
+	<</replace>>
+<</link>>
+<br><<link "Get the slave to get to the point">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You tell $activeSlave.slaveName that $he and your personal assistant really should get a room. $He looks at $assistantName's avatar, and then back up at you. $He gives you a mischievous look, and then bends down to whisper to the avatar behind $his hand.
+		<<switch $assistantAppearance>>
+		<<case "monstergirl">>
+			"Why not," the monstergirl chuckles,
+		<<case "shemale">>
+			"Oh yeah, sure," the shemale giggles,
+		<<case "amazon">>
+			"Fuck yes," the amazon exclaims,
+		<<case "businesswoman">>
+			"Because you asked," the businesswoman says,
+		<<case "fairy" "pregnant fairy">>
+			"Of course, cutie!" the fairy giggles,
+		<<case "schoolgirl">>
+			"Aw, hot! Of course," the schoolgirl giggles,
+		<<case "goddess" "hypergoddess">>
+			"Oh, lovely," the goddess says beatifically,
+		<<case "loli">>
+			"K-kay," the _loliA says naïvely,
+		<<case "preggololi">>
+			"Okay," the _loliA says excitedly,
+		<<case "angel">>
+			"What? But..." the angel says reluctantly,
+		<<case "cherub">>
+			"Sounds fun," the cherub says with a giggle,
+		<<case "incubus">>
+			"I'd never turn down getting my dick sucked," the incubus beams,
+		<<case "succubus">>
+			"You know it," the succubus exclaims,
+		<<case "imp">>
+			"Fuck yes," the imp shouts,
+		<<case "witch">>
+			"That would be nice," the witch says with a blush,
+		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+			"Like you had a choice," the creature screams,
+		<</switch>>
+		and directs $him to an unoccupied room with the necessary sex toys.
+		<br><br>
+		Several minutes later, $assistantName's avatar reappears on your desk,
+		<<if ($activeSlave.fetishKnown == 0) || ($activeSlave.fetish == "none")>>
+			making love to an avatar of $activeSlave.slaveName.
+		<<elseif $activeSlave.fetish == "buttslut">>
+			fucking an avatar of $activeSlave.slaveName up the ass. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar, which is a little overwhelmed, waves weakly.
+			<<if canDoAnal($activeSlave)>>
+				<<set $activeSlave.counter.anal++, $analTotal++>>
 			<</if>>
-			while a fuckmachine powerfully fucks $his mouth, ass and pussy.
-			<<set $activeSlave.counter.vaginal += 4, $vaginalTotal += 4, $activeSlave.counter.anal += 4, $analTotal += 4, $activeSlave.counter.oral += 3, $oralTotal += 3>>
-		<<elseif canDoVaginal($activeSlave)>>
-			Below this, the slave $himself
-			<<if isItemAccessible("a huge empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight <= 130>>
-				has a huge empathy belly strapped to $his middle and
+		<<elseif $activeSlave.fetish == "cumslut">>
+			getting oral from an avatar of $activeSlave.slaveName. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar waves, since $his mouth is full.
+			<<set $activeSlave.counter.oral++, $oralTotal++>>
+		<<elseif $activeSlave.fetish == "sadist">>
+			getting spanked by an avatar of $activeSlave.slaveName. "Oh, ah, e-excellent idea, <<= properTitle()>>, ow," _heA says, and the slave's avatar waves.
+		<<elseif $activeSlave.fetish == "masochist">>
+			raining spanks on an avatar of $activeSlave.slaveName as it kisses and licks $his lower legs. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar waves weakly, since $his mouth is busy.
+			<<set $activeSlave.counter.oral++, $oralTotal++>>
+		<<elseif $activeSlave.fetish == "dom">>
+			getting fucked by an avatar of $activeSlave.slaveName. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar waves cheerily.
+			<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+		<<elseif $activeSlave.fetish == "submissive">>
+			along with a crowd of copies of $himself. They're gangbanging an avatar of $activeSlave.slaveName. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar waves weakly.
+			<<set $activeSlave.counter.oral += 5, $oralTotal += 5>>
+			<<if canDoAnal($activeSlave)>>
+				<<set $activeSlave.counter.anal += 5, $analTotal += 5>>
 			<</if>>
-			is
-			<<if $activeSlave.belly >= 300000>>
-				face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
-			<<elseif $activeSlave.belly >= 5000>>
-				face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
+			<<if canDoVaginal($activeSlave)>>
+				<<set $activeSlave.counter.vaginal += 5, $vaginalTotal += 5>>
+			<</if>>
+		<<elseif $activeSlave.fetish == "boobs">>
+			kissing and sucking the nipples of an avatar of $activeSlave.slaveName. "Excellent idea, <<= properTitle()>>," _heA breaks off to say, and the slave's avatar waves.
+			<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
+		<<elseif $activeSlave.fetish == "pregnancy">>
+			<<switch $assistantAppearance>>
+			<<case "goddess" "hypergoddess" "incubus" "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+				fucking a heavily pregnant avatar of $activeSlave.slaveName, each thrust producing the lewd sound of a cum-filled hole being fucked. "Excellent idea, <<= properTitle()>>," _heA says, thrusting hard and swelling $his partner's belly a bit more; the slave's avatar, which is a little overwhelmed and very full, waves weakly, before returning $his hand to $his overfilled middle.
+			<<default>>
+				fucking an avatar of $activeSlave.slaveName, each thrust producing the lewd sound of a cum-filled hole being fucked. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar, which is a little overwhelmed, waves weakly.
+			<</switch>>
+			<<if canDoVaginal($activeSlave)>>
+				<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
 			<<else>>
-				face-down,
+				<<set $activeSlave.counter.anal++, $analTotal++>>
 			<</if>>
-			with multiple vibrating dildos quivering in $his pussy.
-			<<set $activeSlave.counter.vaginal += 8, $vaginalTotal += 8, $activeSlave.counter.oral += 3, $oralTotal += 3>>
 		<<else>>
-			Below this, the slave $himself
-			<<if isItemAccessible("a huge empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight <= 130>>
-				has a huge empathy belly strapped to $his middle and
-			<</if>>
-			is
-			<<if $activeSlave.belly >= 300000>>
-				face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
-			<<elseif $activeSlave.belly >= 5000>>
-				face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
+			making sweet love to an avatar of $activeSlave.slaveName, in the missionary position. "Excellent idea, <<= properTitle()>>," _heA says, and then goes back to kissing the slave's delighted avatar.
+			<<if canDoVaginal($activeSlave)>>
+				<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
 			<<else>>
-				face-down,
+				<<set $activeSlave.counter.anal++, $analTotal++>>
 			<</if>>
-			with multiple vibrating dildos quivering in $his ass.
-			<<set $activeSlave.counter.anal += 8, $analTotal += 8, $activeSlave.counter.oral += 3, $oralTotal += 3>>
 		<</if>>
-		At different intervals, an undulation moves down the dildo, forcing $him to stretch wide to allow it to pass into $his body. Each "egg" forced into $him coincides with another blast from the ejaculating model, and it's filled $him so completely that each gush of fake cum flows down $his legs to join the puddle on the floor.
-	<</switch>>
-	"@@.hotpink;Good $girl,@@" $assistantName says. The new slave turns resolutely away from the arresting sight and gets on with the inspection, doing _hisU best to ignore the lewd noises coming from that part of the room.
-	<<set $activeSlave.devotion += 4>>
+		$activeSlave.slaveName probably isn't thinking about how far this is from vanilla human sexuality at the moment. But if $he took a moment to reflect, you muse, $he might be surprised at what @@.mediumaquamarine;$he's learned to be comfortable with.@@
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
-<br><<link "Get the slave to get to the point">>
+
+<<case "dick wringing">>
+
+<<link "Address $his problem together">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $activeSlave.slaveName that $he and your personal assistant really should get a room. $He looks at $assistantName's avatar, and then back up at you. $He gives you a mischievous look, and then bends down to whisper to the avatar behind $his hand.
-	<<switch $assistantAppearance>>
-	<<case "monstergirl">>
-		"Why not," the monstergirl chuckles,
-	<<case "shemale">>
-		"Oh yeah, sure," the shemale giggles,
-	<<case "amazon">>
-		"Fuck yes," the amazon exclaims,
-	<<case "businesswoman">>
-		"Because you asked," the businesswoman says,
-	<<case "fairy" "pregnant fairy">>
-		"Of course, cutie!" the fairy giggles,
-	<<case "schoolgirl">>
-		"Aw, hot! Of course," the schoolgirl giggles,
-	<<case "goddess" "hypergoddess">>
-		"Oh, lovely," the goddess says beatifically,
-	<<case "loli">>
-		"K-kay," the _loliA says naïvely,
-	<<case "preggololi">>
-		"Okay," the _loliA says excitedly,
-	<<case "angel">>
-		"What? But..." the angel says reluctantly,
-	<<case "cherub">>
-		"Sounds fun," the cherub says with a giggle,
-	<<case "incubus">>
-		"I'd never turn down getting my dick sucked," the incubus beams,
-	<<case "succubus">>
-		"You know it," the succubus exclaims,
-	<<case "imp">>
-		"Fuck yes," the imp shouts,
-	<<case "witch">>
-		"That would be nice," the witch says with a blush,
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		"Like you had a choice," the creature screams,
-	<</switch>>
-	and directs $him to an unoccupied room with the necessary sex toys.
-	<br><br>
-	Several minutes later, $assistantName's avatar reappears on your desk,
-	<<if ($activeSlave.fetishKnown == 0) || ($activeSlave.fetish == "none")>>
-		making love to an avatar of $activeSlave.slaveName.
-	<<elseif $activeSlave.fetish == "buttslut">>
-		fucking an avatar of $activeSlave.slaveName up the ass. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar, which is a little overwhelmed, waves weakly.
-		<<if canDoAnal($activeSlave)>>
-			<<set $activeSlave.counter.anal++, $analTotal++>>
+		You step in and give $him a quick kiss on the lips, telling $him you'd be happy to. $He was confident you would, but the tenderness makes $his breath catch a little. You take $him by $his
+		<<if $activeSlave.weight > 130>>
+			fat
+		<<elseif $activeSlave.weight > 95>>
+			chubby
+		<<elseif $activeSlave.muscles > 30>>
+			strong
+		<<elseif $activeSlave.shoulders < 0>>
+			pretty little
+		<<elseif $activeSlave.shoulders > 1>>
+			broad
+		<<else>>
+			feminine
 		<</if>>
-	<<elseif $activeSlave.fetish == "cumslut">>
-		getting oral from an avatar of $activeSlave.slaveName. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar waves, since $his mouth is full.
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<elseif $activeSlave.fetish == "sadist">>
-		getting spanked by an avatar of $activeSlave.slaveName. "Oh, ah, e-excellent idea, <<= properTitle()>>, ow," _heA says, and the slave's avatar waves.
-	<<elseif $activeSlave.fetish == "masochist">>
-		raining spanks on an avatar of $activeSlave.slaveName as it kisses and licks $his lower legs. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar waves weakly, since $his mouth is busy.
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<<elseif $activeSlave.fetish == "dom">>
-		getting fucked by an avatar of $activeSlave.slaveName. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar waves cheerily.
-		<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-	<<elseif $activeSlave.fetish == "submissive">>
-		along with a crowd of copies of $himself. They're gangbanging an avatar of $activeSlave.slaveName. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar waves weakly.
-		<<set $activeSlave.counter.oral += 5, $oralTotal += 5>>
-		<<if canDoAnal($activeSlave)>>
-			<<set $activeSlave.counter.anal += 5, $analTotal += 5>>
+		shoulders and keep kissing $him, steering $him backwards into your office. $He gets the idea and cooperates as best $he can, giggling <<if $activeSlave.voice == 0>>mutely<<else>>cutely<</if>> into your mouth as $his hot and increasingly horny body bumps against your own.
+		<br><br>
+		When $his
+		<<if $activeSlave.butt > 12>>
+			monumental ass
+		<<elseif $activeSlave.butt > 7>>
+			titanic ass
+		<<elseif $activeSlave.butt > 4>>
+			big butt
+		<<else>>
+			cute rear
 		<</if>>
-		<<if canDoVaginal($activeSlave)>>
-			<<set $activeSlave.counter.vaginal += 5, $vaginalTotal += 5>>
+		touches the edge of your desk, the
+		<<if $activeSlave.height > 180>>
+			tall $desc leans back
+		<<elseif $activeSlave.height > 155>>
+			$desc reclines
+		<<else>>
+			short $desc hops up
 		<</if>>
-	<<elseif $activeSlave.fetish == "boobs">>
-		kissing and sucking the nipples of an avatar of $activeSlave.slaveName. "Excellent idea, <<= properTitle()>>," _heA breaks off to say, and the slave's avatar waves.
-		<<set $activeSlave.counter.mammary++, $mammaryTotal++>>
-	<<elseif $activeSlave.fetish == "pregnancy">>
-		<<switch $assistantAppearance>>
-		<<case "goddess" "hypergoddess" "incubus" "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-			fucking a heavily pregnant avatar of $activeSlave.slaveName, each thrust producing the lewd sound of a cum-filled hole being fucked. "Excellent idea, <<= properTitle()>>," _heA says, thrusting hard and swelling $his partner's belly a bit more; the slave's avatar, which is a little overwhelmed and very full, waves weakly, before returning $his hand to $his overfilled middle.
-		<<default>>
-			fucking an avatar of $activeSlave.slaveName, each thrust producing the lewd sound of a cum-filled hole being fucked. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar, which is a little overwhelmed, waves weakly.
-		<</switch>>
-		<<if canDoVaginal($activeSlave)>>
-			<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
+		to lie across it, using a hand to lay $his inhumanly big dick
+		<<if $activeSlave.belly > 10000>>
+			onto $his _belly <<if $activeSlave.bellyPreg > 0>>pregnant <</if>>belly.
+		<<elseif $activeSlave.weight > 160>>
+			across $his gut.
+		<<elseif $activeSlave.boobs > 5000>>
+			in the warm canyon formed by $his inhumanly big boobs.
+		<<elseif $activeSlave.weight > 95>>
+			across $his soft belly.
+		<<elseif $activeSlave.belly > 1500>>
+			over $his _belly <<if $activeSlave.bellyPreg > 0>>pregnant <</if>>belly.
+		<<elseif $activeSlave.muscles > 30>>
+			across $his ripped abs.
+		<<elseif $activeSlave.weight > 10>>
+			across $his plush stomach.
 		<<else>>
-			<<set $activeSlave.counter.anal++, $analTotal++>>
+			up $his stomach.
 		<</if>>
-	<<else>>
-		making sweet love to an avatar of $activeSlave.slaveName, in the missionary position. "Excellent idea, <<= properTitle()>>," _heA says, and then goes back to kissing the slave's delighted avatar.
+		$He spreads $his legs as wide as they'll go, and reaches down to spread $his buttocks even wider, offering you $his
+		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+			holes.
+		<<elseif canDoVaginal($activeSlave)>>
+			pussy.
+		<<else>>
+			asshole.
+		<</if>>
+		$He <<if $activeSlave.voice == 0>>tries to groan<<else>>groans<</if>> with anticipation of the coming relief as you slide <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> past $his
 		<<if canDoVaginal($activeSlave)>>
-			<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
+			pussylips and inside $his womanhood.
+			<<= VaginalVCheck()>>
 		<<else>>
-			<<set $activeSlave.counter.anal++, $analTotal++>>
+			sphincter and inside $his asspussy.
+			<<= AnalVCheck()>>
 		<</if>>
-	<</if>>
-	$activeSlave.slaveName probably isn't thinking about how far this is from vanilla human sexuality at the moment. But if $he took a moment to reflect, you muse, $he might be surprised at what @@.mediumaquamarine;$he's learned to be comfortable with.@@
-	<<set $activeSlave.trust += 4>>
-	<</replace>>
-<</link>>
-
-<<case "dick wringing">>
-
-<<link "Address $his problem together">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You step in and give $him a quick kiss on the lips, telling $him you'd be happy to. $He was confident you would, but the tenderness makes $his breath catch a little. You take $him by $his
-	<<if $activeSlave.weight > 130>>
-		fat
-	<<elseif $activeSlave.weight > 95>>
-		chubby
-	<<elseif $activeSlave.muscles > 30>>
-		strong
-	<<elseif $activeSlave.shoulders < 0>>
-		pretty little
-	<<elseif $activeSlave.shoulders > 1>>
-		broad
-	<<else>>
-		feminine
-	<</if>>
-	shoulders and keep kissing $him, steering $him backwards into your office. $He gets the idea and cooperates as best $he can, giggling <<if $activeSlave.voice == 0>>mutely<<else>>cutely<</if>> into your mouth as $his hot and increasingly horny body bumps against your own.
-	<br><br>
-	When $his
-	<<if $activeSlave.butt > 12>>
-		monumental ass
-	<<elseif $activeSlave.butt > 7>>
-		titanic ass
-	<<elseif $activeSlave.butt > 4>>
-		big butt
-	<<else>>
-		cute rear
-	<</if>>
-	touches the edge of your desk, the
-	<<if $activeSlave.height > 180>>
-		tall $desc leans back
-	<<elseif $activeSlave.height > 155>>
-		$desc reclines
-	<<else>>
-		short $desc hops up
-	<</if>>
-	to lie across it, using a hand to lay $his inhumanly big dick
-	<<if $activeSlave.belly > 10000>>
-		onto $his _belly <<if $activeSlave.bellyPreg > 0>>pregnant <</if>>belly.
-	<<elseif $activeSlave.weight > 160>>
-		across $his gut.
-	<<elseif $activeSlave.boobs > 5000>>
-		in the warm canyon formed by $his inhumanly big boobs.
-	<<elseif $activeSlave.weight > 95>>
-		across $his soft belly.
-	<<elseif $activeSlave.belly > 1500>>
-		over $his _belly <<if $activeSlave.bellyPreg > 0>>pregnant <</if>>belly.
-	<<elseif $activeSlave.muscles > 30>>
-		across $his ripped abs.
-	<<elseif $activeSlave.weight > 10>>
-		across $his plush stomach.
-	<<else>>
-		up $his stomach.
-	<</if>>
-	$He spreads $his legs as wide as they'll go, and reaches down to spread $his buttocks even wider, offering you $his
-	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-		holes.
-	<<elseif canDoVaginal($activeSlave)>>
-		pussy.
-	<<else>>
-		asshole.
-	<</if>>
-	$He <<if $activeSlave.voice == 0>>tries to groan<<else>>groans<</if>> with anticipation of the coming relief as you slide <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> past $his
-	<<if canDoVaginal($activeSlave)>>
-		pussylips and inside $his womanhood.
-		<<= VaginalVCheck()>>
-	<<else>>
-		sphincter and inside $his asspussy.
-		<<= AnalVCheck()>>
-	<</if>>
-	<br><br>
-	It doesn't take long. $His <<if $activeSlave.scrotum == 0>>invisible but overfull balls<<else>>balls tighten and<</if>> shoot cum into $his soft python of a dick, but not a drop appears at its tip. Gasping at the mixed relief and discomfort, $he lets $his butt go and wriggles around to grab $his dick around its base with both hands. $He squeezes it from base to tip to bring out its contents. $He's so huge that $he's able to reach down with $his lips and get $his cockhead into $his mouth, the meat filling it entirely. $He sucks industriously, swallowing $his own load. $He was just trying to relieve the pressure, but the added stimulation brings $him to climax again. Silenced by $his own dickhead, $he shudders deliciously and starts over, wringing more cum into $his own mouth. You change angles, bringing the hard head of <<if $PC.dick == 1>>your own penis<<else>>your phallus<</if>> against $his prostate and forcing an agonizing third climax.
-	<br><br>
-	$He's so discombobulated by this that $he goes limp, offering no resistance as you extract yourself, <<if $PC.dick == 1>>straddle $his torso, and press your dick inside $his mouth to climax there, adding your own ejaculate<<else>>slip out of the harness with the ease of long practice, and straddle $his face so that your climax adds a good quantity of your pussyjuice<</if>> to everything $he's already gotten down<<if $PC.vagina == 1>><<if $PC.dick == 1>> and leaving quite a lot of your pussyjuice on $his chin<</if>><</if>>. When you finally release $him, $he slithers down to the floor, utterly spent.
-	<<if !canTalk($activeSlave)>>
-		$He raises a shaky hand to @@.mediumaquamarine;gesture thanks.@@
-	<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>
-		"@@.mediumaquamarine;Thank you,@@ <<Master>>," $he lisps weakly.
-	<<else>>
-		"@@.mediumaquamarine;Thank you,@@ <<Master>>," $he murmurs in a tiny voice.
-	<</if>>
-	<<set $activeSlave.trust += 4>>
+		<br><br>
+		It doesn't take long. $His <<if $activeSlave.scrotum == 0>>invisible but overfull balls<<else>>balls tighten and<</if>> shoot cum into $his soft python of a dick, but not a drop appears at its tip. Gasping at the mixed relief and discomfort, $he lets $his butt go and wriggles around to grab $his dick around its base with both hands. $He squeezes it from base to tip to bring out its contents. $He's so huge that $he's able to reach down with $his lips and get $his cockhead into $his mouth, the meat filling it entirely. $He sucks industriously, swallowing $his own load. $He was just trying to relieve the pressure, but the added stimulation brings $him to climax again. Silenced by $his own dickhead, $he shudders deliciously and starts over, wringing more cum into $his own mouth. You change angles, bringing the hard head of <<if $PC.dick == 1>>your own penis<<else>>your phallus<</if>> against $his prostate and forcing an agonizing third climax.
+		<br><br>
+		$He's so discombobulated by this that $he goes limp, offering no resistance as you extract yourself, <<if $PC.dick == 1>>straddle $his torso, and press your dick inside $his mouth to climax there, adding your own ejaculate<<else>>slip out of the harness with the ease of long practice, and straddle $his face so that your climax adds a good quantity of your pussyjuice<</if>> to everything $he's already gotten down<<if $PC.vagina == 1>><<if $PC.dick == 1>> and leaving quite a lot of your pussyjuice on $his chin<</if>><</if>>. When you finally release $him, $he slithers down to the floor, utterly spent.
+		<<if !canTalk($activeSlave)>>
+			$He raises a shaky hand to @@.mediumaquamarine;gesture thanks.@@
+		<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>
+			"@@.mediumaquamarine;Thank you,@@ <<Master>>," $he lisps weakly.
+		<<else>>
+			"@@.mediumaquamarine;Thank you,@@ <<Master>>," $he murmurs in a tiny voice.
+		<</if>>
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <br><<link "Use $his trouble to dominate $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You step in and trace a <<if $PC.title == 1>>strong<<else>>feminine<</if>> hand across $his lips before inserting two fingers into $his mouth. $He looks puzzled, but obediently begins to suck on your fingers. You use your other hand to explore $his body, titillating the heavily aroused $desc until $he's on the verge of orgasm. Without warning, you place an elastic band around the slave's dickhead. $He writhes with discomfort, but knows better than to protest. It's tight, but not agonizingly so. $He'll be able to cum, but not a drop will get out. Grabbing $him by a nipple<<if $activeSlave.nipples == "fuckable">>cunt<</if>>, you pull $him down to $his knees, enjoying the motion of $his body as $he wriggles with the discomfort of being tugged this way, the uncomfortable thing squeezing the tip of $his cock, and the suspicion that this is going to be tough.
-	<br><br>
-	Once $he's in position, you
-	<<if $activeSlave.butt > 12>>
-		struggle to wrap you arms around $his bountiful buttcheeks,
-	<<elseif $activeSlave.butt > 7>>
-		heft $his ridiculous buttcheeks possessively,
-	<<elseif $activeSlave.butt > 4>>
-		give $his huge ass a possessive squeeze,
-	<<else>>
-		run your hands across $his bottom,
-	<</if>>
-	and then shove <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>
-	<<if canDoVaginal($activeSlave)>>
-		inside $his cunt.
-		<<= VaginalVCheck()>>
-	<<else>>
-		up $his butt.
-		<<= AnalVCheck()>>
-	<</if>>
-	$His cock is so long that it drags along the floor as you pound
-	<<if $activeSlave.belly >= 300000>>
-		$him against $his _belly dome of a stomach.
-	<<elseif $activeSlave.boobs > 12000>>
-		$him, $his enormous tits serving as a cushion for $his torso to rest against.
-	<<elseif $activeSlave.boobs > 7000>>
-		$him, accompanied by the nipples that cap $his absurd boobs.
-	<<else>>
-		$him.
-	<</if>>
-	<br><br>
-	$He's so pent up that $he reaches $his first climax quickly, filling $his capped dick with cum. $He <<if $activeSlave.voice == 0>>tries to moan<<else>>moans<</if>> at the combination of relief and pressure inside $his dick, and then slumps a little when $he feels the <<if $PC.dick == 1>>penis<<else>>hard phallus<</if>> inside $him fuck $him even harder, forcing $him towards a second orgasm. And after that one, a third. And a fourth.
-	<br><br>
-	When you finally climax yourself, you stand, leaving $him writhing at your feet with $his huge soft cock positively pressurized. Considering the situation, you kneel down at $his side, deciding what to do. Stroking $him in a mockery of reassurance, you grab $his agonized member, producing a <<if $activeSlave.voice == 0>>gaping, silent scream<<else>>little shriek<</if>>.
-	<<if $activeSlave.toyHole == "dick" && ($PC.preg == 0 || $PC.vagina == 0)>>
-		You maneuver the massive thing into your own <<if $PC.preg == 0 && $PC.vagina == 1>>pussy<<else>>asshole<</if>>, slide a finger in alongside the monstrous thing as $he <<if $activeSlave.voice == 0>>moans with expectation<<else>>begs abjectly to unleash $his<</if>>, and pop the elastic off. You get to watch $his face as $he floods your <<if $PC.preg == 0 && $PC.vagina == 1>>womanhood<<else>>bowels<</if>> with cum, your stomach taking on a distinctive swell as $his pent-up load empties into you.
-		<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
-		<<if canImpreg($PC, $activeSlave)>>
-			<<= knockMeUp($PC, 50, 0, $activeSlave.ID)>>
+		You step in and trace a <<if $PC.title == 1>>strong<<else>>feminine<</if>> hand across $his lips before inserting two fingers into $his mouth. $He looks puzzled, but obediently begins to suck on your fingers. You use your other hand to explore $his body, titillating the heavily aroused $desc until $he's on the verge of orgasm. Without warning, you place an elastic band around the slave's dickhead. $He writhes with discomfort, but knows better than to protest. It's tight, but not agonizingly so. $He'll be able to cum, but not a drop will get out. Grabbing $him by a nipple<<if $activeSlave.nipples == "fuckable">>cunt<</if>>, you pull $him down to $his knees, enjoying the motion of $his body as $he wriggles with the discomfort of being tugged this way, the uncomfortable thing squeezing the tip of $his cock, and the suspicion that this is going to be tough.
+		<br><br>
+		Once $he's in position, you
+		<<if $activeSlave.butt > 12>>
+			struggle to wrap you arms around $his bountiful buttcheeks,
+		<<elseif $activeSlave.butt > 7>>
+			heft $his ridiculous buttcheeks possessively,
+		<<elseif $activeSlave.butt > 4>>
+			give $his huge ass a possessive squeeze,
+		<<else>>
+			run your hands across $his bottom,
 		<</if>>
-	<<else>>
-		You maneuver the massive thing inside the slave's own well-fucked <<if $activeSlave.vagina > -1>>pussy<<else>>asshole<</if>>, and then slide fingers in alongside the monstrous thing as $he <<if $activeSlave.voice == 0>>cries desperately<<else>>begs abjectly for mercy<</if>>. Popping the elastic off, you get to watch $his face as $he floods $his own <<if $activeSlave.vagina > -1>>womanhood<<else>>bowels<</if>> with cum.
+		and then shove <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>
 		<<if canDoVaginal($activeSlave)>>
-			<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
-			<<if canGetPregnant($activeSlave) && canBreed($activeSlave, $activeSlave) && $activeSlave.vasectomy != 1>> /* can't miss the opportunity to knock $himself up */
-				<<= knockMeUp($activeSlave, 20, 0, $activeSlave.ID, 1)>>
+			inside $his cunt.
+			<<= VaginalVCheck()>>
+		<<else>>
+			up $his butt.
+			<<= AnalVCheck()>>
+		<</if>>
+		$His cock is so long that it drags along the floor as you pound
+		<<if $activeSlave.belly >= 300000>>
+			$him against $his _belly dome of a stomach.
+		<<elseif $activeSlave.boobs > 12000>>
+			$him, $his enormous tits serving as a cushion for $his torso to rest against.
+		<<elseif $activeSlave.boobs > 7000>>
+			$him, accompanied by the nipples that cap $his absurd boobs.
+		<<else>>
+			$him.
+		<</if>>
+		<br><br>
+		$He's so pent up that $he reaches $his first climax quickly, filling $his capped dick with cum. $He <<if $activeSlave.voice == 0>>tries to moan<<else>>moans<</if>> at the combination of relief and pressure inside $his dick, and then slumps a little when $he feels the <<if $PC.dick == 1>>penis<<else>>hard phallus<</if>> inside $him fuck $him even harder, forcing $him towards a second orgasm. And after that one, a third. And a fourth.
+		<br><br>
+		When you finally climax yourself, you stand, leaving $him writhing at your feet with $his huge soft cock positively pressurized. Considering the situation, you kneel down at $his side, deciding what to do. Stroking $him in a mockery of reassurance, you grab $his agonized member, producing a <<if $activeSlave.voice == 0>>gaping, silent scream<<else>>little shriek<</if>>.
+		<<if $activeSlave.toyHole == "dick" && ($PC.preg == 0 || $PC.vagina == 0)>>
+			You maneuver the massive thing into your own <<if $PC.preg == 0 && $PC.vagina == 1>>pussy<<else>>asshole<</if>>, slide a finger in alongside the monstrous thing as $he <<if $activeSlave.voice == 0>>moans with expectation<<else>>begs abjectly to unleash $his<</if>>, and pop the elastic off. You get to watch $his face as $he floods your <<if $PC.preg == 0 && $PC.vagina == 1>>womanhood<<else>>bowels<</if>> with cum, your stomach taking on a distinctive swell as $his pent-up load empties into you.
+			<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
+			<<if canImpreg($PC, $activeSlave)>>
+				<<= knockMeUp($PC, 50, 0, $activeSlave.ID)>>
 			<</if>>
 		<<else>>
-			<<set $activeSlave.counter.anal++, $analTotal++>>
+			You maneuver the massive thing inside the slave's own well-fucked <<if $activeSlave.vagina > -1>>pussy<<else>>asshole<</if>>, and then slide fingers in alongside the monstrous thing as $he <<if $activeSlave.voice == 0>>cries desperately<<else>>begs abjectly for mercy<</if>>. Popping the elastic off, you get to watch $his face as $he floods $his own <<if $activeSlave.vagina > -1>>womanhood<<else>>bowels<</if>> with cum.
+			<<if canDoVaginal($activeSlave)>>
+				<<set $activeSlave.counter.vaginal++, $vaginalTotal++>>
+				<<if canGetPregnant($activeSlave) && canBreed($activeSlave, $activeSlave) && $activeSlave.vasectomy != 1>> /* can't miss the opportunity to knock $himself up */
+					<<= knockMeUp($activeSlave, 20, 0, $activeSlave.ID, 1)>>
+				<</if>>
+			<<else>>
+				<<set $activeSlave.counter.anal++, $analTotal++>>
+			<</if>>
 		<</if>>
-	<</if>>
-	The cum pressurization brought $him almost to half-hardness, and as this effect diminishes, $his dick slides out again, releasing a lewd torrent of cum. $He cries with overstimulation, relief, pain, and humiliation, @@.hotpink;groveling below you@@ in utter subjugation.
-	<<set $activeSlave.devotion += 4>>
+		The cum pressurization brought $him almost to half-hardness, and as this effect diminishes, $his dick slides out again, releasing a lewd torrent of cum. $He cries with overstimulation, relief, pain, and humiliation, @@.hotpink;groveling below you@@ in utter subjugation.
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 
 <<case "fucktoy tribbing">>
 
 <<link "Make love to $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You crane your neck down and kiss $him on the lips. $He awakens slowly, gently, $his <<= App.Desc.eyeColor($activeSlave)>> eyes fluttering open, looking black in the nighttime gloom. $He smiles into your mouth, and you feel $his pulse quicken through the extensive contact down your bodies. You interlace your fingers between $hers and turn, pressing $him back down into the soft sheets. $He opens $himself for you, spreading $his legs wide and embracing you with them, making sure to run $his heels up the backs of your calves in a way that sends a shiver up your spine. Feeling this through your kissing mouths, $he smiles into you, a pleased expression $he maintains as you
-	<<if $activeSlave.belly >= 300000 && $PC.belly >= 5000>>
-		struggle to find a position to handle both your pregnancy and $his <<if $activeSlave.bellyPreg >= 3000>>_belly gravid middle<<else>>_belly belly<</if>> and
-	<<elseif $activeSlave.belly >= 300000>>
-		struggle to find a position to handle $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> and
-	<<elseif $activeSlave.belly >= 5000 && $PC.belly >= 5000>>
-		shift into a position to better accommodate both your pregnancy and $his <<if $activeSlave.bellyPreg >= 3000>>_belly gravid middle<<else>>_belly belly<</if>> and
-	<<elseif $PC.belly >= 5000>>
-		shift into a position to better accommodate your pregnancy and
-	<<elseif $activeSlave.belly >= 5000>>
-		shift into a position to better accommodate $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> and
-	<</if>>
-	begin to gently press your womanhood against $hers.
-	<br><br>
-	<<if ($activeSlave.fetishKnown == 0)>>
-		Knowing little about $his sexual peccadilloes, but confident that $he'll do $his best to enjoy your lovemaking, you continue this shockingly intimate intercourse until $he climaxes.
-	<<elseif ($activeSlave.fetish == "none")>>
-		Knowing $him to be quite endearingly vanilla, you continue this shockingly intimate intercourse until $he climaxes, kissing $him all the way through your soft missionary lovemaking.
-	<<elseif $activeSlave.fetish == "buttslut">>
-		Knowing $his tastes and wanting the intimacy of mutual pleasure, you slide a hand around behind and under $him so you can tease $his ass. $He gives $his butt a little wiggle of thanks, and orgasms promptly.
-		<<set $activeSlave.counter.anal++, $analTotal++>>
-	<<elseif $activeSlave.fetish == "cumslut">>
-		Knowing $his tastes and wanting the intimacy of mutual pleasure, you slide your tongue into $his mouth, making your kisses so frankly sexual and penetrative that you're practically making oral love at the same time as you do it missionary style.
-	<<elseif $activeSlave.fetish == "sadist">>
-		You know $his tastes, but by the act of this intimate missionary lovemaking, you wordlessly command $him to join you for more conventional pleasures, if only for the moment. $He complies with pleasure, climaxing with surprising speed; perhaps $he appreciates the change.
-	<<elseif $activeSlave.fetish == "masochist">>
-		Knowing $his tastes and wanting the intimacy of mutual pleasure, you nip $his lower lip in your teeth with each kiss, and rake your nails across $his flanks just hard enough to hurt a little. $He climaxes quickly to the mixed pain and missionary intimacy.
-	<<elseif $activeSlave.fetish == "dom">>
-		You know $his tastes, but by the act of this intimate missionary lovemaking, you wordlessly command $him to join you for more equal pleasures, if only for the moment. $He complies with something like relief, climaxing with surprising speed; perhaps $he appreciates a turn on the bottom.
-	<<elseif $activeSlave.fetish == "submissive">>
-		Being on the bottom for some missionary lovemaking is very much to $his tastes, and $he rises to the point of climax with almost indecent speed. You slow your pace to nothing more than a gentle pressure now and then, and keep $him on the edge of orgasm for a long time.
-	<<elseif $activeSlave.fetish == "boobs">>
-		Knowing $his tastes and wanting the intimacy of mutual pleasure, you make sure your nipples line up <<if $activeSlave.nipples == "fuckable">>and interlock <</if>>with $hers as best you can. You note the buck of pleasure this produces each time you get it perfectly right as you make love to $him.
-	<<elseif $activeSlave.fetish == "pregnancy" && $activeSlave.pregKnown == 1>>
-		Being on the bottom for some missionary lovemaking is very much to $his tastes, even though $he is already pregnant. $He builds to orgasm slowly, reveling in the feeling of being your $woman.
-	<<elseif $activeSlave.fetish == "pregnancy">>
-		Being on the bottom for some missionary lovemaking is very much to $his tastes, even though the encounter isn't particularly likely to get $him pregnant. $He builds to orgasm slowly, reveling in the feeling of being your $woman.
-	<</if>>
-	As you made love to $him, the gentle motions, feminine sighs, and delicate aroma of pleasure woke the other girls in bed with you, and they began their own intimacy with each other. As you go back to sleep, you're surrounded with something very like Sapphic paradise. $activeSlave.slaveName nestles up to you once more, embracing you with @@.mediumaquamarine;trust born of love.@@
-	<<set $activeSlave.trust += 4, $activeSlave.counter.vaginal++, $vaginalTotal++>>
+		You crane your neck down and kiss $him on the lips. $He awakens slowly, gently, $his <<= App.Desc.eyeColor($activeSlave)>> eyes fluttering open, looking black in the nighttime gloom. $He smiles into your mouth, and you feel $his pulse quicken through the extensive contact down your bodies. You interlace your fingers between $hers and turn, pressing $him back down into the soft sheets. $He opens $himself for you, spreading $his legs wide and embracing you with them, making sure to run $his heels up the backs of your calves in a way that sends a shiver up your spine. Feeling this through your kissing mouths, $he smiles into you, a pleased expression $he maintains as you
+		<<if $activeSlave.belly >= 300000 && $PC.belly >= 5000>>
+			struggle to find a position to handle both your pregnancy and $his <<if $activeSlave.bellyPreg >= 3000>>_belly gravid middle<<else>>_belly belly<</if>> and
+		<<elseif $activeSlave.belly >= 300000>>
+			struggle to find a position to handle $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> and
+		<<elseif $activeSlave.belly >= 5000 && $PC.belly >= 5000>>
+			shift into a position to better accommodate both your pregnancy and $his <<if $activeSlave.bellyPreg >= 3000>>_belly gravid middle<<else>>_belly belly<</if>> and
+		<<elseif $PC.belly >= 5000>>
+			shift into a position to better accommodate your pregnancy and
+		<<elseif $activeSlave.belly >= 5000>>
+			shift into a position to better accommodate $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> and
+		<</if>>
+		begin to gently press your womanhood against $hers.
+		<br><br>
+		<<if ($activeSlave.fetishKnown == 0)>>
+			Knowing little about $his sexual peccadilloes, but confident that $he'll do $his best to enjoy your lovemaking, you continue this shockingly intimate intercourse until $he climaxes.
+		<<elseif ($activeSlave.fetish == "none")>>
+			Knowing $him to be quite endearingly vanilla, you continue this shockingly intimate intercourse until $he climaxes, kissing $him all the way through your soft missionary lovemaking.
+		<<elseif $activeSlave.fetish == "buttslut">>
+			Knowing $his tastes and wanting the intimacy of mutual pleasure, you slide a hand around behind and under $him so you can tease $his ass. $He gives $his butt a little wiggle of thanks, and orgasms promptly.
+			<<set $activeSlave.counter.anal++, $analTotal++>>
+		<<elseif $activeSlave.fetish == "cumslut">>
+			Knowing $his tastes and wanting the intimacy of mutual pleasure, you slide your tongue into $his mouth, making your kisses so frankly sexual and penetrative that you're practically making oral love at the same time as you do it missionary style.
+		<<elseif $activeSlave.fetish == "sadist">>
+			You know $his tastes, but by the act of this intimate missionary lovemaking, you wordlessly command $him to join you for more conventional pleasures, if only for the moment. $He complies with pleasure, climaxing with surprising speed; perhaps $he appreciates the change.
+		<<elseif $activeSlave.fetish == "masochist">>
+			Knowing $his tastes and wanting the intimacy of mutual pleasure, you nip $his lower lip in your teeth with each kiss, and rake your nails across $his flanks just hard enough to hurt a little. $He climaxes quickly to the mixed pain and missionary intimacy.
+		<<elseif $activeSlave.fetish == "dom">>
+			You know $his tastes, but by the act of this intimate missionary lovemaking, you wordlessly command $him to join you for more equal pleasures, if only for the moment. $He complies with something like relief, climaxing with surprising speed; perhaps $he appreciates a turn on the bottom.
+		<<elseif $activeSlave.fetish == "submissive">>
+			Being on the bottom for some missionary lovemaking is very much to $his tastes, and $he rises to the point of climax with almost indecent speed. You slow your pace to nothing more than a gentle pressure now and then, and keep $him on the edge of orgasm for a long time.
+		<<elseif $activeSlave.fetish == "boobs">>
+			Knowing $his tastes and wanting the intimacy of mutual pleasure, you make sure your nipples line up <<if $activeSlave.nipples == "fuckable">>and interlock <</if>>with $hers as best you can. You note the buck of pleasure this produces each time you get it perfectly right as you make love to $him.
+		<<elseif $activeSlave.fetish == "pregnancy" && $activeSlave.pregKnown == 1>>
+			Being on the bottom for some missionary lovemaking is very much to $his tastes, even though $he is already pregnant. $He builds to orgasm slowly, reveling in the feeling of being your $woman.
+		<<elseif $activeSlave.fetish == "pregnancy">>
+			Being on the bottom for some missionary lovemaking is very much to $his tastes, even though the encounter isn't particularly likely to get $him pregnant. $He builds to orgasm slowly, reveling in the feeling of being your $woman.
+		<</if>>
+		As you made love to $him, the gentle motions, feminine sighs, and delicate aroma of pleasure woke the other slaves in bed with you, and they began their own intimacy with each other. As you go back to sleep, you're surrounded with something very like Sapphic paradise. $activeSlave.slaveName nestles up to you once more, embracing you with @@.mediumaquamarine;trust born of love.@@
+		<<set $activeSlave.trust += 4, $activeSlave.counter.vaginal++, $vaginalTotal++>>
 	<</replace>>
 <</link>>
 <br><<link "Fuck $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You feel your libido building, building, building within you, an endless cycle that mounts rapidly to an inevitable explosion. It comes, and you perform a catlike glide around until your head is at $his feet. As you did, you infiltrated one of your legs between $hers from its convenient starting point. $He wakes suddenly to the feeling of being manhandled, and then comes fully awake to the shockingly intimate sensation of your pussies pressed together as closely as physically possible.
-	<br><br>
-	Holding $his upper thighs with your hands to pull $him against you, you grind into $him, fucking $him about as comprehensively as it's possible for someone without a cock to fuck a $woman. $He's most definitely up for it, and you see $his eyes fly wide in the gloom as the full weight of the pleasure crashes into $him. It's not exactly a position for lovemaking, since your faces are about as far apart as they can possibly be during sex, but kissing be damned, you're here to fuck. Naturally, this evolution wakes everyone else up too, and before long, there's a regular lesbian orgy going on. When it's over, $activeSlave.slaveName finds $himself returning exhaustedly to sleep, one of your arms curled
-	<<if $activeSlave.belly >= 5000>>
-		under $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>
-	<<else>>
-		around $his middle
-	<</if>>
-	to cup $his pussy possessively. $He finds that @@.hotpink;$he doesn't mind.@@ $He's your $girl.
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.vaginal++, $vaginalTotal++>>
+		You feel your libido building, building, building within you, an endless cycle that mounts rapidly to an inevitable explosion. It comes, and you perform a catlike glide around until your head is at $his feet. As you did, you infiltrated one of your legs between $hers from its convenient starting point. $He wakes suddenly to the feeling of being manhandled, and then comes fully awake to the shockingly intimate sensation of your pussies pressed together as closely as physically possible.
+		<br><br>
+		Holding $his upper thighs with your hands to pull $him against you, you grind into $him, fucking $him about as comprehensively as it's possible for someone without a cock to fuck a $woman. $He's most definitely up for it, and you see $his eyes fly wide in the gloom as the full weight of the pleasure crashes into $him. It's not exactly a position for lovemaking, since your faces are about as far apart as they can possibly be during sex, but kissing be damned, you're here to fuck. Naturally, this evolution wakes everyone else up too, and before long, there's a regular lesbian orgy going on. When it's over, $activeSlave.slaveName finds $himself returning exhaustedly to sleep, one of your arms curled
+		<<if $activeSlave.belly >= 5000>>
+			under $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>
+		<<else>>
+			around $his middle
+		<</if>>
+		to cup $his pussy possessively. $He finds that @@.hotpink;$he doesn't mind.@@ $He's your $girl.
+		<<set $activeSlave.devotion += 4, $activeSlave.counter.vaginal++, $vaginalTotal++>>
 	<</replace>>
 <</link>>
 
@@ -16614,254 +16619,254 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Treat $him right">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You give $him a reassuring swat across the rump and tell $him you'd be happy to. You head toward the utility area with the milkers, and $he follows eagerly behind you,
-	<<if $activeSlave.fetish == "boobs">>
-		very ready to have you touch $his favorite part of $his body.
-	<<else>>
-		pleased you'd do this for $him and very ready to relieve the pressure in $his tits.
-	<</if>>
-	To $his surprise, you seat yourself on a stool and draw $him onto your lap rather than sitting $him at a milking machine. Reaching behind yourself, you give the $desc cow on your lap a broad bucket, and tell $him to hold it
-	<<if $activeSlave.belly >= 5000>>
-		under $his breasts as best $he can, given $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly.
-	<<else>>
-		on $his lap.
-	<</if>>
-	Then you reach around $him and take $his
-	<<if $activeSlave.boobs > 6000>>
-		gargantuan
-	<<elseif $activeSlave.boobs > 2000>>
-		huge
-	<<else>>
-		heavy
-	<</if>>
-	udders in your hands. $He gasps as $he realizes exactly how you plan to do this, and adjusts the bucket so it's below both of $his nipples at once.
-	<br><br>
-	$He instinctually expects the rhythmic tugging that the milkers usually produce, but what $he gets is a methodical massage of $his breasts, both at once. They're large enough to be more than a single handful, so you go bit by bit, ensuring that no part of $his udders goes untouched. $His nipples start to gush milk without help after a few moments of this, and $he groans with relief and satisfaction as $he feels $his breasts begin to empty and enjoys the sensation of the massage.
-	<<if $activeSlave.fetish == "boobs">>
-		$He orgasms strongly soon after the first jet of milk, producing an especially thick squirt.
-	<</if>>
-	After you're satisfied, you move your hands to $his nipples and milk $him like a cow, getting the last drops of milk out of $him
-	<<if $activeSlave.fetish == "boobs">>
-		and producing a shuddering series of aftershocks.
-	<<else>>
-		and bringing $him to a surprise orgasm.
-	<</if>>
-	When $he's done, $he leans back into you for a moment before setting the milk bucket down, a wordless gesture of @@.mediumaquamarine;considerable trust.@@ It means a lot to $him that you would milk $him yourself.
-	<<set $activeSlave.trust += 4, $activeSlave.counter.mammary++, $mammaryTotal++>>
-	<<set $activeSlave.lactationDuration = 2>>
-	<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
-	<</replace>>
-<</link>>
-<br><<link "Treat $him like a cow">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You ask $him if $he really wants to be treated like a cow. $He nods, a bit hesitantly, sensing a certain danger but not really knowing what else to do. You lead $him to the utility area of the penthouse, where the milkers are, but stop $him when $he starts for one. Instead, you
-	<<if $activeSlave.belly >= 300000>>
-		pull $him over $his _belly belly with $his udders hanging beneath $his<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>.
-	<<else>>
-		fetch a pair of low stools, make $him kneel on one, and put $his hands on the other, so $he's on all fours with $his udders hanging beneath $his<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>.
-	<</if>>
-	<br><br>
-	You swing a bucket under $his nipples and milk $him by hand, as though $he were a cow. This isn't exactly what $he had in mind, but the feeling of your hands on $his nipples, tugging the streams of milk out of $him and into the bucket beneath <<if $activeSlave.fetish == "boobs">>brings $his very close to orgasm<<else>>eventually relaxes $his<</if>>. Seeing this, you muse aloud, as though to yourself, that a little farmyard bestiality wouldn't hurt, since there's no one here but you and a dairy cow. Pawing the cow's behind possessively, you finger $him aggressively before deciding on
-	<<if canDoVaginal($activeSlave) && $PC.dick == 1>>
-		a little cow pussy. You walk around behind $him and fuck $him hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below.
-		<<= VaginalVCheck()>>
-		When you're finished, you step away, leaving your cum to run out of $his cunt and down $his thighs,
-	<<elseif canDoAnal($activeSlave) && $PC.dick == 1>>
-		some cow ass. You walk around behind $him and buttfuck $his hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below.
-		<<= AnalVCheck()>>
-		When you're finished, you step away, leaving your cum to drip out of $his gaped asshole,
-	<<else>>
-		a little cow tongue action.
-		<<if $PC.vagina == 1>>
-			You stand up and grind your pussy against the cow's upturned mouth, humping $his face hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below.<<if $PC.dick == 1>> You pull away when you're about halfway there, only to shove your cock down $his throat instead.<</if>> When you're finished, you step away, leaving $his face thoroughly coated in girlcum<<if $PC.dick == 1>> and $his mouth full of your load<</if>>,
+		You give $him a reassuring swat across the rump and tell $him you'd be happy to. You head toward the utility area with the milkers, and $he follows eagerly behind you,
+		<<if $activeSlave.fetish == "boobs">>
+			very ready to have you touch $his favorite part of $his body.
+		<<else>>
+			pleased you'd do this for $him and very ready to relieve the pressure in $his tits.
+		<</if>>
+		To $his surprise, you seat yourself on a stool and draw $him onto your lap rather than sitting $him at a milking machine. Reaching behind yourself, you give the $desc cow on your lap a broad bucket, and tell $him to hold it
+		<<if $activeSlave.belly >= 5000>>
+			under $his breasts as best $he can, given $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly.
+		<<else>>
+			on $his lap.
+		<</if>>
+		Then you reach around $him and take $his
+		<<if $activeSlave.boobs > 6000>>
+			gargantuan
+		<<elseif $activeSlave.boobs > 2000>>
+			huge
+		<<else>>
+			heavy
+		<</if>>
+		udders in your hands. $He gasps as $he realizes exactly how you plan to do this, and adjusts the bucket so it's below both of $his nipples at once.
+		<br><br>
+		$He instinctually expects the rhythmic tugging that the milkers usually produce, but what $he gets is a methodical massage of $his breasts, both at once. They're large enough to be more than a single handful, so you go bit by bit, ensuring that no part of $his udders goes untouched. $His nipples start to gush milk without help after a few moments of this, and $he groans with relief and satisfaction as $he feels $his breasts begin to empty and enjoys the sensation of the massage.
+		<<if $activeSlave.fetish == "boobs">>
+			$He orgasms strongly soon after the first jet of milk, producing an especially thick squirt.
+		<</if>>
+		After you're satisfied, you move your hands to $his nipples and milk $him like a cow, getting the last drops of milk out of $him
+		<<if $activeSlave.fetish == "boobs">>
+			and producing a shuddering series of aftershocks.
+		<<else>>
+			and bringing $him to a surprise orgasm.
+		<</if>>
+		When $he's done, $he leans back into you for a moment before setting the milk bucket down, a wordless gesture of @@.mediumaquamarine;considerable trust.@@ It means a lot to $him that you would milk $him yourself.
+		<<set $activeSlave.trust += 4, $activeSlave.counter.mammary++, $mammaryTotal++>>
+		<<set $activeSlave.lactationDuration = 2>>
+		<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
+	<</replace>>
+<</link>>
+<br><<link "Treat $him like a cow">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You ask $him if $he really wants to be treated like a cow. $He nods, a bit hesitantly, sensing a certain danger but not really knowing what else to do. You lead $him to the utility area of the penthouse, where the milkers are, but stop $him when $he starts for one. Instead, you
+		<<if $activeSlave.belly >= 300000>>
+			pull $him over $his _belly belly with $his udders hanging beneath $his<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>.
 		<<else>>
+			fetch a pair of low stools, make $him kneel on one, and put $his hands on the other, so $he's on all fours with $his udders hanging beneath $his<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>.
 		<</if>>
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<</if>>
-	and ask $him what cows say. "Um, moo?" $he responds in a small,
-	@@.hotpink;submissive@@ voice.
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.mammary++, $mammaryTotal++>>
-	<<set $activeSlave.lactationDuration = 2>>
-	<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
+		<br><br>
+		You swing a bucket under $his nipples and milk $him by hand, as though $he were a cow. This isn't exactly what $he had in mind, but the feeling of your hands on $his nipples, tugging the streams of milk out of $him and into the bucket beneath <<if $activeSlave.fetish == "boobs">>brings $his very close to orgasm<<else>>eventually relaxes $his<</if>>. Seeing this, you muse aloud, as though to yourself, that a little farmyard bestiality wouldn't hurt, since there's no one here but you and a dairy cow. Pawing the cow's behind possessively, you finger $him aggressively before deciding on
+		<<if canDoVaginal($activeSlave) && $PC.dick == 1>>
+			a little cow pussy. You walk around behind $him and fuck $him hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below.
+			<<= VaginalVCheck()>>
+			When you're finished, you step away, leaving your cum to run out of $his cunt and down $his thighs,
+		<<elseif canDoAnal($activeSlave) && $PC.dick == 1>>
+			some cow ass. You walk around behind $him and buttfuck $his hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below.
+			<<= AnalVCheck()>>
+			When you're finished, you step away, leaving your cum to drip out of $his gaped asshole,
+		<<else>>
+			a little cow tongue action.
+			<<if $PC.vagina == 1>>
+				You stand up and grind your pussy against the cow's upturned mouth, humping $his face hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below.<<if $PC.dick == 1>> You pull away when you're about halfway there, only to shove your cock down $his throat instead.<</if>> When you're finished, you step away, leaving $his face thoroughly coated in girlcum<<if $PC.dick == 1>> and $his mouth full of your load<</if>>,
+			<<else>>
+			<</if>>
+			<<set $activeSlave.counter.oral++, $oralTotal++>>
+		<</if>>
+		and ask $him what cows say. "Um, moo?" $he responds in a small,
+		@@.hotpink;submissive@@ voice.
+		<<set $activeSlave.devotion += 4, $activeSlave.counter.mammary++, $mammaryTotal++>>
+		<<set $activeSlave.lactationDuration = 2>>
+		<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
 	<</replace>>
-<</link>><<if $PC.dick == 1>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>><</if>>
+<</link>><<if $PC.dick == 1>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>><</if>>
 
 <<case "refreshment delivery">>
 
 <<link "Enjoy some oral with your refreshments">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	There were many things about being an arcology owner you didn't properly understand before you became one. One of the smallest and yet most enjoyable is the unlimited availability of
-	<<if $PC.refreshmentType == 0>>
-		a good $PC.refreshment
-	<<elseif $PC.refreshmentType == 1>>
-		a glass of $PC.refreshment
-	<<elseif $PC.refreshmentType == 2>>
-		a plate of $PC.refreshment
-	<<elseif $PC.refreshmentType == 3>>
-		$PC.refreshment
-	<<elseif $PC.refreshmentType == 4>>
-		a syringe of $PC.refreshment
-	<<elseif $PC.refreshmentType == 5>>
-		bottles of $PC.refreshment
-	<<elseif $PC.refreshmentType == 6>>
-		tabs of $PC.refreshment
-	<</if>>
-	and <<if $PC.dick == 1>>a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>some cunnilingus<</if>>. Turning to $activeSlave.slaveName, you
-	<<if $PC.refreshmentType == 0>>
-		select a $PC.refreshment,
-	<<elseif $PC.refreshmentType == 1>>
-		pour yourself some $PC.refreshment,
-	<<elseif $PC.refreshmentType == 2>>
-		serve yourself a plate of $PC.refreshment,
-	<<elseif $PC.refreshmentType == 3>>
-		prepare a line of $PC.refreshment,
-	<<elseif $PC.refreshmentType == 4>>
-		select a syringe of $PC.refreshment,
-	<<elseif $PC.refreshmentType == 5>>
-		carefully tap out enough pills of $PC.refreshment to satisfy you,
-	<<elseif $PC.refreshmentType == 6>>
-		carefully pick up a tab of $PC.refreshment,
-	<</if>>
-	relieve the slave of the tray, and <<if !canSee($activeSlave)>>audibly <</if>>widen your legs slightly<<if $PC.belly >= 5000>> as you slide forward<</if>> in your chair. $He
-	<<if $activeSlave.belly >= 300000>>
-		gently leans onto $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly
-	<<elseif $activeSlave.belly >= 5000>>
-		gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to its knees
-	<<else>>
-		immediately drops to $his knees
-	<</if>>
-	and gets to work,
-	<<if $activeSlave.skill.oral >= 100>>
-		using all of $his mastery in giving oral pleasure.
-	<<elseif $activeSlave.skill.oral > 60>>
-		using all of $his skills in giving oral pleasure.
-	<<else>>
-		doing $his best despite $his mediocre oral skills.
-	<</if>>
-	<<if $activeSlave.teeth == "pointy">>
-		You can feel the extreme care $he has to take to keep $his shark-like teeth clear of you.
-	<<elseif $activeSlave.lips > 40>>
-		$His huge lips are soft and pillowy against you.
-	<<elseif $activeSlave.teeth == "gapped">>
-		You can feel the slight hesitations as $he takes care to not pinch you between $his front teeth.
-	<<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>>
-		You can feel the slight hesitations as $he takes care to keep $his braces off you.
-	<</if>>
-	You take your time,
-	<<if $PC.refreshmentType == 0>>
-		smoking meditatively
-	<<elseif $PC.refreshmentType == 1>>
-		taking meditative sips
-	<<elseif $PC.refreshmentType == 2>>
-		taking meditative bites
-	<<elseif $PC.refreshmentType == 3>>
-		enjoying your $PC.refreshment high
-	<<elseif $PC.refreshmentType == 4>>
-		injecting a fix into your arm
-	<<elseif $PC.refreshmentType == 5>>
-		popping a few $PC.refreshment
-	<<elseif $PC.refreshmentType == 6>>
-		holding the tab under your tongue
-	<</if>>
-	and running a thoughtful hand
-	<<if $activeSlave.hLength > 1>>
-		through $activeSlave.slaveName's $activeSlave.hColor hair
-	<<else>>
-		across $activeSlave.slaveName's scalp
-	<</if>>
-	while you look at the view out your office windows. This isn't the first time you've done this, nor will it be the last, and $activeSlave.slaveName is @@.hotpink;used to being used as a serving $girl.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
-	<</replace>>
-<</link>>
-<<if canDoAnal($activeSlave)>>
-<br><<link "Show $him a special way to enjoy refreshments">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	<<if $PC.refreshmentType != 2>>
-		You tell $him to hop up on the desk. $He obeys promptly, <<if $activeSlave.energy > 95>>already starting to pant<<else>><<if canSee($activeSlave)>>watching you closely<<elseif canHear($activeSlave)>>listening closely<<else>>waiting<</if>> for further instructions<</if>>. To $his complete lack of surprise, you tell $him to pull $his legs back and spread $his hole<<if canDoVaginal($activeSlave)>>s<</if>>. As $he opens $himself for you, $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>senses<</if>> that you're doing something with
+		There were many things about being an arcology owner you didn't properly understand before you became one. One of the smallest and yet most enjoyable is the unlimited availability of
 		<<if $PC.refreshmentType == 0>>
-			the $PC.refreshment,
+			a good $PC.refreshment
 		<<elseif $PC.refreshmentType == 1>>
-			the bottle of $PC.refreshment,
+			a glass of $PC.refreshment
 		<<elseif $PC.refreshmentType == 2>>
-			the plate of $PC.refreshment,
+			a plate of $PC.refreshment
 		<<elseif $PC.refreshmentType == 3>>
-			the bag of $PC.refreshment,
+			$PC.refreshment
 		<<elseif $PC.refreshmentType == 4>>
-			the syringe of $PC.refreshment,
+			a syringe of $PC.refreshment
 		<<elseif $PC.refreshmentType == 5>>
-			the bottle of $PC.refreshment,
+			bottles of $PC.refreshment
 		<<elseif $PC.refreshmentType == 6>>
-			the tabs of $PC.refreshment,
+			tabs of $PC.refreshment
 		<</if>>
-		and <<if $activeSlave.trust > 50>>relaxes, trusting you completely<<else>>does $his best to relax<</if>>. $He gasps when $he feels
+		and <<if $PC.dick == 1>>a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>some cunnilingus<</if>>. Turning to $activeSlave.slaveName, you
 		<<if $PC.refreshmentType == 0>>
-			the head of the lit $PC.refreshment, warm from your mouth, being gently inserted into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You give $him precise muscular instructions, which $he does $his best to obey, and before long, $he's slowly smoking it using $his fuckhole. $His body is very permeable there, and the effects of the it hit $him very quickly.
+			select a $PC.refreshment,
 		<<elseif $PC.refreshmentType == 1>>
-			the cool tip of a small enema bulb being gently inserted into $his ass. You press the $PC.refreshment into $him slowly. You didn't give $him much, but $his body is very permeable there, and the effects hit $him very quickly.
+			pour yourself some $PC.refreshment,
+		<<elseif $PC.refreshmentType == 2>>
+			serve yourself a plate of $PC.refreshment,
 		<<elseif $PC.refreshmentType == 3>>
-			$PC.refreshment being gently inserted into $his ass. You didn't give $him much, but $his body is very permeable there, and the effects hit $him very quickly.
+			prepare a line of $PC.refreshment,
 		<<elseif $PC.refreshmentType == 4>>
-			the tip of the syringe penetrate $his <<if $activeSlave.dick > 0>>cock head<<elseif $activeSlave.vagina == -1>>tiny front hole<<else>>clit<</if>> and the sting of the contents being forced into $his sex organ. You didn't give $him much, but $his body is very sensitive there, and the effects hit $him very quickly.
+			select a syringe of $PC.refreshment,
 		<<elseif $PC.refreshmentType == 5>>
-			your finger pushing a pill deep into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You didn't give $him much, but $his body is very sensitive there, and the effects hit $him very quickly.
+			carefully tap out enough pills of $PC.refreshment to satisfy you,
 		<<elseif $PC.refreshmentType == 6>>
-			finger pushing a tab into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You didn't give $him much, but it quickly dissolves and $his body is very sensitive there, so the effects hit $him very quickly.
+			carefully pick up a tab of $PC.refreshment,
 		<</if>>
-		You go back to work, letting the slave loll around on your desk, enjoying the effects. You reflect that it's probably some kind of milestone in wealth that you're willing to throw the good stuff around like this. When $he's had time to reflect on the strange incident, $he @@.mediumaquamarine;resolves to trust you more in the future,@@ since it can be fun.
-	<<else>>
-		You tell $him to hop up on the desk and face you. $He obeys promptly, <<if $activeSlave.energy > 95>>already starting to pant<<else>><<if canSee($activeSlave)>>watching you closely<<elseif canHear($activeSlave)>>listening closely<<else>>waiting<</if>> for further instructions<</if>>. To $his surprise, you <<if $PC.boobs == 1>>unfasten your top, freeing your breasts, and <</if>>uncover your <<if $PC.dick == 1>>stiffening cock<<if $PC.vagina == 1>> and moistening pussy<</if>><<else>>moistening pussy<</if>>. Taking some $PC.refreshment in your fingers, you massage it onto your erect
-		<<if $PC.dick == 1 && $PC.boobs == 1>>
-			nipples and dick
-		<<elseif $PC.vagina == 1 && $PC.boobs == 1>>
-			nipples and clit
-		<<elseif $PC.dick == 1>>
-			dick
+		relieve the slave of the tray, and <<if !canSee($activeSlave)>>audibly <</if>>widen your legs slightly<<if $PC.belly >= 5000>> as you slide forward<</if>> in your chair. $He
+		<<if $activeSlave.belly >= 300000>>
+			gently leans onto $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly
+		<<elseif $activeSlave.belly >= 5000>>
+			gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to its knees
+		<<else>>
+			immediately drops to $his knees
+		<</if>>
+		and gets to work,
+		<<if $activeSlave.skill.oral >= 100>>
+			using all of $his mastery in giving oral pleasure.
+		<<elseif $activeSlave.skill.oral > 60>>
+			using all of $his skills in giving oral pleasure.
 		<<else>>
-			clit
+			doing $his best despite $his mediocre oral skills.
+		<</if>>
+		<<if $activeSlave.teeth == "pointy">>
+			You can feel the extreme care $he has to take to keep $his shark-like teeth clear of you.
+		<<elseif $activeSlave.lips > 40>>
+			$His huge lips are soft and pillowy against you.
+		<<elseif $activeSlave.teeth == "gapped">>
+			You can feel the slight hesitations as $he takes care to not pinch you between $his front teeth.
+		<<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>>
+			You can feel the slight hesitations as $he takes care to keep $his braces off you.
+		<</if>>
+		You take your time,
+		<<if $PC.refreshmentType == 0>>
+			smoking meditatively
+		<<elseif $PC.refreshmentType == 1>>
+			taking meditative sips
+		<<elseif $PC.refreshmentType == 2>>
+			taking meditative bites
+		<<elseif $PC.refreshmentType == 3>>
+			enjoying your $PC.refreshment high
+		<<elseif $PC.refreshmentType == 4>>
+			injecting a fix into your arm
+		<<elseif $PC.refreshmentType == 5>>
+			popping a few $PC.refreshment
+		<<elseif $PC.refreshmentType == 6>>
+			holding the tab under your tongue
 		<</if>>
-		making sure to cover yourself completely. You recline in your seat, beckoning to $activeSlave.slaveName to lick you clean. $He eagerly complies, eager to get a <<if canTaste($activeSlave)>>taste<<else>>bit<</if>> of $PC.refreshment after nothing but slave food for so long.
-		<<if $activeSlave.skill.oral > 60>>
-			$He is extremely skilled with $his tongue; before long, not only are you completely cleaned, but you can barely feel your crotch from $his masterful sucking.
-		<<elseif $activeSlave.skill.oral > 30>>
-			$He is quite skilled with $his tongue; before long, you are both cleaned off and enjoying some $PC.refreshment after the powerful orgasm $he coaxed out of you.
-		<<elseif $activeSlave.skill.oral > 10>>
-			$He has basic skill with $his tongue; before long, you are nearly cleaned of all the $PC.refreshment. With one final lick, $he takes the last <<if canTaste($activeSlave)>>taste<<else>>drop<</if>> of it and brings you to climax at the same time.
+		and running a thoughtful hand
+		<<if $activeSlave.hLength > 1>>
+			through $activeSlave.slaveName's $activeSlave.hColor hair
 		<<else>>
-			$He has no idea how to make this pleasurable; $he is merely greedily lapping up the $PC.refreshment off your body. As $he nears finishing your crotch, you grab $his head and hold $him to yourself until you are satisfied with $his licking.
+			across $activeSlave.slaveName's scalp
 		<</if>>
-		You go back to work, letting the slave sits back on your desk, licking $his lips of the combined <<if canTaste($activeSlave)>>taste<<else>>feeling<</if>> of you and $PC.refreshment. You reflect that it's probably some kind of milestone in wealth that you're willing to throw the good stuff around like this. When $he's had time to reflect on the strange incident, $he @@.mediumaquamarine;resolves to trust you more in the future,@@ since it can be fun and tasty.
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<</if>>
-	<<set $activeSlave.trust += 4>>
+		while you look at the view out your office windows. This isn't the first time you've done this, nor will it be the last, and $activeSlave.slaveName is @@.hotpink;used to being used as a serving $girl.@@
+		<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
+<<if canDoAnal($activeSlave)>>
+	<br><<link "Show $him a special way to enjoy refreshments">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			<<if $PC.refreshmentType != 2>>
+				You tell $him to hop up on the desk. $He obeys promptly, <<if $activeSlave.energy > 95>>already starting to pant<<else>><<if canSee($activeSlave)>>watching you closely<<elseif canHear($activeSlave)>>listening closely<<else>>waiting<</if>> for further instructions<</if>>. To $his complete lack of surprise, you tell $him to pull $his legs back and spread $his hole<<if canDoVaginal($activeSlave)>>s<</if>>. As $he opens $himself for you, $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>senses<</if>> that you're doing something with
+				<<if $PC.refreshmentType == 0>>
+					the $PC.refreshment,
+				<<elseif $PC.refreshmentType == 1>>
+					the bottle of $PC.refreshment,
+				<<elseif $PC.refreshmentType == 2>>
+					the plate of $PC.refreshment,
+				<<elseif $PC.refreshmentType == 3>>
+					the bag of $PC.refreshment,
+				<<elseif $PC.refreshmentType == 4>>
+					the syringe of $PC.refreshment,
+				<<elseif $PC.refreshmentType == 5>>
+					the bottle of $PC.refreshment,
+				<<elseif $PC.refreshmentType == 6>>
+					the tabs of $PC.refreshment,
+				<</if>>
+				and <<if $activeSlave.trust > 50>>relaxes, trusting you completely<<else>>does $his best to relax<</if>>. $He gasps when $he feels
+				<<if $PC.refreshmentType == 0>>
+					the head of the lit $PC.refreshment, warm from your mouth, being gently inserted into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You give $him precise muscular instructions, which $he does $his best to obey, and before long, $he's slowly smoking it using $his fuckhole. $His body is very permeable there, and the effects of the it hit $him very quickly.
+				<<elseif $PC.refreshmentType == 1>>
+					the cool tip of a small enema bulb being gently inserted into $his ass. You press the $PC.refreshment into $him slowly. You didn't give $him much, but $his body is very permeable there, and the effects hit $him very quickly.
+				<<elseif $PC.refreshmentType == 3>>
+					$PC.refreshment being gently inserted into $his ass. You didn't give $him much, but $his body is very permeable there, and the effects hit $him very quickly.
+				<<elseif $PC.refreshmentType == 4>>
+					the tip of the syringe penetrate $his <<if $activeSlave.dick > 0>>cock head<<elseif $activeSlave.vagina == -1>>tiny front hole<<else>>clit<</if>> and the sting of the contents being forced into $his sex organ. You didn't give $him much, but $his body is very sensitive there, and the effects hit $him very quickly.
+				<<elseif $PC.refreshmentType == 5>>
+					your finger pushing a pill deep into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You didn't give $him much, but $his body is very sensitive there, and the effects hit $him very quickly.
+				<<elseif $PC.refreshmentType == 6>>
+					finger pushing a tab into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You didn't give $him much, but it quickly dissolves and $his body is very sensitive there, so the effects hit $him very quickly.
+				<</if>>
+				You go back to work, letting the slave loll around on your desk, enjoying the effects. You reflect that it's probably some kind of milestone in wealth that you're willing to throw the good stuff around like this. When $he's had time to reflect on the strange incident, $he @@.mediumaquamarine;resolves to trust you more in the future,@@ since it can be fun.
+			<<else>>
+				You tell $him to hop up on the desk and face you. $He obeys promptly, <<if $activeSlave.energy > 95>>already starting to pant<<else>><<if canSee($activeSlave)>>watching you closely<<elseif canHear($activeSlave)>>listening closely<<else>>waiting<</if>> for further instructions<</if>>. To $his surprise, you <<if $PC.boobs == 1>>unfasten your top, freeing your breasts, and <</if>>uncover your <<if $PC.dick == 1>>stiffening cock<<if $PC.vagina == 1>> and moistening pussy<</if>><<else>>moistening pussy<</if>>. Taking some $PC.refreshment in your fingers, you massage it onto your erect
+				<<if $PC.dick == 1 && $PC.boobs == 1>>
+					nipples and dick
+				<<elseif $PC.vagina == 1 && $PC.boobs == 1>>
+					nipples and clit
+				<<elseif $PC.dick == 1>>
+					dick
+				<<else>>
+					clit
+				<</if>>
+				making sure to cover yourself completely. You recline in your seat, beckoning to $activeSlave.slaveName to lick you clean. $He eagerly complies, eager to get a <<if canTaste($activeSlave)>>taste<<else>>bit<</if>> of $PC.refreshment after nothing but slave food for so long.
+				<<if $activeSlave.skill.oral > 60>>
+					$He is extremely skilled with $his tongue; before long, not only are you completely cleaned, but you can barely feel your crotch from $his masterful sucking.
+				<<elseif $activeSlave.skill.oral > 30>>
+					$He is quite skilled with $his tongue; before long, you are both cleaned off and enjoying some $PC.refreshment after the powerful orgasm $he coaxed out of you.
+				<<elseif $activeSlave.skill.oral > 10>>
+					$He has basic skill with $his tongue; before long, you are nearly cleaned of all the $PC.refreshment. With one final lick, $he takes the last <<if canTaste($activeSlave)>>taste<<else>>drop<</if>> of it and brings you to climax at the same time.
+				<<else>>
+					$He has no idea how to make this pleasurable; $he is merely greedily lapping up the $PC.refreshment off your body. As $he nears finishing your crotch, you grab $his head and hold $him to yourself until you are satisfied with $his licking.
+				<</if>>
+				You go back to work, letting the slave sits back on your desk, licking $his lips of the combined <<if canTaste($activeSlave)>>taste<<else>>feeling<</if>> of you and $PC.refreshment. You reflect that it's probably some kind of milestone in wealth that you're willing to throw the good stuff around like this. When $he's had time to reflect on the strange incident, $he @@.mediumaquamarine;resolves to trust you more in the future,@@ since it can be fun<<if canTaste($activeSlave)>> and tasty<</if>>.
+				<<set $activeSlave.counter.oral++, $oralTotal++>>
+			<</if>>
+			<<set $activeSlave.trust += 4>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if $PC.refreshmentType == 0>>
-<br><<link "Put your $PC.refreshment out on $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You select a $PC.refreshment and start smoking, ordering $him to stick around and get $his tits out. $He sees nothing too unusual about this, and obeys complaisantly, standing beside you with $his breasts bare. You reach over and play with $him as you smoke, teasing $his
-	<<if $activeSlave.nipples == "huge">>
-		massive, erect nipples.
-	<<elseif $activeSlave.nipples == "inverted">>
-		painfully tender inverted nipples.
-	<<elseif $activeSlave.nipples == "partially inverted">>
-		tender, partially inverted nipples.
-	<<elseif $activeSlave.nipples == "fuckable">>
-		nipplecunts with your fingers.
-	<<elseif $activeSlave.lactation > 0>>
-		motherly nipples.
-	<<else>>
-		nipples and playing with $his boobs.
-	<</if>>
-	Deciding that you're done with the $PC.refreshment, you pull a long draw of smoke into your mouth, bringing the coal at its foot to a fine glow. Then you pull it out of your mouth and press it against the slave's defenseless $activeSlave.skin <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>pregnant belly<<else>>breast<</if>>. $He <<if $activeSlave.voice == 0>>makes the horrible rasping noise that $his mute throat substitutes for screams of agony<<else>>shrieks with agony<</if>>, flinching away instinctively, and collapses to the ground<<if $activeSlave.fetish == "masochist">>, orgasming from the sudden rush of stimulation<</if>>. Writhing in pain, $he cherishes the burn on $his <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>stomach<<else>>breast<</if>> with both hands, $his sobbing only interrupted by ragged gasps for breath. You order $him to go get $his burn looked at, and go back to your work. $He scrabbles toward the door, weeping,<<if $activeSlave.fetish == "masochist">> horrified at $himself for getting off to that, @@.hotpink;more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;eager to get away.@@
-	<<set $activeSlave.trust -= 5>>
-	<<if $activeSlave.fetish == "masochist">><<set $activeSlave.devotion += 4>><</if>>
-	<</replace>>
-<</link>>
+	<br><<link "Put your $PC.refreshment out on $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You select a $PC.refreshment and start smoking, ordering $him to stick around and get $his tits out. $He sees nothing too unusual about this, and obeys complaisantly, standing beside you with $his breasts bare. You reach over and play with $him as you smoke, teasing $his
+			<<if $activeSlave.nipples == "huge">>
+				massive, erect nipples.
+			<<elseif $activeSlave.nipples == "inverted">>
+				painfully tender inverted nipples.
+			<<elseif $activeSlave.nipples == "partially inverted">>
+				tender, partially inverted nipples.
+			<<elseif $activeSlave.nipples == "fuckable">>
+				nipplecunts with your fingers.
+			<<elseif $activeSlave.lactation > 0>>
+				motherly nipples.
+			<<else>>
+				nipples and playing with $his boobs.
+			<</if>>
+			Deciding that you're done with the $PC.refreshment, you pull a long draw of smoke into your mouth, bringing the coal at its foot to a fine glow. Then you pull it out of your mouth and press it against the slave's defenseless $activeSlave.skin <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>pregnant belly<<else>>breast<</if>>. $He <<if $activeSlave.voice == 0>>makes the horrible rasping noise that $his mute throat substitutes for screams of agony<<else>>shrieks with agony<</if>>, flinching away instinctively, and collapses to the ground<<if $activeSlave.fetish == "masochist">>, orgasming from the sudden rush of stimulation<</if>>. Writhing in pain, $he cherishes the burn on $his <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>stomach<<else>>breast<</if>> with both hands, $his sobbing only interrupted by ragged gasps for breath. You order $him to go get $his burn looked at, and go back to your work. $He scrabbles toward the door, weeping,<<if $activeSlave.fetish == "masochist">> horrified at $himself for getting off to that, @@.hotpink;more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;eager to get away.@@
+			<<set $activeSlave.trust -= 5>>
+			<<if $activeSlave.fetish == "masochist">><<set $activeSlave.devotion += 4>><</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "tittymonster inspection">>
@@ -16869,40 +16874,40 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Use $him as a cushion">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him $he's looking very nice today. Surprised, $he manages <<if $activeSlave.devotion > 20>>to thank you prettily, wondering<<else>>to thank you hesitantly, worrying about<</if>> what comes next. You pick up a tablet, come around your desk, and fold yourself into a lotus position, just in front of $him and with your back to $him. Struck by this strange and trusting maneuver, $he keeps still, letting you get yourself situated. You slide backward until you are pressed against the mound of breasts behind you, and then relax into their soft, fleshy mass. Your back nestles naturally into $his cleavage, and the give of $his huge mammaries conforms to you, allowing you to rest your elbows comfortably on each breast as though they were armrests. Feeling the weight of you against $his chest, $activeSlave.slaveName throws $his arms back, bracing $himself against the floor.<<if $activeSlave.belly >= 15000>> You can feel $his full, taut, <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> just barely once you have sunk deep into $his cleavage.<</if>> You begin to tap away at the tablet, and $he realizes <<if $activeSlave.devotion > 20>>with pleased surprise<<else>>with mixed resentment and relief<</if>> that you intend to use $him as a sort of human cushion for a while. From where $he's sitting, $he <<if canSee($activeSlave)>>can easily read over your shoulder, and you make no attempt to stop $him<<else>>could read over your shoulder, if $he could see<</if>>; keeping secrets from your slaves is generally impractical, and <<if $activeSlave.devotion > 20>>this $desc is trustworthy<<else>>there's nothing $he could do with your secrets, even if $he were to try<</if>>. After an hour or so, you inspect $him and dismiss $him, and $he leaves @@.mediumaquamarine;trusting $his bizarre place@@ in your world.
-	<<set $activeSlave.trust += 4>>
+		You tell $him $he's looking very nice today. Surprised, $he manages <<if $activeSlave.devotion > 20>>to thank you prettily, wondering<<else>>to thank you hesitantly, worrying about<</if>> what comes next. You pick up a tablet, come around your desk, and fold yourself into a lotus position, just in front of $him and with your back to $him. Struck by this strange and trusting maneuver, $he keeps still, letting you get yourself situated. You slide backward until you are pressed against the mound of breasts behind you, and then relax into their soft, fleshy mass. Your back nestles naturally into $his cleavage, and the give of $his huge mammaries conforms to you, allowing you to rest your elbows comfortably on each breast as though they were armrests. Feeling the weight of you against $his chest, $activeSlave.slaveName throws $his arms back, bracing $himself against the floor.<<if $activeSlave.belly >= 15000>> You can feel $his full, taut, <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> just barely once you have sunk deep into $his cleavage.<</if>> You begin to tap away at the tablet, and $he realizes <<if $activeSlave.devotion > 20>>with pleased surprise<<else>>with mixed resentment and relief<</if>> that you intend to use $him as a sort of human cushion for a while. From where $he's sitting, $he <<if canSee($activeSlave)>>can easily read over your shoulder, and you make no attempt to stop $him<<else>>could read over your shoulder, if $he could see<</if>>; keeping secrets from your slaves is generally impractical, and <<if $activeSlave.devotion > 20>>this $desc is trustworthy<<else>>there's nothing $he could do with your secrets, even if $he were to try<</if>>. After an hour or so, you inspect $him and dismiss $him, and $he leaves @@.mediumaquamarine;trusting $his bizarre place@@ in your world.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Enjoy $his helplessness">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You give $him no orders at all, since $his helplessness makes $him <<if $activeSlave.devotion > 20>>cooperation<<else>>consent<</if>> completely unnecessary for what you're planning. $He makes to turn as you come around behind $him, but $he can manage only a partial crane of $his shoulders and neck to <<if canSee($activeSlave)>>see<<else>>figure out<</if>> what you're doing. Seizing $his ankles, you haul $his legs out from under $his boobs and body, and then push $him forward, balancing $his body atop $his tits as though they were an exercise ball. <<if $activeSlave.devotion > 20>>$He giggles at this<<else>>$He struggles a little at the sudden discomfort<</if>>, and tries to steady $himself with $his hands, so you pull them around behind $him and pin $his arms to $his $activeSlave.skin back with one of your hands. You <<if $PC.dick == 1>>shove your dick up<<else>>pull on a strap-on with your other hand and insert it into<</if>> $his defenseless
-	<<if canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. Then you fuck $him.
-	<<= SimpleVCheck()>>
-	<br><br>
-	You're physically fit to begin with, and between that and all the practice you get, you pride yourself on your <<if $PC.dick == 1>><<if $PC.vagina == 1>>master level futa skills<<else>>cocksmanship<</if>><<else>>power with a strap-on<</if>>. You can fuck hard, and $activeSlave.slaveName gets fucked hard. Having all of $his weight on $his tits, and being sawed back and forth on top of those tits, is not comfortable.
-	<<if canDoVaginal($activeSlave)>>
-		<<if $activeSlave.vagina < 3>>
-			Worse, only the most veteran cunt could accept this kind of treatment without some pain, and $hers is far tighter than you're treating it.
-		<</if>>
-	<<else>>
-		<<if $activeSlave.anus < 3>>
-			Worse, only the most veteran asspussy could accept this kind of treatment without some pain, and $hers is far tighter than you're treating it.
-		<</if>>
-	<</if>>
-	<<if $activeSlave.voice == 0>>Since $he cannot groan, $he begins to gasp raggedly<<else>>$He begins to grunt and groan<</if>> with each forward thrust as you penetrate $him, pressing $him forward across $his cushion of boobs. $He tries to take some of the weight off with $his feet, but after some vain scrabbling $he's obliged to @@.hotpink;give up and take it.@@
-	<br><br>
-	When you're finished, you withdraw and drop $him, letting $him slump against $his sore breasts. $He's too tired and overstimulated to do anything but stay limp, and $his relaxed <<if canDoVaginal($activeSlave)>>pussy<<else>>butthole<</if>> <<if $PC.dick == 1>>releases drips of your cum to go sliding down $his thighs<<else>>glistens attractively with lube<</if>>. You direct
-	<<if $boobAccessibility == 1 || $pregAccessibility == 1>>
-		the accessibility assistance functions of your office to
-	<<else>>
-		the slaves who helped $him in to return and
-	<</if>>
-	help $him get cleaned up, and turn to your desk to get some work done as they struggle with the mountain of exhausted, fucked-out tits discarded in the middle of your office.
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<br><<link "Enjoy $his helplessness">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You give $him no orders at all, since $his helplessness makes $him <<if $activeSlave.devotion > 20>>cooperation<<else>>consent<</if>> completely unnecessary for what you're planning. $He makes to turn as you come around behind $him, but $he can manage only a partial crane of $his shoulders and neck to <<if canSee($activeSlave)>>see<<else>>figure out<</if>> what you're doing. Seizing $his ankles, you haul $his legs out from under $his boobs and body, and then push $him forward, balancing $his body atop $his tits as though they were an exercise ball. <<if $activeSlave.devotion > 20>>$He giggles at this<<else>>$He struggles a little at the sudden discomfort<</if>>, and tries to steady $himself with $his hands, so you pull them around behind $him and pin $his arms to $his $activeSlave.skin back with one of your hands. You <<if $PC.dick == 1>>shove your dick up<<else>>pull on a strap-on with your other hand and insert it into<</if>> $his defenseless
+			<<if canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. Then you fuck $him.
+			<<= SimpleVCheck()>>
+			<br><br>
+			You're physically fit to begin with, and between that and all the practice you get, you pride yourself on your <<if $PC.dick == 1>><<if $PC.vagina == 1>>master level futa skills<<else>>cocksmanship<</if>><<else>>power with a strap-on<</if>>. You can fuck hard, and $activeSlave.slaveName gets fucked hard. Having all of $his weight on $his tits, and being sawed back and forth on top of those tits, is not comfortable.
+			<<if canDoVaginal($activeSlave)>>
+				<<if $activeSlave.vagina < 3>>
+					Worse, only the most veteran cunt could accept this kind of treatment without some pain, and $hers is far tighter than you're treating it.
+				<</if>>
+			<<else>>
+				<<if $activeSlave.anus < 3>>
+					Worse, only the most veteran asspussy could accept this kind of treatment without some pain, and $hers is far tighter than you're treating it.
+				<</if>>
+			<</if>>
+			<<if $activeSlave.voice == 0>>Since $he cannot groan, $he begins to gasp raggedly<<else>>$He begins to grunt and groan<</if>> with each forward thrust as you penetrate $him, pressing $him forward across $his cushion of boobs. $He tries to take some of the weight off with $his feet, but after some vain scrabbling $he's obliged to @@.hotpink;give up and take it.@@
+			<br><br>
+			When you're finished, you withdraw and drop $him, letting $him slump against $his sore breasts. $He's too tired and overstimulated to do anything but stay limp, and $his relaxed <<if canDoVaginal($activeSlave)>>pussy<<else>>butthole<</if>> <<if $PC.dick == 1>>releases drips of your cum to go sliding down $his thighs<<else>>glistens attractively with lube<</if>>. You direct
+			<<if $boobAccessibility == 1 || $pregAccessibility == 1>>
+				the accessibility assistance functions of your office to
+			<<else>>
+				the slaves who helped $him in to return and
+			<</if>>
+			help $him get cleaned up, and turn to your desk to get some work done as they struggle with the mountain of exhausted, fucked-out tits discarded in the middle of your office.
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 
 <<case "bonded love">>
@@ -16910,50 +16915,50 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Tell $him $he's a good slave">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Without turning your head, you tell $him $he's a very good slave. $He laughs happily<<if canTalk($activeSlave)>>, though of course this is silent<<else>> throatily<</if>>, $his warm breath gusting against your ear. It took confidence for $him to come in here and tell $him $he loved you, and $he @@.mediumaquamarine;trusts you more@@ for responding this way. $He plants a light kiss on your cheek and walks quickly out of your office, hurrying to go about $his day's business, but careful to strut $his stuff for you on $his way out.
-	<<if $activeSlave.butt < 3>>
-		$His nice little butt moves cutely as $he goes. $His small buttocks leave
-		<<if !canDoAnal($activeSlave)>>
-			$his anal chastity visible from the rear as $he walks.
-		<<elseif $activeSlave.analArea > 3>>
-			the huge area of puckered skin around $his asspussy clearly visible from the rear, and $his asshole works lewdly with the motion.
-		<<elseif $activeSlave.anus > 1>>
-			$his asshole visible, the pucker of $his backdoor lewdly available.
-		<<else>>
-			$his tight anus visible from the rear as $he walks.
-		<</if>>
-	<<elseif $activeSlave.butt < 6>>
-		$His healthy butt bounces as $he goes. $His big buttocks mostly conceal
-		<<if !canDoAnal($activeSlave)>>
-			$his anal chastity, but there's the occasional tempting glimpse.
-		<<elseif $activeSlave.analArea > 3>>
-			the huge area of puckered skin around $his asspussy, but $his butthole is so well used that it's obvious from the rear that $he takes it up the ass. A lot.
-		<<elseif $activeSlave.anus > 1>>
-			$his backdoor, but there's the occasional cute glimpse of $his experienced anus.
-		<<else>>
-			what's between them, but there's the occasional cute glimpse of $his tight rosebud.
-		<</if>>
-	<<else>>
-		$His gigantic ass jiggles as $he goes. $His enormous buttocks mostly stay together as $he moves,
-		<<if !canDoAnal($activeSlave)>>
-			completely swallowing $his anal chastity.
-		<<elseif $activeSlave.analArea > 3>>
-			almost concealing the huge area of puckered skin around $his lewd asspussy.
-		<<elseif $activeSlave.anus > 1>>
-			completely concealing $his welcoming backdoor.
+		Without turning your head, you tell $him $he's a very good slave. $He laughs happily<<if canTalk($activeSlave)>>, though of course this is silent<<else>> throatily<</if>>, $his warm breath gusting against your ear. It took confidence for $him to come in here and tell $him $he loved you, and $he @@.mediumaquamarine;trusts you more@@ for responding this way. $He plants a light kiss on your cheek and walks quickly out of your office, hurrying to go about $his day's business, but careful to strut $his stuff for you on $his way out.
+		<<if $activeSlave.butt < 3>>
+			$His nice little butt moves cutely as $he goes. $His small buttocks leave
+			<<if !canDoAnal($activeSlave)>>
+				$his anal chastity visible from the rear as $he walks.
+			<<elseif $activeSlave.analArea > 3>>
+				the huge area of puckered skin around $his asspussy clearly visible from the rear, and $his asshole works lewdly with the motion.
+			<<elseif $activeSlave.anus > 1>>
+				$his asshole visible, the pucker of $his backdoor lewdly available.
+			<<else>>
+				$his tight anus visible from the rear as $he walks.
+			<</if>>
+		<<elseif $activeSlave.butt < 6>>
+			$His healthy butt bounces as $he goes. $His big buttocks mostly conceal
+			<<if !canDoAnal($activeSlave)>>
+				$his anal chastity, but there's the occasional tempting glimpse.
+			<<elseif $activeSlave.analArea > 3>>
+				the huge area of puckered skin around $his asspussy, but $his butthole is so well used that it's obvious from the rear that $he takes it up the ass. A lot.
+			<<elseif $activeSlave.anus > 1>>
+				$his backdoor, but there's the occasional cute glimpse of $his experienced anus.
+			<<else>>
+				what's between them, but there's the occasional cute glimpse of $his tight rosebud.
+			<</if>>
 		<<else>>
-			completely concealing $his tight asshole.
+			$His gigantic ass jiggles as $he goes. $His enormous buttocks mostly stay together as $he moves,
+			<<if !canDoAnal($activeSlave)>>
+				completely swallowing $his anal chastity.
+			<<elseif $activeSlave.analArea > 3>>
+				almost concealing the huge area of puckered skin around $his lewd asspussy.
+			<<elseif $activeSlave.anus > 1>>
+				completely concealing $his welcoming backdoor.
+			<<else>>
+				completely concealing $his tight asshole.
+			<</if>>
 		<</if>>
-	<</if>>
-	$He pauses for an instant in the doorway, turns over $his shoulder to give you a sexy wink, and is gone.
-	<<set $activeSlave.trust += 4>>
+		$He pauses for an instant in the doorway, turns over $his shoulder to give you a sexy wink, and is gone.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Tell $him you love $him too">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You turn towards $him and direct the full weight of your gaze into $his eyes. <<if canSee($activeSlave)>>$His eyelids flicker with the shock of the shared look<<else>>$His eyes may not be capable of sight, but $he can feel your gaze<</if>>, so close, but $he bears it, biting $his lower lip. Then you kiss $him. The released tension is too much for $him, and $he moans, slumping against you a little as you kiss $him like a lover. $He's so lost in it that when you break the kiss, $his mouth stays slightly open and pursues yours slightly, hungry for more. You place a finger against $his moist lips, making $him wait a moment, and tell $him that you love $him too. $He makes <<if $activeSlave.voice == 0>>a quiet moaning sound, deep in $his useless throat,<<else>>an almost animal sound, somewhere between a sob and a moan,<</if>> and as you withdraw your finger, $he kisses you back. $He knows $he has a job to do today, and it's waiting for $him, so when you give $him no indication that you'd like $him to stay, $he withdraws, keeping $his <<if canSee($activeSlave)>>eyes<<else>>face<</if>> on yours, doing $his best to @@.hotpink;make love to you@@ with $his gaze.
-	<<set $activeSlave.devotion += 4>>
+		You turn towards $him and direct the full weight of your gaze into $his eyes. <<if canSee($activeSlave)>>$His eyelids flicker with the shock of the shared look<<else>>$His eyes may not be capable of sight, but $he can feel your gaze<</if>>, so close, but $he bears it, biting $his lower lip. Then you kiss $him. The released tension is too much for $him, and $he moans, slumping against you a little as you kiss $him like a lover. $He's so lost in it that when you break the kiss, $his mouth stays slightly open and pursues yours slightly, hungry for more. You place a finger against $his moist lips, making $him wait a moment, and tell $him that you love $him too. $He makes <<if $activeSlave.voice == 0>>a quiet moaning sound, deep in $his useless throat,<<else>>an almost animal sound, somewhere between a sob and a moan,<</if>> and as you withdraw your finger, $he kisses you back. $He knows $he has a job to do today, and it's waiting for $him, so when you give $him no indication that you'd like $him to stay, $he withdraws, keeping $his <<if canSee($activeSlave)>>eyes<<else>>face<</if>> on yours, doing $his best to @@.hotpink;make love to you@@ with $his gaze.
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 
@@ -16964,51 +16969,51 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Hug $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You reach out to hug $him, but as soon as your hand touches $his shoulder, $he writhes instinctively away. <<if canSee($activeSlave)>>$His eyes fly open, searching frantically for $his assailant. Seeing that it's you, $he screams and scrabbles away even harder. After making it a few feet, $he collects $his wits enough to bring $himself to a stop and stop screaming, though $he continues to sob, staring at you in terror<<else>>$He gropes frantically for $his assailant, before making contact with you. $He screams and scrabbles away, only stopping when $he collides with the nearest solid object. <<if canHear($activeSlave)>>Only after several call outs that it is you does $he stop screaming, though $he continues to sob, listening to your every breath in terror<<else>>After screaming $himself hoarse, $he realizes that $his assault has abruptly ended, and gently feels around $his surroundings with a shaking hand to discover $himself back in $his room<</if>><</if>>. $He remains frozen in place as you slowly advance on $him and give $him a light embrace. $His tears gradually stop, but $he does not relax, <<if canSee($activeSlave)>>remaining dumbly stiff<<else>>continuing to quake in fear<</if>> within your arms. Eventually you let $him go, and $he crawls pathetically back under $his sheet, still weeping softly. It seems $he is @@.gold;more afraid of you@@ than ever, and if you thought that a simple hug could win $him over, you were wrong.
-	<<if canSee($activeSlave)>>
-		<<set $activeSlave.trust -= 4>>
-	<<elseif canHear($activeSlave)>>
-		<<set $activeSlave.trust -= 5>>
-	<<else>>
-		<<set $activeSlave.trust -= 6>>
-	<</if>>
-	<</replace>>
-<</link>>
-<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Rape $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You snatch the sheet off $him, shove $his uppermost shoulder down so $his face is smashed into the pillow, and bring your knees down between $his legs, spreading them to force $hers apart. You use the hand that isn't controlling $his torso to locate $his
-	<<if canDoVaginal($activeSlave)>>
-		<<if $activeSlave.vagina > 2>>
-			amusingly loose cunt
-		<<elseif $activeSlave.vagina > 1>>
-			large womanhood
-		<<elseif $activeSlave.vagina > 0>>
-			tight pussy
-		<<else>>
-			poor virgin pussy
-		<</if>>
-	<<else>>
-		<<if $activeSlave.anus > 2>>
-			amusingly broad asshole
-		<<elseif $activeSlave.anus > 1>>
-			big butthole
-		<<elseif $activeSlave.anus > 0>>
-			tight rosebud
+		You reach out to hug $him, but as soon as your hand touches $his shoulder, $he writhes instinctively away. <<if canSee($activeSlave)>>$His eyes fly open, searching frantically for $his assailant. Seeing that it's you, $he screams and scrabbles away even harder. After making it a few feet, $he collects $his wits enough to bring $himself to a stop and stop screaming, though $he continues to sob, staring at you in terror<<else>>$He gropes frantically for $his assailant, before making contact with you. $He screams and scrabbles away, only stopping when $he collides with the nearest solid object. <<if canHear($activeSlave)>>Only after several call outs that it is you does $he stop screaming, though $he continues to sob, listening to your every breath in terror<<else>>After screaming $himself hoarse, $he realizes that $his assault has abruptly ended, and gently feels around $his surroundings with a shaking hand to discover $himself back in $his room<</if>><</if>>. $He remains frozen in place as you slowly advance on $him and give $him a light embrace. $His tears gradually stop, but $he does not relax, <<if canSee($activeSlave)>>remaining dumbly stiff<<else>>continuing to quake in fear<</if>> within your arms. Eventually you let $him go, and $he crawls pathetically back under $his sheet, still weeping softly. It seems $he is @@.gold;more afraid of you@@ than ever, and if you thought that a simple hug could win $him over, you were wrong.
+		<<if canSee($activeSlave)>>
+			<<set $activeSlave.trust -= 4>>
+		<<elseif canHear($activeSlave)>>
+			<<set $activeSlave.trust -= 5>>
 		<<else>>
-			poor virgin anus
+			<<set $activeSlave.trust -= 6>>
 		<</if>>
-	<</if>>
-	in the dark as $he begins to @@.gold;struggle and scream.@@ $He comes fully awake when $he feels your rough fingers searching for and then finding $his
-	<<if ($activeSlave.vagina >= 0) && canDoVaginal($activeSlave)>>vagina<<else>>crinkled hole<</if>>, and $his noise increases to the point where it becomes annoying. You stuff $his face into the pillow and take $him mercilessly, using the pillow to cut off $his breath whenever $he struggles too much, until oncoming suffocation forces $him to go still and take it like a good little bitch.
-	<br><br>
-	@@.mediumorchid;Sometimes dreams do come true.@@
-	<br><br>
-	<<= SimpleVCheck()>>
-	<<set $activeSlave.trust -= 4, $activeSlave.devotion -= 4>>
 	<</replace>>
-<</link>><<if (($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) || (($activeSlave.anus == 0) && canDoAnal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>>
+<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
+	<br><<link "Rape $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You snatch the sheet off $him, shove $his uppermost shoulder down so $his face is smashed into the pillow, and bring your knees down between $his legs, spreading them to force $hers apart. You use the hand that isn't controlling $his torso to locate $his
+			<<if canDoVaginal($activeSlave)>>
+				<<if $activeSlave.vagina > 2>>
+					amusingly loose cunt
+				<<elseif $activeSlave.vagina > 1>>
+					large womanhood
+				<<elseif $activeSlave.vagina > 0>>
+					tight pussy
+				<<else>>
+					poor virgin pussy
+				<</if>>
+			<<else>>
+				<<if $activeSlave.anus > 2>>
+					amusingly broad asshole
+				<<elseif $activeSlave.anus > 1>>
+					big butthole
+				<<elseif $activeSlave.anus > 0>>
+					tight rosebud
+				<<else>>
+					poor virgin anus
+				<</if>>
+			<</if>>
+			in the dark as $he begins to @@.gold;struggle and scream.@@ $He comes fully awake when $he feels your rough fingers searching for and then finding $his
+			<<if ($activeSlave.vagina >= 0) && canDoVaginal($activeSlave)>>vagina<<else>>crinkled hole<</if>>, and $his noise increases to the point where it becomes annoying. You stuff $his face into the pillow and take $him mercilessly, using the pillow to cut off $his breath whenever $he struggles too much, until oncoming suffocation forces $him to go still and take it like a good little bitch.
+			<br><br>
+			@@.mediumorchid;Sometimes dreams do come true.@@
+			<br><br>
+			<<= SimpleVCheck()>>
+			<<set $activeSlave.trust -= 4, $activeSlave.devotion -= 4>>
+		<</replace>>
+	<</link>><<if (($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) || (($activeSlave.anus == 0) && canDoAnal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 
 <<case "cockfeeder resistance">>
@@ -17016,38 +17021,38 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Talk $him through it">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You put as much quiet authority into your voice as you can, and explain to $him that $he must eat $his breakfast this way. You do not explain any of the actual reasons why you require slaves to eat from cocks, but couch your quiet explanation in terms of $his life as a slave. You tell $him that eating breakfast out of a dick is something you've ordered $him to do. $He needs to do it. If $he does, $he'll be treated well; if $he does not, that will oblige you to punish $him. You tell $him that you would like $him to be a good slave, and that it would be disappointing if you had to punish $him. You put just a hint of steel into the last sentence, and $he stiffens a little at it. Hesitantly, $he scoots forward and bends down to take the tip of the big feeder dick in $his mouth. Sensing that it's being sucked, it gently presses into $his mouth, fucking $his <<if $activeSlave.lips > 95>>big-lipped facepussy<<else>>face<</if>>. Its strokes get longer and faster, until $he's gulping down $his breakfast as it's shot down $his throat like a huge load.
-	<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>By this time, the kitchen is also dosing $him with drugs by fucking $his butt with a phallus that ejaculates them for absorption. $He's being spitroasted by the kitchen.<</if>>
-	Once $he's fully awake, $he's mostly @@.mediumaquamarine;relieved@@ that you let $him get away with hesitation about obedience and took the time to talk $him through it.
-	<<set $activeSlave.trust += 4>>
+		You put as much quiet authority into your voice as you can, and explain to $him that $he must eat $his breakfast this way. You do not explain any of the actual reasons why you require slaves to eat from cocks, but couch your quiet explanation in terms of $his life as a slave. You tell $him that eating breakfast out of a dick is something you've ordered $him to do. $He needs to do it. If $he does, $he'll be treated well; if $he does not, that will oblige you to punish $him. You tell $him that you would like $him to be a good slave, and that it would be disappointing if you had to punish $him. You put just a hint of steel into the last sentence, and $he stiffens a little at it. Hesitantly, $he scoots forward and bends down to take the tip of the big feeder dick in $his mouth. Sensing that it's being sucked, it gently presses into $his mouth, fucking $his <<if $activeSlave.lips > 95>>big-lipped facepussy<<else>>face<</if>>. Its strokes get longer and faster, until $he's gulping down $his breakfast as it's shot down $his throat like a huge load.
+		<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>By this time, the kitchen is also dosing $him with drugs by fucking $his butt with a phallus that ejaculates them for absorption. $He's being spitroasted by the kitchen.<</if>>
+		Once $he's fully awake, $he's mostly @@.mediumaquamarine;relieved@@ that you let $him get away with hesitation about obedience and took the time to talk $him through it.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Punish $him with a bigger feeder">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You give the kitchen an order by voice command. It's technical, so $he doesn't understand it, but the meaning becomes clear soon enough. The phallus dangling in $his face is withdrawn, and $he's halfway through a shocked thank you when it's replaced by another, noticeably larger<<if !canSee($activeSlave)>>. $He doesn't notice its larger size until it bumps into $his cheek, causing $him to scoot back<</if>>. You tell $him in deceptively mild tones that you'll keep increasing the size of $his feeder until $he decides to suck it off like a good little $desc, or you run out of size options and are forced to strap $him down and push them down $his throat. At that point, $he might be able to breathe; then again, $he might not. $He begins to cry, $his <<if $activeSlave.face > 95>>heartbreakingly beautiful<<elseif $activeSlave.face > 10>>pretty<<else>>homely<</if>> face clouding with anguish, but is so @@.gold;frightened@@ by the threat that $he doesn't let $him tears distract $him from scooting forward to suck off a huge dildo for $his breakfast.
-	<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>Once it senses $he's complying, the kitchen starts dosing $him with drugs by fucking $his butt with a phallus that ejaculates them for absorption. Mercifully, $he doesn't try to refuse the anal fuckmachine, and avoids having $his asshole filled by a bigger phallus too.<</if>>
-	$He keeps the threat in mind, and has a slightly sore throat to @@.hotpink;help $him remember to obey without question.@@
-	<<set $activeSlave.trust -= 2, $activeSlave.devotion += 2>>
+		You give the kitchen an order by voice command. It's technical, so $he doesn't understand it, but the meaning becomes clear soon enough. The phallus dangling in $his face is withdrawn, and $he's halfway through a shocked thank you when it's replaced by another, noticeably larger<<if !canSee($activeSlave)>>. $He doesn't notice its larger size until it bumps into $his cheek, causing $him to scoot back<</if>>. You tell $him in deceptively mild tones that you'll keep increasing the size of $his feeder until $he decides to suck it off like a good little $desc, or you run out of size options and are forced to strap $him down and push them down $his throat. At that point, $he might be able to breathe; then again, $he might not. $He begins to cry, $his <<if $activeSlave.face > 95>>heartbreakingly beautiful<<elseif $activeSlave.face > 10>>pretty<<else>>homely<</if>> face clouding with anguish, but is so @@.gold;frightened@@ by the threat that $he doesn't let $him tears distract $him from scooting forward to suck off a huge dildo for $his breakfast.
+		<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>Once it senses $he's complying, the kitchen starts dosing $him with drugs by fucking $his butt with a phallus that ejaculates them for absorption. Mercifully, $he doesn't try to refuse the anal fuckmachine, and avoids having $his asshole filled by a bigger phallus too.<</if>>
+		$He keeps the threat in mind, and has a slightly sore throat to @@.hotpink;help $him remember to obey without question.@@
+		<<set $activeSlave.trust -= 2, $activeSlave.devotion += 2>>
 	<</replace>>
 <</link>>
 <br><<link "Double penetrate $his mouth for insolence">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You step forward and caress the slave's throat, telling $him to suck like a good little $desc. You make no threat, but give $him the order in a voice of brass. $He knows what you can do to $him, and scrabbles forward to obey, @@.gold;terribly frightened.@@ $His fear is justified. You announce that $he's avoided serious punishment, but $he still needs correction for $him hesitation and insolence. $He can't beg or even moan, since $he's being facefucked by the feeder dildo by now, but $his <<= App.Desc.eyeColor($activeSlave)>> eyes widen in terror. $He <<if canSee($activeSlave)>>can't watch you, since $he can't turn $his head,<<else>>can't see what you are doing,<</if>> so $he has almost no time to prepare when you haul $him head most of the way off the feeder and shove <<if $PC.dick == 1>>your own phallus<<else>>a strap-on<</if>> into $his mouth, too. $He gags instantly, almost vomiting, but forces $himself to relax as you begin to thrust into $his throat, alternately with the feeder. The liquid food provides plenty of lubrication, and a lot of liquid for $him to gag on, and before long $he's a degraded, humiliating mess. $He often clamps $his eyes shut as $he desperately concentrates on breathing, squeezing the tears out to run down $his $activeSlave.skin cheeks.
-	<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>You leave the poor slave to take $his drugs up the ass, since the kitchen administers those by phallus, too. Fortunately for $him, $he doesn't object to that.<</if>>
-	<<set $activeSlave.trust -= 4, $activeSlave.counter.oral++, $oralTotal++>>
+		You step forward and caress the slave's throat, telling $him to suck like a good little $desc. You make no threat, but give $him the order in a voice of brass. $He knows what you can do to $him, and scrabbles forward to obey, @@.gold;terribly frightened.@@ $His fear is justified. You announce that $he's avoided serious punishment, but $he still needs correction for $him hesitation and insolence. $He can't beg or even moan, since $he's being facefucked by the feeder dildo by now, but $his <<= App.Desc.eyeColor($activeSlave)>> eyes widen in terror. $He <<if canSee($activeSlave)>>can't watch you, since $he can't turn $his head,<<else>>can't see what you are doing,<</if>> so $he has almost no time to prepare when you haul $him head most of the way off the feeder and shove <<if $PC.dick == 1>>your own phallus<<else>>a strap-on<</if>> into $his mouth, too. $He gags instantly, almost vomiting, but forces $himself to relax as you begin to thrust into $his throat, alternately with the feeder. The liquid food provides plenty of lubrication, and a lot of liquid for $him to gag on, and before long $he's a degraded, humiliating mess. $He often clamps $his eyes shut as $he desperately concentrates on breathing, squeezing the tears out to run down $his $activeSlave.skin cheeks.
+		<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>You leave the poor slave to take $his drugs up the ass, since the kitchen administers those by phallus, too. Fortunately for $him, $he doesn't object to that.<</if>>
+		<<set $activeSlave.trust -= 4, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
 <<if $PC.balls > 2>>
-<br><<link "Force-feed $him with your own cock">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You step forward and pull $him away from the feeder, telling $him that since $he doesn't like the cockfeeder $he can suck yours like a good little $desc. You make no threat, but order $him in a steely voice to suck you off until $he's earned a meal of your cum. $He knows what you can do to $him, and hurries forward to obey. $He rushes to open your clothes and get to work, but pauses when <<if canSee($activeSlave)>>$his <<= App.Desc.eyeColor($activeSlave)>> eyes take in your massive testicles.<<else>>$his groping hand feels your massive testicles.<</if>> Realizing just how big $his meal will be, $he's obviously @@.gold;frightened.@@ You grab $his head, breaking $him out of $his shocked stillness, and explain that you can't let $him starve. If $he won't eat out of the feeder, you'll just have to feed $him some other way. With that, you ram your cock forward and start fucking $his <<if $activeSlave.face > 95>>heartbreakingly beautiful<<elseif $activeSlave.face > 10>>pretty<<else>>homely<</if>> face. After a few minutes of gagging oral, you start to approach your climax. Your thorough facefucking leaves $him unable to beg or even moan, but $his eyes widen in terror when $he realizes you're about to cum. You don't give $him any time to prepare, instead hilting yourself immediately, and letting $his throat's desperate attempts to swallow bring you over the edge. You begin your long release of pent-up jizz, spraying deciliter after deciliter of cum down $his throat and into $his stomach. By the time you've finished, you can tell $he's struggling for air and in pain from the massive quantity of thick fluid in $his stomach. You give $him a helpful hint before releasing $him, "if you take it all the way in your throat, you don't even have to taste what it's feeding you." You pull out of $his mouth and let $him go. $He gasps for air and almost immediately vomits some of your cum all over $himself, turning $him into a degraded, humiliating mess. $He lays on the floor and desperately concentrates on breathing, squeezing the tears out of $his eyes to run down $his $activeSlave.skin cheeks.
-	<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>You leave the poor slave to take $his drugs up the ass, since the kitchen administers those by phallus, too. Fortunately for $him, $he doesn't object to that.<</if>>
-	<<set $activeSlave.trust -= 2, $activeSlave.counter.oral++, $oralTotal++>>
-	<</replace>>
-<</link>>
+	<br><<link "Force-feed $him with your own cock">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You step forward and pull $him away from the feeder, telling $him that, since $he doesn't like the cockfeeder, $he can suck yours like a good little $desc. You make no threat, but order $him in a steely voice to suck you off until $he's earned a meal of your cum. $He knows what you can do to $him, and hurries forward to obey. $He rushes to open your clothes and get to work, but pauses when <<if canSee($activeSlave)>>$his <<= App.Desc.eyeColor($activeSlave)>> eyes take in your massive testicles.<<else>>$his groping hand feels your massive testicles.<</if>> Realizing just how big $his meal will be, $he's obviously @@.gold;frightened.@@ You grab $his head, breaking $him out of $his shocked stillness, and explain that you can't let $him starve. If $he won't eat out of the feeder, you'll just have to feed $him some other way. With that, you ram your cock forward and start fucking $his <<if $activeSlave.face > 95>>heartbreakingly beautiful<<elseif $activeSlave.face > 10>>pretty<<else>>homely<</if>> face. After a few minutes of gagging oral, you start to approach your climax. Your thorough facefucking leaves $him unable to beg or even moan, but $his eyes widen in terror when $he realizes you're about to cum. You don't give $him any time to prepare, instead hilting yourself immediately, and letting $his throat's desperate attempts to swallow bring you over the edge. You begin your long release of pent-up jizz, spraying deciliter after deciliter of cum down $his throat and into $his stomach. By the time you've finished, you can tell $he's struggling for air and in pain from the massive quantity of thick fluid in $his stomach. You give $him a helpful hint before releasing $him: "If you take it all the way in your throat, you don't even have to <<if canTaste($activeSlave)>>taste<<else>>feel<</if>> what it's feeding you." You pull out of $his mouth and let $him go. $He gasps for air and almost immediately vomits some of your cum all over $himself, turning $him into a degraded, humiliated mess. $He lays on the floor and desperately concentrates on breathing, squeezing the tears out of $his eyes to run down $his $activeSlave.skin cheeks.
+			<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>You leave the poor slave to take $his drugs up the ass, since the kitchen administers those by phallus, too. Fortunately for $him, $he doesn't object to that.<</if>>
+			<<set $activeSlave.trust -= 2, $activeSlave.counter.oral++, $oralTotal++>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "suppository resistance">>
@@ -17055,40 +17060,40 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Talk $him through it">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You put as much quiet authority into your voice as you can, and explain to $him that $he is required to take $his drugs up $his ass. You do not explain any of the actual reasons why you require slaves to submit to daily machine anal, but couch your quiet explanation in terms of $his life as a slave. You tell $him that taking a solid buttfuck from a machine first thing in the morning is something you've ordered $him to do. $He needs to do it. If $he does, $he'll be treated well; if $he does not, that will oblige you to punish $him. You tell $him that you would like $him to be a good slave, and that it would be disappointing if you had to punish $him. You put just a hint of steel into the last sentence, and $he stiffens a little at it. Hesitantly, $he
-	<<if $activeSlave.belly >= 300000>>
-		shifts onto $his _belly belly, uses $his hands to brace $himself against the impending pounding, and scoots towards the phallus.
-	<<else>>
-		gets to $his knees, using $his hands to spread $his cheeks for the phallus.
-	<</if>>
-	Sensing that it's being offered an anus, it gently pushes inside $his rectum. Its strokes get longer and faster, <<if $activeSlave.anus > 2>>until $he's groaning under the sodomy despite $his loose ass<<elseif $activeSlave.anus > 1>>quickly gaping $his big butthole and making $him groan<<else>>making $him gasp as it stretches $his poor little asshole<</if>>.
-	<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>$He doesn't manage to groan for long, though, since the kitchen extends another phallus to feed $him $his breakfast. Before long, $he's being spitroasted by machines.<</if>>
-	Once $he's fully awake, $he's mostly @@.mediumaquamarine;relieved@@ that you let $him get away with hesitation about obedience and took the time to talk $him through it.
-	<<set $activeSlave.trust += 4>>
+		You put as much quiet authority into your voice as you can, and explain to $him that $he is required to take $his drugs up $his ass. You do not explain any of the actual reasons why you require slaves to submit to daily machine anal, but couch your quiet explanation in terms of $his life as a slave. You tell $him that taking a solid buttfuck from a machine first thing in the morning is something you've ordered $him to do. $He needs to do it. If $he does, $he'll be treated well; if $he does not, that will oblige you to punish $him. You tell $him that you would like $him to be a good slave, and that it would be disappointing if you had to punish $him. You put just a hint of steel into the last sentence, and $he stiffens a little at it. Hesitantly, $he
+		<<if $activeSlave.belly >= 300000>>
+			shifts onto $his _belly belly, uses $his hands to brace $himself against the impending pounding, and scoots towards the phallus.
+		<<else>>
+			gets to $his knees, using $his hands to spread $his cheeks for the phallus.
+		<</if>>
+		Sensing that it's being offered an anus, it gently pushes inside $his rectum. Its strokes get longer and faster, <<if $activeSlave.anus > 2>>until $he's groaning under the sodomy despite $his loose ass<<elseif $activeSlave.anus > 1>>quickly gaping $his big butthole and making $him groan<<else>>making $him gasp as it stretches $his poor little asshole<</if>>.
+		<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>$He doesn't manage to groan for long, though, since the kitchen extends another phallus to feed $him $his breakfast. Before long, $he's being spitroasted by machines.<</if>>
+		Once $he's fully awake, $he's mostly @@.mediumaquamarine;relieved@@ that you let $him get away with hesitation about obedience and took the time to talk $him through it.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Punish $him with a bigger phallus">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You give the kitchen an order by voice command. It's technical, so $he doesn't understand it, but the meaning becomes clear soon enough. The phallus aiming meaningfully at the place where $he's supposed to kneel and offer up $his butthole is withdrawn, and $he's halfway through a shocked thank you when it's replaced by another, noticeably larger. You tell $him in deceptively mild tones that you'll keep increasing the size of $his phallus until $he decides to get down and take it like a good little $desc, or you run out of size options and are forced to strap $him down and apply two at once. At that point, $his ass might be able to take it; then again, it might not. $He begins to cry, but is so @@.gold;frightened@@ by the threat that $he doesn't let $him tears distract $him from a delectable scramble to
-	<<if $activeSlave.belly >= 300000>>
-		throw $himself onto $his _belly belly
-	<<else>>
-		get down on $his knees
-	<</if>>
-	and <<if $activeSlave.butt > 6>>heave $his huge buttocks apart<<elseif $activeSlave.butt > 3>>spread $his broad buttocks<<else>>spread $his cute ass wide<</if>>.
-	<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>Once it's got its phallus sliding in and out of $his asshole, the kitchen gives $him another, to suck off for $his breakfast. Fortunately for $him, $he doesn't object, and only gets facefucked by the normal dildo.<</if>>
-	$He keeps the threat in mind, and has a slightly sore ass to @@.hotpink;help $him remember to obey without question.@@
-	<<set $activeSlave.trust -= 2, $activeSlave.devotion += 2>>
+		You give the kitchen an order by voice command. It's technical, so $he doesn't understand it, but the meaning becomes clear soon enough. The phallus aiming meaningfully at the place where $he's supposed to kneel and offer up $his butthole is withdrawn, and $he's halfway through a shocked thank you when it's replaced by another, noticeably larger. You tell $him in deceptively mild tones that you'll keep increasing the size of $his phallus until $he decides to get down and take it like a good little $desc, or you run out of size options and are forced to strap $him down and apply two at once. At that point, $his ass might be able to take it; then again, it might not. $He begins to cry, but is so @@.gold;frightened@@ by the threat that $he doesn't let $him tears distract $him from a delectable scramble to
+		<<if $activeSlave.belly >= 300000>>
+			throw $himself onto $his _belly belly
+		<<else>>
+			get down on $his knees
+		<</if>>
+		and <<if $activeSlave.butt > 6>>heave $his huge buttocks apart<<elseif $activeSlave.butt > 3>>spread $his broad buttocks<<else>>spread $his cute ass wide<</if>>.
+		<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>Once it's got its phallus sliding in and out of $his asshole, the kitchen gives $him another, to suck off for $his breakfast. Fortunately for $him, $he doesn't object, and only gets facefucked by the normal dildo.<</if>>
+		$He keeps the threat in mind, and has a slightly sore ass to @@.hotpink;help $him remember to obey without question.@@
+		<<set $activeSlave.trust -= 2, $activeSlave.devotion += 2>>
 	<</replace>>
 <</link>>
 <br><<link "Double penetrate $his ass for insolence">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You step forward and take gentle hold of the slave's throat, telling $him to get down on $his knees like a good little $desc. You make no threat, but give $him the order in a voice of brass. $He knows what you can do to $him, and hurries to obey, @@.gold;terribly frightened.@@ $His fear is justified. You announce that $he's avoided serious punishment, but $he still needs correction for $his hesitation and insolence. $He's concerned when $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>feels<</if>> you <<if $PC.dick == 1>>get your dick<<if $PC.vagina == 1>>and pussy<</if>> out<<else>>don a strap-on<</if>>, though $he's distracted by the rapidly accelerating buttfuck $he's getting from the machine. $He tries to offer you $his throat, but $his hopes are dashed when you walk around behind $him, swing a leg over the machine pistoning in and out of $his asshole, and command it to stop for a moment. Then you work <<if $PC.dick == 1>>yourself<<else>>your own dildo<</if>> up $his ass alongside the phallus that already fills it. The drugs are delivered with lubricant, and you do fit, but only after a nice long session of sobbing, spasming, and finally crying resignation. Then you order the machine to go back to what it was doing, and the resignation vanishes, replaced with anal pain as $activeSlave.slaveName takes double penetration up $his <<if $activeSlave.anus > 2>>gaping anus<<elseif $activeSlave.anus == 2>>big butthole<<else>>poor, abused little butt<</if>>.
-	<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>When you grow tired of the whining, you order the kitchen to give the bitch breakfast. It extends a feeding phallus and fills $his throat, muffling the noise somewhat.<</if>>
-	<<set $activeSlave.trust -= 4>>
-	<<= AnalVCheck()>>
+		You step forward and take gentle hold of the slave's throat, telling $him to get down on $his knees like a good little $desc. You make no threat, but give $him the order in a voice of brass. $He knows what you can do to $him, and hurries to obey, @@.gold;terribly frightened.@@ $His fear is justified. You announce that $he's avoided serious punishment, but $he still needs correction for $his hesitation and insolence. $He's concerned when $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>feels<</if>> you <<if $PC.dick == 1>>get your dick<<if $PC.vagina == 1>>and pussy<</if>> out<<else>>don a strap-on<</if>>, though $he's distracted by the rapidly accelerating buttfuck $he's getting from the machine. $He tries to offer you $his throat, but $his hopes are dashed when you walk around behind $him, swing a leg over the machine pistoning in and out of $his asshole, and command it to stop for a moment. Then you work <<if $PC.dick == 1>>yourself<<else>>your own dildo<</if>> up $his ass alongside the phallus that already fills it. The drugs are delivered with lubricant, and you do fit, but only after a nice long session of sobbing, spasming, and finally crying resignation. Then you order the machine to go back to what it was doing, and the resignation vanishes, replaced with anal pain as $activeSlave.slaveName takes double penetration up $his <<if $activeSlave.anus > 2>>gaping anus<<elseif $activeSlave.anus == 2>>big butthole<<else>>poor, abused little butt<</if>>.
+		<<if ($suppository != 0) && ($activeSlave.drugs != "none")>>When you grow tired of the whining, you order the kitchen to give the bitch breakfast. It extends a feeding phallus and fills $his throat, muffling the noise somewhat.<</if>>
+		<<set $activeSlave.trust -= 4>>
+		<<= AnalVCheck()>>
 	<</replace>>
 <</link>>
 
@@ -17097,223 +17102,223 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Carry $him to where $he needs to go">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You scoop $him up into a bridal carry. $He <<if $activeSlave.voice == 0>>gasps, since $he can't squeal<<else>>squeals cutely<</if>>, holding on for dear life, and keeps $his face nestled against $his <<= WrittenMaster($activeSlave)>>.
-	<<set _carried = 1>>
-	<<if $activeSlave.belly >= 300000>>
-		<<if $activeSlave.bellyPreg > 3000>>
-			$His _belly pregnancy
-		<<else>>
-			$His _belly belly
-		<</if>>
-		makes holding $him extremely difficult, not including just how much it weighs, so you're forced to quickly return $him to $his feet.
-		<<set _carried = 0>>
-	<<elseif $activeSlave.boobs > 40000>>
-		$His expansive tits not only weigh $him down, but also keep you from holding $him up for long.
-		<<set _carried = 0>>
-	<<elseif $activeSlave.weight > 160>>
-		$He's certainly an armful and a little too fat for you to hold for long.
-		<<set _carried = 0>>
-	<<elseif $activeSlave.balls > 200>>
-		$His tremendous balls serve as an imposing anchor, quickly forcing you to lower $him back to the ground.
-		<<set _carried = 0>>
-	<<elseif $activeSlave.dick > 30>>
-		<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-			$His hanging dick adds tremendously to $his weight and touches the floor, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
-		<<else>>
-			$His hanging dick adds tremendously to $his weight and touches the floor, preventing you from really carrying $him very far.
+		You scoop $him up into a bridal carry. $He <<if $activeSlave.voice == 0>>gasps, since $he can't squeal<<else>>squeals cutely<</if>>, holding on for dear life, and keeps $his face nestled against $his <<= WrittenMaster($activeSlave)>>.
+		<<set _carried = 1>>
+		<<if $activeSlave.belly >= 300000>>
+			<<if $activeSlave.bellyPreg > 3000>>
+				$His _belly pregnancy
+			<<else>>
+				$His _belly belly
+			<</if>>
+			makes holding $him extremely difficult, not including just how much it weighs, so you're forced to quickly return $him to $his feet.
 			<<set _carried = 0>>
-		<</if>>
-	<<elseif $activeSlave.belly >= 100000>>
-		<<if $activeSlave.bellyPreg > 3000>>
+		<<elseif $activeSlave.boobs > 40000>>
+			$His expansive tits not only weigh $him down, but also keep you from holding $him up for long.
+			<<set _carried = 0>>
+		<<elseif $activeSlave.weight > 160>>
+			$He's certainly an armful and a little too fat for you to hold for long.
+			<<set _carried = 0>>
+		<<elseif $activeSlave.balls > 200>>
+			$His tremendous balls serve as an imposing anchor, quickly forcing you to lower $him back to the ground.
+			<<set _carried = 0>>
+		<<elseif $activeSlave.dick > 30>>
 			<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-				$His pregnancy is truly gigantic, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+				$His hanging dick adds tremendously to $his weight and touches the floor, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
 			<<else>>
-				$His pregnancy is truly gigantic and a little too big for you to safely carry without the risk of dropping, quickly forcing you to lower $him.
+				$His hanging dick adds tremendously to $his weight and touches the floor, preventing you from really carrying $him very far.
 				<<set _carried = 0>>
 			<</if>>
-		<<else>>
+		<<elseif $activeSlave.belly >= 100000>>
+			<<if $activeSlave.bellyPreg > 3000>>
+				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
+					$His pregnancy is truly gigantic, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+				<<else>>
+					$His pregnancy is truly gigantic and a little too big for you to safely carry without the risk of dropping, quickly forcing you to lower $him.
+					<<set _carried = 0>>
+				<</if>>
+			<<else>>
+				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
+					$His _belly belly is truly gigantic, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+				<<else>>
+					$His _belly belly is truly an armful and a little to heavy for you to carry, quickly forcing you to lower $him.
+					<<set _carried = 0>>
+				<</if>>
+			<</if>>
+		<<elseif $activeSlave.boobs > 25000>>
+			$His enormous boobs
 			<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-				$His _belly belly is truly gigantic, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+				add tremendously to $his weight and are awkward to manage, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
 			<<else>>
-				$His _belly belly is truly an armful and a little to heavy for you to carry, quickly forcing you to lower $him.
+				add tremendously to $his weight and are awkward to manage, quickly forcing you to lower $him.
 				<<set _carried = 0>>
 			<</if>>
-		<</if>>
-	<<elseif $activeSlave.boobs > 25000>>
-		$His enormous boobs
-		<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-			add tremendously to $his weight and are awkward to manage, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
-		<<else>>
-			add tremendously to $his weight and are awkward to manage, quickly forcing you to lower $him.
-			<<set _carried = 0>>
-		<</if>>
-	<<elseif $activeSlave.weight > 130>>
-		$He's a
-		<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-			fatty, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
-		<<else>>
-			fatty and a little too big and heavy for you to hold for long.
-			<<set _carried = 0>>
-		<</if>>
-	<<elseif $activeSlave.balls > 100>>
-		$His enormous balls
-		<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-			add tremendously to $his weight and dangle ponderously, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance, even though you have to step awkwardly to avoid kneeing $his sensitive sack.
+		<<elseif $activeSlave.weight > 130>>
+			$He's a
+			<<if $arcologies[0].FSPhysicalIdealist != "unset">>
+				fatty, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+			<<else>>
+				fatty and a little too big and heavy for you to hold for long.
+				<<set _carried = 0>>
+			<</if>>
+		<<elseif $activeSlave.balls > 100>>
+			$His enormous balls
+			<<if $arcologies[0].FSPhysicalIdealist != "unset">>
+				add tremendously to $his weight and dangle ponderously, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance, even though you have to step awkwardly to avoid kneeing $his sensitive sack.
+			<<else>>
+				add tremendously to $his weight and dangle ponderously, quickly forcing you to lower $him or risk accidentally kneeing the sensitive sack.
+				<<set _carried = 0>>
+			<</if>>
+		<<elseif $activeSlave.dick > 20>>
+			$His dangling cock adds tremendously to $his weight and is awkward to walk with, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+		<<elseif $activeSlave.butt > 18>>
+			$His expansive ass
+			<<if $arcologies[0].FSPhysicalIdealist != "unset">>
+				adds tremendously to $his weight and is awkward to handle, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+			<<else>>
+				adds tremendously to $his weight and is awkward to handle, quickly forcing you to lower $him.
+				<<set _carried = 0>>
+			<</if>>
+		<<elseif $activeSlave.boobs > 8000>>
+			$His boobs add tremendously to $his weight, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+		<<elseif $activeSlave.weight > 95>>
+			$He's got some extra weight on $him, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+		<<elseif $activeSlave.height > 180>>
+			$He's a big $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+		<<elseif $activeSlave.weight > 30>>
+			$He's a chubby $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+		<<elseif $activeSlave.bellyPreg >= 10000>>
+			$He's heavily pregnant, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+		<<elseif $activeSlave.bellyImplant >= 10000>>
+			$His belly is greatly laden with inert filler, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+		<<elseif $activeSlave.bellyFluid >= 10000>>
+			$His belly is greatly laden with <<print $activeSlave.inflationType>>, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+		<<elseif $activeSlave.height > 160>>
+			$He's no little $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him.
+		<<elseif $activeSlave.weight > 10>>
+			$He's got a deliciously plush body, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him.
 		<<else>>
-			add tremendously to $his weight and dangle ponderously, quickly forcing you to lower $him or risk accidentally kneeing the sensitive sack.
-			<<set _carried = 0>>
+			You could carry the little slave like this as long as you like.
 		<</if>>
-	<<elseif $activeSlave.dick > 20>>
-		$His dangling cock adds tremendously to $his weight and is awkward to walk with, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
-	<<elseif $activeSlave.butt > 18>>
-		$His expansive ass
-		<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-			adds tremendously to $his weight and is awkward to handle, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
+		<<if _carried == 1>>
+			Knowing that $he'll need to get dressed before the next part of $his day, you carry $him to <<if $activeSlave.livingRules == "luxurious">>$his room<<else>>the part of the common area with where clothes are kept<</if>>. $He remains perfectly limp, letting $himself be carried without a word. When you set $him on $his feet,
 		<<else>>
-			adds tremendously to $his weight and is awkward to handle, quickly forcing you to lower $him.
-			<<set _carried = 0>>
+			Knowing that $he'll need to get dressed before the next part of $his day, you help $him to <<if $activeSlave.livingRules == "luxurious">>$his room<<else>>the part of the common area with where clothes are kept<</if>>. $He lets you do most of the work, letting $himself be guided without a word. When you set $him on $his bed,
 		<</if>>
-	<<elseif $activeSlave.boobs > 8000>>
-		$His boobs add tremendously to $his weight, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
-	<<elseif $activeSlave.weight > 95>>
-		$He's got some extra weight on $him, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
-	<<elseif $activeSlave.height > 180>>
-		$He's a big $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
-	<<elseif $activeSlave.weight > 30>>
-		$He's a chubby $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
-	<<elseif $activeSlave.bellyPreg >= 10000>>
-		$He's heavily pregnant, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
-	<<elseif $activeSlave.bellyImplant >= 10000>>
-		$His belly is greatly laden with inert filler, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
-	<<elseif $activeSlave.bellyFluid >= 10000>>
-		$His belly is greatly laden with <<print $activeSlave.inflationType>>, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
-	<<elseif $activeSlave.height > 160>>
-		$He's no little $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him.
-	<<elseif $activeSlave.weight > 10>>
-		$He's got a deliciously plush body, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him.
-	<<else>>
-		You could carry the little slave like this as long as you like.
-	<</if>>
-	<<if _carried == 1>>
-		Knowing that $he'll need to get dressed before the next part of $his day, you carry $him to <<if $activeSlave.livingRules == "luxurious">>$his room<<else>>the part of the common area with where clothes are kept<</if>>. $He remains perfectly limp, letting $himself be carried without a word. When you set $him on $his feet,
-	<<else>>
-		Knowing that $he'll need to get dressed before the next part of $his day, you help $him to <<if $activeSlave.livingRules == "luxurious">>$his room<<else>>the part of the common area with where clothes are kept<</if>>. $He lets you do most of the work, letting $himself be guided without a word. When you set $him on $his bed,
-	<</if>>
-	there's a little unaccountable moisture in $his <<= App.Desc.eyeColor($activeSlave)>> eyes @@.mediumaquamarine;for some reason.@@ $He gives you a kiss and thanks you prettily.
-	<<set $activeSlave.trust += 4>>
+		there's a little unaccountable moisture in $his <<= App.Desc.eyeColor($activeSlave)>> eyes @@.mediumaquamarine;for some reason.@@ $He gives you a kiss and thanks you prettily.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave)) && $activeSlave.belly < 15000>>
-<br><<link "Scoop $him up and fuck $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You squat down, and $he plants $his feet, expecting to be given a swat on the bottom and sent on $his way. Instead, you run your hands down $his
-	<<if $activeSlave.weight > 130>>
-		well-padded
-	<<elseif $activeSlave.weight > 95>>
-		padded
-	<<elseif $activeSlave.muscles > 30>>
-		heavily muscled
-	<<elseif $activeSlave.weight > 30>>
-		chubby
-	<<elseif $activeSlave.weight > 10>>
-		plush
-	<<elseif $activeSlave.muscles > 5>>
-		toned
-	<<else>>
-		soft
-	<</if>>
-	thighs, producing a shiver from the $desc, and lift $him up against your chest, pinning $him there with your hands supporting the backs of $his knees. Giggling<<if $activeSlave.voice == 0>> mutely<</if>>, $he finds $himself held in a fetal position with $his back pressed against your <<if $PC.boobs == 1>>tits<<else>>chest<</if>>.
-	<<if $activeSlave.boobs > 40000>>
-		$His expansive tits not only weigh $him down, but also force you to push $him against the shower wall for added support.
-	<<elseif $activeSlave.weight > 160>>
-		$He's certainly an armful and a little too fat, forcing you to push $him against the shower wall for added support.
-	<<elseif $activeSlave.balls > 200>>
-		$His tremendous balls serve as an imposing anchor, quickly forcing you to push $him against the shower wall for added support.
-	<<elseif $activeSlave.dick > 30>>
-		<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-			$His hanging dick adds tremendously to $his weight and touches the floor, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
-		<<else>>
-			$His hanging dick adds tremendously to $his weight and touches the floor, quickly forcing you to push $him against the shower wall for added support.
-		<</if>>
-	<<elseif $activeSlave.boobs > 25000>>
-		$His enormous boobs
-		<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-			add tremendously to $his weight and are awkward to manage, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
-		<<else>>
-			add tremendously to $his weight and are awkward to manage, quickly forcing you to push $him against the shower wall for added support.
-		<</if>>
-	<<elseif $activeSlave.weight > 130>>
-		$He's a
-		<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-			fatty, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
-		<<else>>
-			fatty and a little too big and heavy, quickly forcing you to push $him against the shower wall with a wet slap.
-		<</if>>
-	<<elseif $activeSlave.balls > 100>>
-		$His enormous balls
-		<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-			add tremendously to $his weight and dangle ponderously, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
-		<<else>>
-			add tremendously to $his weight and dangle ponderously, quickly forcing you to push $him against the shower wall for added support.
-		<</if>>
-	<<elseif $activeSlave.dick > 20>>
-		$His dangling cock adds tremendously to $his weight and dangles heavily, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
-	<<elseif $activeSlave.butt > 18>>
-		$His expansive ass
-		<<if $arcologies[0].FSPhysicalIdealist != "unset">>
-			adds tremendously to $his weight and is awkward to handle, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
-		<<else>>
-			adds tremendously to $his weight and is awkward to handle, quickly forcing you to push $him against the shower wall for added support.
-		<</if>>
-	<<elseif $activeSlave.boobs > 8000>>
-		$His boobs add tremendously to $his weight, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
-	<<elseif $activeSlave.weight > 95>>
-		$He's got some extra weight on $him, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
-	<<elseif $activeSlave.height > 180>>
-		$He's a big $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
-	<<elseif $activeSlave.weight > 30>>
-		$He's a chubby $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
-	<<elseif $activeSlave.bellyPreg >= 10000>>
-		$He's heavily pregnant, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
-	<<elseif $activeSlave.bellyImplant >= 10000>>
-		$His belly is greatly laden with inert filler, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
-	<<elseif $activeSlave.bellyFluid >= 10000>>
-		$His belly is greatly laden with <<print $activeSlave.inflationType>>, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
-	<<elseif $activeSlave.height > 160>>
-		$He's no little $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him with ease.
-	<<elseif $activeSlave.weight > 10>>
-		$He's got a deliciously plush body, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him with ease.
-	<<else>>
-		You can hold the little slave like this as long as you like.
-	<</if>>
-	You shift your grip to hold $him with one hand so you can
-	<<if $PC.dick == 1>>
-		maneuver your cock inside $him, and then resume your original hold so you can slide $him up and down your shaft. <<if $PC.vagina == 1>>You make sure $he's really hilted at the height of each stroke, putting some nice pressure on your pussy.<</if>>
-	<<else>>
-		slide your fingers inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>, since you're not putting $him down to get a strap-on. Knowing $he can't reach your cunt to return the favor like this, $he relaxes and lets you play with $him.
-	<</if>>
-	Helpless, $he has nothing to do but <<if canSee($activeSlave)>>watch $himself get fucked in a full length mirror. $He stares, fascinated, and the sight<<else>>let $his hands wander across $his body. Teasing $his nipples<<if $activeSlave.bellyPreg >= 5000>> and pregnant belly<</if>><</if>> gets $him off quickly,
-	<<if $activeSlave.dick == 0>>
-		$his muscles tensing prettily with female orgasm.
-	<<elseif ($activeSlave.chastityPenis == 1)>>
-		a dribble of cum flowing from the tip of $his chastity cage.
-	<<elseif canAchieveErection($activeSlave)>>
-		$his stiffly waving cock jetting cum onto the floor.
-	<<elseif $activeSlave.dick > 6>>
-		$his absurd cock twitching lazily as $his ejaculate makes it down its length.
-	<<elseif $activeSlave.balls == 0>>
-		$his bitchclit dribbling weakly.
-	<<elseif $activeSlave.dick > 0>>
-		$his limp dick twitching as $he cums.
-	<<else>>
-		making $him shudder.
-	<</if>>
-	When you're done, you let $him down, and the first thing $he does is spin in your embrace to give you an @@.hotpink;earnest kiss.@@
-	<<= SimpleVCheck()>>
-	<<set $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>><<if (($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) || (($activeSlave.anus == 0) && canDoAnal($activeSlave))>> //This option will take virginity//<</if>>
+	<br><<link "Scoop $him up and fuck $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You squat down, and $he plants $his feet, expecting to be given a swat on the bottom and sent on $his way. Instead, you run your hands down $his
+			<<if $activeSlave.weight > 130>>
+				well-padded
+			<<elseif $activeSlave.weight > 95>>
+				padded
+			<<elseif $activeSlave.muscles > 30>>
+				heavily muscled
+			<<elseif $activeSlave.weight > 30>>
+				chubby
+			<<elseif $activeSlave.weight > 10>>
+				plush
+			<<elseif $activeSlave.muscles > 5>>
+				toned
+			<<else>>
+				soft
+			<</if>>
+			thighs, producing a shiver from the $desc, and lift $him up against your chest, pinning $him there with your hands supporting the backs of $his knees. Giggling<<if $activeSlave.voice == 0>> mutely<</if>>, $he finds $himself held in a fetal position with $his back pressed against your <<if $PC.boobs == 1>>tits<<else>>chest<</if>>.
+			<<if $activeSlave.boobs > 40000>>
+				$His expansive tits not only weigh $him down, but also force you to push $him against the shower wall for added support.
+			<<elseif $activeSlave.weight > 160>>
+				$He's certainly an armful and a little too fat, forcing you to push $him against the shower wall for added support.
+			<<elseif $activeSlave.balls > 200>>
+				$His tremendous balls serve as an imposing anchor, quickly forcing you to push $him against the shower wall for added support.
+			<<elseif $activeSlave.dick > 30>>
+				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
+					$His hanging dick adds tremendously to $his weight and touches the floor, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
+				<<else>>
+					$His hanging dick adds tremendously to $his weight and touches the floor, quickly forcing you to push $him against the shower wall for added support.
+				<</if>>
+			<<elseif $activeSlave.boobs > 25000>>
+				$His enormous boobs
+				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
+					add tremendously to $his weight and are awkward to manage, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
+				<<else>>
+					add tremendously to $his weight and are awkward to manage, quickly forcing you to push $him against the shower wall for added support.
+				<</if>>
+			<<elseif $activeSlave.weight > 130>>
+				$He's a
+				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
+					fatty, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
+				<<else>>
+					fatty and a little too big and heavy, quickly forcing you to push $him against the shower wall with a wet slap.
+				<</if>>
+			<<elseif $activeSlave.balls > 100>>
+				$His enormous balls
+				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
+					add tremendously to $his weight and dangle ponderously, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
+				<<else>>
+					add tremendously to $his weight and dangle ponderously, quickly forcing you to push $him against the shower wall for added support.
+				<</if>>
+			<<elseif $activeSlave.dick > 20>>
+				$His dangling cock adds tremendously to $his weight and dangles heavily, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
+			<<elseif $activeSlave.butt > 18>>
+				$His expansive ass
+				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
+					adds tremendously to $his weight and is awkward to handle, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
+				<<else>>
+					adds tremendously to $his weight and is awkward to handle, quickly forcing you to push $him against the shower wall for added support.
+				<</if>>
+			<<elseif $activeSlave.boobs > 8000>>
+				$His boobs add tremendously to $his weight, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
+			<<elseif $activeSlave.weight > 95>>
+				$He's got some extra weight on $him, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
+			<<elseif $activeSlave.height > 180>>
+				$He's a big $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
+			<<elseif $activeSlave.weight > 30>>
+				$He's a chubby $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
+			<<elseif $activeSlave.bellyPreg >= 10000>>
+				$He's heavily pregnant, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
+			<<elseif $activeSlave.bellyImplant >= 10000>>
+				$His belly is greatly laden with inert filler, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
+			<<elseif $activeSlave.bellyFluid >= 10000>>
+				$His belly is greatly laden with <<print $activeSlave.inflationType>>, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
+			<<elseif $activeSlave.height > 160>>
+				$He's no little $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him with ease.
+			<<elseif $activeSlave.weight > 10>>
+				$He's got a deliciously plush body, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him with ease.
+			<<else>>
+				You can hold the little slave like this as long as you like.
+			<</if>>
+			You shift your grip to hold $him with one hand so you can
+			<<if $PC.dick == 1>>
+				maneuver your cock inside $him, and then resume your original hold so you can slide $him up and down your shaft. <<if $PC.vagina == 1>>You make sure $he's really hilted at the height of each stroke, putting some nice pressure on your pussy.<</if>>
+			<<else>>
+				slide your fingers inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>, since you're not putting $him down to get a strap-on. Knowing $he can't reach your cunt to return the favor like this, $he relaxes and lets you play with $him.
+			<</if>>
+			Helpless, $he has nothing to do but <<if canSee($activeSlave)>>watch $himself get fucked in a full length mirror. $He stares, fascinated, and the sight<<else>>let $his hands wander across $his body. Teasing $his nipples<<if $activeSlave.bellyPreg >= 5000>> and pregnant belly<</if>><</if>> gets $him off quickly,
+			<<if $activeSlave.dick == 0>>
+				$his muscles tensing prettily with female orgasm.
+			<<elseif ($activeSlave.chastityPenis == 1)>>
+				a dribble of cum flowing from the tip of $his chastity cage.
+			<<elseif canAchieveErection($activeSlave)>>
+				$his stiffly waving cock jetting cum onto the floor.
+			<<elseif $activeSlave.dick > 6>>
+				$his absurd cock twitching lazily as $his ejaculate makes it down its length.
+			<<elseif $activeSlave.balls == 0>>
+				$his bitchclit dribbling weakly.
+			<<elseif $activeSlave.dick > 0>>
+				$his limp dick twitching as $he cums.
+			<<else>>
+				making $him shudder.
+			<</if>>
+			When you're done, you let $him down, and the first thing $he does is spin in your embrace to give you an @@.hotpink;earnest kiss.@@
+			<<= SimpleVCheck()>>
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if (($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) || (($activeSlave.anus == 0) && canDoAnal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 
 <<case "happy dance">>
@@ -17321,81 +17326,81 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Enjoy the show">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	There are low leather ottomans scattered all over the penthouse, for rest, relaxation, and sex. You seat yourself on the nearest one, enjoying the spectacle. $He feels your eyes on $him, a sensation $he knows well, and turns with a little smile on $his $activeSlave.faceShape face, putting an extra swing in $his hips<<if $activeSlave.belly >= 5000>>, causing $his weighty middle to swing wide<</if>>. $He's still dancing alone, but now $he's giving you a private show. You give $him the proper music, instructing $assistantName to play the track $he was humming.
-	<br><br>
-	$He advances on you slowly, sensually, relishing the beat and doing $his best to show off $his body.
-	<<if $activeSlave.dick > 0>>
-		$His
-		<<if ($activeSlave.chastityPenis == 1)>>
-			chastity cage sways
-		<<elseif canAchieveErection($activeSlave)>>
-			erection waves back and forth
-		<<elseif $activeSlave.dick > 6>>
-			soft python of a cock swings lewdly
-		<<else>>
-			bitchclit bounces
+		There are low leather ottomans scattered all over the penthouse, for rest, relaxation, and sex. You seat yourself on the nearest one, enjoying the spectacle. $He feels your eyes on $him, a sensation $he knows well, and turns with a little smile on $his $activeSlave.faceShape face, putting an extra swing in $his hips<<if $activeSlave.belly >= 5000>>, causing $his weighty middle to swing wide<</if>>. $He's still dancing alone, but now $he's giving you a private show. You give $him the proper music, instructing $assistantName to play the track $he was humming.
+		<br><br>
+		$He advances on you slowly, sensually, relishing the beat and doing $his best to show off $his body.
+		<<if $activeSlave.dick > 0>>
+			$His
+			<<if ($activeSlave.chastityPenis == 1)>>
+				chastity cage sways
+			<<elseif canAchieveErection($activeSlave)>>
+				erection waves back and forth
+			<<elseif $activeSlave.dick > 6>>
+				soft python of a cock swings lewdly
+			<<else>>
+				bitchclit bounces
+			<</if>>
+			with $his rhythm.
 		<</if>>
-		with $his rhythm.
-	<</if>>
-	<<if $activeSlave.vagina > -1>>
-		$His
-		<<if ($activeSlave.chastityVagina)>>
-		<<elseif $activeSlave.clit > 1>>
-			chastity catches your eye
-		<<elseif $activeSlave.labia > 0>>
-			generous petals catch your eye
-		<<elseif $activeSlave.vaginaLube > 1>>
-			wet cunt glistens
-		<<else>>
-			womanhood is $his center
+		<<if $activeSlave.vagina > -1>>
+			$His
+			<<if ($activeSlave.chastityVagina)>>
+			<<elseif $activeSlave.clit > 1>>
+				chastity catches your eye
+			<<elseif $activeSlave.labia > 0>>
+				generous petals catch your eye
+			<<elseif $activeSlave.vaginaLube > 1>>
+				wet cunt glistens
+			<<else>>
+				womanhood is $his center
+			<</if>>
+			as $he moves.
 		<</if>>
-		as $he moves.
-	<</if>>
-	$He gives you an excellent nude lap dance, expressing the art at the level only the finest old world strippers can manage. The interaction is all about you, your eyes on $his body, your desire for $his touch, and finally your <<if $PC.dick == 1>>cum flowing into $his mouth as $he sucks your dick<<if $PC.vagina == 1>> and the wetness against $his fingers as they tease your pussy<</if>><<else>>pussyjuice coating $his lips as $he eats you out<</if>>. $He @@.mediumaquamarine;knows $his place@@ very well.
-	<<set $activeSlave.trust += 4, $activeSlave.counter.oral++, $oralTotal++>>
+		$He gives you an excellent nude lap dance, expressing the art at the level only the finest old world strippers can manage. The interaction is all about you, your eyes on $his body, your desire for $his touch, and finally your <<if $PC.dick == 1>>cum flowing into $his mouth as $he sucks your dick<<if $PC.vagina == 1>> and the wetness against $his fingers as they tease your pussy<</if>><<else>>pussyjuice coating $his lips as $he eats you out<</if>>. $He @@.mediumaquamarine;knows $his place@@ very well.
+		<<set $activeSlave.trust += 4, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
 <br><<link "Dance along with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He doesn't <<if canSee($activeSlave)>>see<<else>>notice<</if>> you advance on $him; $he's facing away from you, and in any case, $he's lost in $his own little world. At the same moment, however, $he begins to hear the track $he's humming, in perfect synchrony with the way $he's humming it, and senses a presence at $his side. You timed it perfectly, directing the sound system here to play the right track, match it to $him, and fade it in as you approached and began to dance beside $him.
-	<<if $PC.title == 0>>
-		You've got a woman's body, and you match $his moves, though an observer might see greater power and dominance in the way you dance.
-	<<else>>
-		You make your moves the masculine companion to $hers, moving like a paragon of frank male
-		<<if $PC.belly >= 1500>>
-			sexuality, despite the fecund curve to your stomach.
-		<<elseif $PC.boobs == 1>>
-			sexuality, despite the pair of breasts bouncing on your chest.
+		$He doesn't <<if canSee($activeSlave)>>see<<else>>notice<</if>> you advance on $him; $he's facing away from you, and in any case, $he's lost in $his own little world. At the same moment, however, $he begins to hear the track $he's humming, in perfect synchrony with the way $he's humming it, and senses a presence at $his side. You timed it perfectly, directing the sound system here to play the right track, match it to $him, and fade it in as you approached and began to dance beside $him.
+		<<if $PC.title == 0>>
+			You've got a woman's body, and you match $his moves, though an observer might see greater power and dominance in the way you dance.
 		<<else>>
-			sexuality.
+			You make your moves the masculine companion to $hers, moving like a paragon of frank male
+			<<if $PC.belly >= 1500>>
+				sexuality, despite the fecund curve to your stomach.
+			<<elseif $PC.boobs == 1>>
+				sexuality, despite the pair of breasts bouncing on your chest.
+			<<else>>
+				sexuality.
+			<</if>>
 		<</if>>
-	<</if>>
-	<br><br>
-	There's a momentary flaw in $his rhythm, a catch in $his breath as $he realizes what you're doing, but $he gets right back into it, displaying $his pleasure with nothing more than a ghost of a smile and a <<if canSee($activeSlave)>>widening of $his eyes as $he looks you up and down<<else>>slight perk of $his ears as $he tracks your motion<</if>>. $He doesn't shove $himself against you; that would be coarse. Instead $he dances alluringly, just out of your grasp. Taking the dominant role, you encircle $him in your arms and draw $him in close, $his heat perceptible against your skin before the very first graze of $his $activeSlave.skin body against yours. $He continues to dance gorgeously as $he helps you out of your clothes.
-	<br><br>
-	When you're nude, $he turns $his back to you and starts to grind, letting you feel $his
-	<<if $activeSlave.weight > 160>>
-		rippling
-	<<elseif $activeSlave.weight > 95>>
-		thick
-	<<elseif $activeSlave.weight > 30>>
-		chubby
-	<<elseif $activeSlave.muscles > 95>>
-		ripped
-	<<elseif $activeSlave.muscles > 30>>
-		muscled
-	<<elseif $activeSlave.weight > 10>>
-		plush
-	<<elseif ($activeSlave.muscles > 5)>>
-		toned
-	<<elseif $activeSlave.weight < -10>>
-		thin
-	<<else>>
-		soft
-	<</if>>
-	body all up and down your front. Feeling your <<if $PC.dick == 0>>building heat, $he begins to incorporate gentle caresses of your womanhood<<else>>erection brushing against $him, $he begins to corral it between $his buttocks and thighs<</if>>, and you return the favor by teasing $his nipples<<if canDoVaginal($activeSlave)>>, pussylips, clit,<</if>> and even $his ass. You orgasm one after the other, and as the music fades, $he @@.hotpink;throws $his arms around you.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
+		<br><br>
+		There's a momentary flaw in $his rhythm, a catch in $his breath as $he realizes what you're doing, but $he gets right back into it, displaying $his pleasure with nothing more than a ghost of a smile and a <<if canSee($activeSlave)>>widening of $his eyes as $he looks you up and down<<else>>slight perk of $his ears as $he tracks your motion<</if>>. $He doesn't shove $himself against you; that would be coarse. Instead $he dances alluringly, just out of your grasp. Taking the dominant role, you encircle $him in your arms and draw $him in close, $his heat perceptible against your skin before the very first graze of $his $activeSlave.skin body against yours. $He continues to dance gorgeously as $he helps you out of your clothes.
+		<br><br>
+		When you're nude, $he turns $his back to you and starts to grind, letting you feel $his
+		<<if $activeSlave.weight > 160>>
+			rippling
+		<<elseif $activeSlave.weight > 95>>
+			thick
+		<<elseif $activeSlave.weight > 30>>
+			chubby
+		<<elseif $activeSlave.muscles > 95>>
+			ripped
+		<<elseif $activeSlave.muscles > 30>>
+			muscled
+		<<elseif $activeSlave.weight > 10>>
+			plush
+		<<elseif ($activeSlave.muscles > 5)>>
+			toned
+		<<elseif $activeSlave.weight < -10>>
+			thin
+		<<else>>
+			soft
+		<</if>>
+		body all up and down your front. Feeling your <<if $PC.dick == 0>>building heat, $he begins to incorporate gentle caresses of your womanhood<<else>>erection brushing against $him, $he begins to corral it between $his buttocks and thighs<</if>>, and you return the favor by teasing $his nipples<<if canDoVaginal($activeSlave)>>, pussylips, clit,<</if>> and even $his ass. You orgasm one after the other, and as the music fades, $he @@.hotpink;throws $his arms around you.@@
+		<<set $activeSlave.devotion += 4, $activeSlave.counter.oral++, $oralTotal++>>
 	<</replace>>
 <</link>>
 
@@ -17404,74 +17409,74 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Help $him into $his P-Limbs">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You decide to help $him yourself rather than having a slave do it.
-	<<if $activeSlave.ID == $Bodyguard.ID>>Swinging your legs out of bed and heading towards $him<<else>>Heading towards $his part of the sleeping area<</if>>, you're struck by how <<if $activeSlave.belly >= 5000>>round<<else>>small<</if>> $he looks without $his prosthetics. Just a little $activeSlave.skin thing, without the
-	<<if $activeSlave.amp == -2>>
-		sexy artificial limbs that let $him delight anyone who fucks $him with vibrating fingertips.
-	<<elseif $activeSlave.amp == -3>>
-		incredible artificial limbs so perfect that many mistake them for the real thing.
-	<<elseif $activeSlave.amp == -4>>
-		armored artificial limbs that make $him a deadly war machine.
-	<<elseif $activeSlave.amp == -5>>
-		advanced artificial limbs that let $him delight sexual partners, fight enemies, and even live a normal life.
-	<<else>>
-		artificial limbs that allow $him a semblance of a normal life.
-	<</if>>
-	$He's not frightened, trusting <<if $activeSlave.ID == $Bodyguard.ID>>you to help $him, or detail a slave to do so<<else>>$assistantName to bring help<</if>>. When $he <<if canSee($activeSlave)>>sees<<else>>notices<</if>> that you mean to assist $him yourself, $he breaks out in a huge grateful smile and thanks you profusely.
-	<br><br>
-	<<if $activeSlave.ID == $Bodyguard.ID>>First, you extricate $his limbs from the malfunctioning machine. <</if>>As you take up $his first arm and kneel down to attach it to $him, $he rolls and hoists that shoulder up towards it, $his
-	<<if $activeSlave.belly >= 5000>>
-		<<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>bloated<</if>> body straining to twist
-	<<elseif $activeSlave.muscles > 30>>
-		strong body easily twisting
-	<<elseif $activeSlave.muscles > 5>>
-		toned body readily twisting
-	<<else>>
-		soft body straining to twist
-	<</if>>
-	on the sheet despite $his limblessness. When the gleaming halves of the attachment are <<if $showInches == 2>>half an inch<<else>>a few millimeters<</if>> apart, the magnetic seals take over and pull them into perfect alignment. Acting out of pure habit, $he actuates all the muscle group equivalents on the arm, one by one, testing function.
-	<br><br>
-	With one arm and the remaining three limbs within reach, $he can take care of $himself, but $he reaches out to touch your leg lightly from $his place on the ground. <<if ($activeSlave.amp == -3) || ($activeSlave.amp == -5)>>The hand is just as soft and warm as $his original would have been.<<else>>$His hand is smooth and cool.<</if>>
-	<<if !canTalk($activeSlave)>>
-		$He uses $his one hand to rapidly spell out a polite request. $He asks you to attach the rest of $his limbs, too.
-	<<else>>
-		"<<Master>>, would you plea<<s>>e attach the re<<s>>t of them for me?" $he asks politely.
-	<</if>>
-	A transitory nervousness crosses $his $activeSlave.faceShape face as $he asks, but clears into @@.mediumaquamarine;trusting happiness@@ when you nod and pick up $his other arm. $He tests each limb as it's attached, and then tests them all by getting up into a kneel and giving you a hug.
-	<<set $activeSlave.trust += 4>>
-	<</replace>>
-<</link>>
-<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Fuck $him before you help $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You decide to have some fun with the temporarily helpless slave. You
-	<<if $activeSlave.ID == $Bodyguard.ID>>get out of bed<<else>>head to where $he's waiting for help<</if>> and scoop $him up, $his limblessness making it comically easy. With $his torso cradled in your grasp and $his head nestled into the crook of your arm, you carry $his <<if $activeSlave.ID == $Bodyguard.ID>>back towards your bed<<else>>back towards your suite<</if>>. When $he <<if canSee($activeSlave)>>sees<<else>>figures out<</if>> what you're doing, $he turns $his head and gives your <<if $PC.boobs == 1>>breast on that side<<else>>chest<</if>> an anticipatory kiss. When you set $him down on the bed, $he <<if canSee($activeSlave)>>stares<<else>>smiles<</if>> up at you invitingly and gives $his four P-Limb anchor points a glinting wiggle, a gesture that might mean anything. $His <<if canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>, in any case, is presented openly for your use.
-	<br><br>
-	After fingering your helpless toy experimentally, you
-	<<if $PC.dick == 1>>
-		<<if canDoVaginal($activeSlave)>>
-			slide yourself inside $him and start fucking $him.
-			<<= VaginalVCheck()>>
+		You decide to help $him yourself rather than having a slave do it.
+		<<if $activeSlave.ID == $Bodyguard.ID>>Swinging your legs out of bed and heading towards $him<<else>>Heading towards $his part of the sleeping area<</if>>, you're struck by how <<if $activeSlave.belly >= 5000>>round<<else>>small<</if>> $he looks without $his prosthetics. Just a little $activeSlave.skin thing, without the
+		<<if $activeSlave.amp == -2>>
+			sexy artificial limbs that let $him delight anyone who fucks $him with vibrating fingertips.
+		<<elseif $activeSlave.amp == -3>>
+			incredible artificial limbs so perfect that many mistake them for the real thing.
+		<<elseif $activeSlave.amp == -4>>
+			armored artificial limbs that make $him a deadly war machine.
+		<<elseif $activeSlave.amp == -5>>
+			advanced artificial limbs that let $him delight sexual partners, fight enemies, and even live a normal life.
 		<<else>>
-			push yourself up $his butt and start fucking $him.
-			<<= AnalVCheck()>>
+			artificial limbs that allow $him a semblance of a normal life.
 		<</if>>
-	<<else>>
-		straddle $his face, riding $his eager mouth while you use your hands on $his <<if canDoVaginal($activeSlave)>>cunt<<else>>hole<</if>>.
-		<<set $activeSlave.counter.oral++, $oralTotal++>>
-	<</if>>
-	$He has no control at all, but $he trusts you not to hurt $him and is soon enjoying $himself. $He can't seem to stop $himself from trying to move P-Limbs that aren't there, forgetting that $he's not wearing them whenever the arousal builds high enough to make $him forgetful. Eventually $he stops trying to restrain $himself, realizing that you're enjoying $his delicious wriggling beneath you. $He orgasms hard,
-	<<if $PC.dick == 1>>
-		<<if canDoVaginal($activeSlave)>>the walls of $his pussy squeezing your shaft<<else>>$his anus tightening around the base of your dick<</if>>.
-	<<else>>
-		moaning $his climax into your pussy with abandon.
-	<</if>>
-	<br><br>
-	When you've climaxed yourself, $he looks back towards where $his P-Limbs are waiting, but you're not done with $his yet. You pick $him up again and bring $him into the shower. $He tries to help you, but again, $he gives up after a while, letting you wash $him. As you're rinsing the soap off $him, $he @@.hotpink;thanks you devotedly.@@ With the water streaming down $his face, you barely notice $his gentle tears.
-	<<set $activeSlave.devotion += 4>>
+		$He's not frightened, trusting <<if $activeSlave.ID == $Bodyguard.ID>>you to help $him, or detail a slave to do so<<else>>$assistantName to bring help<</if>>. When $he <<if canSee($activeSlave)>>sees<<else>>notices<</if>> that you mean to assist $him yourself, $he breaks out in a huge grateful smile and thanks you profusely.
+		<br><br>
+		<<if $activeSlave.ID == $Bodyguard.ID>>First, you extricate $his limbs from the malfunctioning machine. <</if>>As you take up $his first arm and kneel down to attach it to $him, $he rolls and hoists that shoulder up towards it, $his
+		<<if $activeSlave.belly >= 5000>>
+			<<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>bloated<</if>> body straining to twist
+		<<elseif $activeSlave.muscles > 30>>
+			strong body easily twisting
+		<<elseif $activeSlave.muscles > 5>>
+			toned body readily twisting
+		<<else>>
+			soft body straining to twist
+		<</if>>
+		on the sheet despite $his limblessness. When the gleaming halves of the attachment are <<if $showInches == 2>>half an inch<<else>>a few millimeters<</if>> apart, the magnetic seals take over and pull them into perfect alignment. Acting out of pure habit, $he actuates all the muscle group equivalents on the arm, one by one, testing function.
+		<br><br>
+		With one arm and the remaining three limbs within reach, $he can take care of $himself, but $he reaches out to touch your leg lightly from $his place on the ground. <<if ($activeSlave.amp == -3) || ($activeSlave.amp == -5)>>The hand is just as soft and warm as $his original would have been.<<else>>$His hand is smooth and cool.<</if>>
+		<<if !canTalk($activeSlave)>>
+			$He uses $his one hand to rapidly spell out a polite request. $He asks you to attach the rest of $his limbs, too.
+		<<else>>
+			"<<Master>>, would you plea<<s>>e attach the re<<s>>t of them for me?" $he asks politely.
+		<</if>>
+		A transitory nervousness crosses $his $activeSlave.faceShape face as $he asks, but clears into @@.mediumaquamarine;trusting happiness@@ when you nod and pick up $his other arm. $He tests each limb as it's attached, and then tests them all by getting up into a kneel and giving you a hug.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
-<</link>><<if ((($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) || (($activeSlave.anus == 0) && canDoAnal($activeSlave))) && $PC.dick == 1>> //This option will take virginity//<</if>>
+<</link>>
+<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
+	<br><<link "Fuck $him before you help $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You decide to have some fun with the temporarily helpless slave. You
+			<<if $activeSlave.ID == $Bodyguard.ID>>get out of bed<<else>>head to where $he's waiting for help<</if>> and scoop $him up, $his limblessness making it comically easy. With $his torso cradled in your grasp and $his head nestled into the crook of your arm, you carry $his <<if $activeSlave.ID == $Bodyguard.ID>>back towards your bed<<else>>back towards your suite<</if>>. When $he <<if canSee($activeSlave)>>sees<<else>>figures out<</if>> what you're doing, $he turns $his head and gives your <<if $PC.boobs == 1>>breast on that side<<else>>chest<</if>> an anticipatory kiss. When you set $him down on the bed, $he <<if canSee($activeSlave)>>stares<<else>>smiles<</if>> up at you invitingly and gives $his four P-Limb anchor points a glinting wiggle, a gesture that might mean anything. $His <<if canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>, in any case, is presented openly for your use.
+			<br><br>
+			After fingering your helpless toy experimentally, you
+			<<if $PC.dick == 1>>
+				<<if canDoVaginal($activeSlave)>>
+					slide yourself inside $him and start fucking $him.
+					<<= VaginalVCheck()>>
+				<<else>>
+					push yourself up $his butt and start fucking $him.
+					<<= AnalVCheck()>>
+				<</if>>
+			<<else>>
+				straddle $his face, riding $his eager mouth while you use your hands on $his <<if canDoVaginal($activeSlave)>>cunt<<else>>hole<</if>>.
+				<<set $activeSlave.counter.oral++, $oralTotal++>>
+			<</if>>
+			$He has no control at all, but $he trusts you not to hurt $him and is soon enjoying $himself. $He can't seem to stop $himself from trying to move P-Limbs that aren't there, forgetting that $he's not wearing them whenever the arousal builds high enough to make $him forgetful. Eventually $he stops trying to restrain $himself, realizing that you're enjoying $his delicious wriggling beneath you. $He orgasms hard,
+			<<if $PC.dick == 1>>
+				<<if canDoVaginal($activeSlave)>>the walls of $his pussy squeezing your shaft<<else>>$his anus tightening around the base of your dick<</if>>.
+			<<else>>
+				moaning $his climax into your pussy with abandon.
+			<</if>>
+			<br><br>
+			When you've climaxed yourself, $he looks back towards where $his P-Limbs are waiting, but you're not done with $his yet. You pick $him up again and bring $him into the shower. $He tries to help you, but again, $he gives up after a while, letting you wash $him. As you're rinsing the soap off $him, $he @@.hotpink;thanks you devotedly.@@ With the water streaming down $his face, you barely notice $his gentle tears.
+			<<set $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>><<if ((($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) || (($activeSlave.anus == 0) && canDoAnal($activeSlave))) && $PC.dick == 1>> //This option will take $his virginity//<</if>>
 <</if>>
 
 <<case "orchiectomy please">>
@@ -17479,208 +17484,209 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Order $him to behave $himself">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You give $him stern orders to be a good $girl and behave $himself, regardless of $his silly moods. You don't deign to directly deny $his request for a genital reconfiguration, and $he has the presence of mind not to ask for an explicit denial. $He offers you profoundly submissive promises to control $his emotions and be a good slave, though $he can't hide a glimmer of @@.gold;fear@@ that $he'll fail and suffer punishment.
-	<<set $activeSlave.trust -= 2>>
+		You give $him stern orders to be a good $girl and behave $himself, regardless of $his silly moods. You don't deign to directly deny $his request for a genital reconfiguration, and $he has the presence of mind not to ask for an explicit denial. $He offers you profoundly submissive promises to control $his emotions and be a good slave, though $he can't hide a glimmer of @@.gold;fear@@ that $he'll fail and suffer punishment.
+		<<set $activeSlave.trust -= 2>>
 	<</replace>>
 <</link>>
 <br><<link "Reassure $him about $his body">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him you aren't planning to do that to $him. You explain that $he might be feeling like $he's fully integrated into a life of sexual slavery now, but $he's not even close; $he's got a long way to go before $he's perfectly devoted and trusting. The words might sound harsh, but you deliver them kindly, making the statement one of hope. $He listens without disappointment, and brightens further when you predict that in a few weeks, $he'll get used to $his body's chemistry and accept it. Finally, you add, $his current configuration is the best for $his sex drive. $He bites $his lip and gives you a daring little look when $he <<if canHear($activeSlave)>>hears<<else>>understands<</if>> that, but you decide to keep $him waiting and send $him on $his way. $He @@.hotpink;thanks you@@ without dissembling, not realizing how profoundly $his life has changed, for $him to be reassured by that.
-	<<set $activeSlave.devotion += 4>>
+		You tell $him you aren't planning to do that to $him. You explain that $he might be feeling like $he's fully integrated into a life of sexual slavery now, but $he's not even close; $he's got a long way to go before $he's perfectly devoted and trusting. The words might sound harsh, but you deliver them kindly, making the statement one of hope. $He listens without disappointment, and brightens further when you predict that in a few weeks, $he'll get used to $his body's chemistry and accept it. Finally, you add, $his current configuration is the best for $his sex drive. $He bites $his lip and gives you a daring little look when $he <<if canHear($activeSlave)>>hears<<else>>understands<</if>> that, but you decide to keep $him waiting and send $him on $his way. $He @@.hotpink;thanks you@@ without dissembling, not realizing how profoundly $his life has changed, for $him to be reassured by that.
+		<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "Agree and make sure $he doesn't regret it">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You agree and send $him straight to the surgery. $He looks a little hesitant, as though the prospect is intimidating now that it's actually about to happen, but $he complies obediently. You direct $assistantName to bring $him back to your office as soon as $he's fully recovered. The curatives applied right after surgery hasten $his recovery, and $he's back the next day, standing a little gingerly, $his limp dick looking a bit sore. $He greets you properly, and comes over willingly when you recline in your chair and <<if canSee($activeSlave)>>crook a finger at<<else>>beckon<</if>> $him. <<if canSee($activeSlave)>>As $he approaches, $he notices that <<if $PC.dick == 1>>you've got your<<if $PC.vagina == 1>> futa<</if>> dick out<<else>>you're wearing a strap-on<</if>>, and looks a little apprehensive<<else>>$He approaches gingerly, still slightly sore<</if>>, but $he sits down obediently, <<if $PC.dick == 1>>your erection<<else>>the phallus<</if>> coming to rest between $his legs and lower buttocks, resting against $his perineum and the smooth, recently healed patch of skin at the base of $his dick where $his ballsack used to be. $He gasps at the sensation of <<if $PC.dick == 1>>your hot cock<<if $PC.vagina == 1>> and the wet pussy beneath it<</if>><<else>>the hard thing<</if>> pressed against $his most intimate area, but $he doesn't flinch away.
-	<br><br>
-	You take your time with $him, leaning back in your chair so that $he's lying
-	<<if $PC.boobsBonus > 2>>
-		against your enormous <<if $PC.boobsImplant == 1>>fake breasts<<else>>cow tits<</if>>.
-	<<elseif $PC.boobsBonus == 2>>
-		against your huge<<if $PC.boobsImplant == 1>> firm<<else>> soft<</if>> breasts.
-	<<elseif $PC.boobsBonus == 1>>
-		against your big<<if $PC.boobsImplant == 1>> firm<</if>> breasts.
-	<<elseif $PC.boobs == 1>>
-		against your tits
-	<<elseif $PC.title == 0>>
-		against your flat chest
-	<<else>>
-		on your chest
-	<</if>>
-	and bringing $his head around so you can make out. You play with $his
-	<<if $activeSlave.boobs > 1000>>
-		udders
-	<<elseif $activeSlave.boobs > 300>>
-		boobs
-	<<else>>
-		nipples
-	<</if>>
-	for a while, slowly starting to grind <<if $PC.dick == 1>>your dick<<if $PC.vagina == 1>> and the pussy attached to it<</if>><<else>>the strap-on<</if>> back and forth between $his legs. $He starts to ride you, and starts to beg you to fuck $him. You take $him under the arms and pull $him up, letting <<if $PC.dick == 1>>your erection<<else>>the dildo<</if>> spring free; $he takes the cue and lines its head up with $his
-	<<if $activeSlave.anus > 2>>
-		asspussy.
-	<<elseif $activeSlave.anus > 1>>
-		asshole.
-	<<else>>
-		tight pucker.
-	<</if>>
-	<<= AnalVCheck()>>
-	$He shivers with pleasure as you lower $him onto it and $he feels the pressure
-	<<if $activeSlave.prostate > 0>>
-		against $his prostate.
-	<<else>>
-		in $his rectum.
-	<</if>>
-	$He's so aroused that $he climaxes immediately, shuddering as $his
-	<<if $activeSlave.dick > 6>>
-		monstrous floppy dick twitches, dripping
-	<<elseif $activeSlave.dick > 3>>
-		big but now permanently soft dick drips
-	<<elseif $activeSlave.dick > 1>>
-		little bouncing bitch dick dribbles
-	<<else>>
-		shockingly tiny penis dribbles
-	<</if>>
-	<<if $activeSlave.prostate > 2>>
-		an obscene
-	<<elseif $activeSlave.prostate > 1>>
-		a large
-	<<elseif $activeSlave.prostate == 0>>
-		a negligible
-	<<else>>
-		a small
-	<</if>>
-	amount of clear fluid. By the time you carry $his @@.hotpink;limply submissive@@ body to the shower, $he's orgasmed twice more to your artful anal lovemaking.
-	<<set $activeSlave.devotion += 4>>
-	<<set $activeSlave.balls = 0>>
-	<<set $activeSlave.scrotum = 0>>
-	<<set $activeSlave.health-->>
-	<</replace>>
-<</link>><<if $activeSlave.anus == 0>> //This option will take virginity//<</if>>
-<</if>>
-
-<<case "mean girls">>
-
-<<link "Tolerating verbal abuse is part of a public servant's job">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You inform your personal assistant that you aren't planning to take any action. If you took notice every time a citizen offered a slave on public duty any insult, you'd never be doing anything else. The only interesting part of the interaction was the possible value of the pretty girls, but enslaving them would likely have been difficult and expensive, given their families' probable wealth and influence. As for $activeSlave.slaveName, $he's not deeply affected.
-	<<if $activeSlave.energy > 95>>
-		$He's so horny that petty insults can't compete for $his attention with $his constant, oppressive need to get off.
-	<<elseif $activeSlave.trust > 95 && $activeSlave.devotion >= -20>>
-		$He's confident that $he's a good slave, no matter what some visitors from outside the arcology say.
-	<<elseif $activeSlave.trust > 95>>
-		It just gives $him more of a reason to work against you.
-	<<elseif $activeSlave.devotion > 20>>
-		$He tells $himself that they were wrong, and carries on.
-	<<else>>
-		It's not like the unhappy slave doesn't tell $himself much worse things.
-	<</if>>
-	<</replace>>
-<</link>>
-<br><<link "Enslave them all">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	<<for _ress = 0; _ress < _newSlaves.length; _ress++>>
-		<<run newSlave(_newSlaves[_ress])>> /* skip New Slave Intro */
-		<<run cashX(-8333, "slaveTransfer", _newSlaves[_ress])>>
-	<</for>>
-	<<set _newSlaves[0].clothes = "no clothing">>
-	<<set _newSlaves[1].clothes = "no clothing">>
-	<<set _newSlaves[2].clothes = "no clothing">>
-	<<replace "#artFrame">>
-		/* 000-250-006 */
-		<<if $seeImages == 1>>
-			<div class="imageColumn">
-				<div class="imageRef medImg">
-					<<SlaveArt $activeSlave 2 0>>
-				</div>
-				<div class="imageRef medImg">
-					<<SlaveArt _newSlaves[0] 2 0>>
-				</div>
-				<div class="imageRef medImg">
-					<<SlaveArt _newSlaves[1] 2 0>>
-				</div>
-				<div class="imageRef medImg">
-					<<SlaveArt _newSlaves[2] 2 0>>
-				</div>
-			</div>
-		<</if>>
-		/* 000-250-006 */
-	<</replace>>
-
-	You seize a tablet and hurry out of your office, working furiously and using every feature of $assistantName to the utmost. These bitches have offended you, and you quickly frame the structure of an appropriate revenge. By the time you get to where $activeSlave.slaveName is still being heckled by spoiled, drunken harpies, everyone else present in that arcology hall has mysteriously received urgent messages and gone elsewhere. $activeSlave.slaveName <<if canSee($activeSlave)>>sees you approach, and stares at you<<else>>recognizes your dominant footsteps approaching, and turns to face you<</if>>, $his sudden intense look alerting your vile little guests to your presence. One of them attempts to frame an insult for the interloper, but one of _his2 friends pokes _him2 in the side and whispers something in _his2 ear and _he2 goes silent, staring at you with wide eyes.
-	<<if $PC.title != 1>>_He2 then winces, visibly realizing that you're likely aware that _he2 called $activeSlave.slaveName's owner $his Master. Somehow, the mistake seems important to _him2 now that you're standing here, effortlessly dominating the space for all your femininity.<</if>>
-	<br><br>
-	You hold the tablet out to them wordlessly. It's displaying security footage of the three of them, boarding a public VTOL transport for another arcology nearby. The prominent timestamp is thirty minutes in the future. The scene changes, showing them partying in one of that arcology's nightclubs. You clear your throat, dragging their attention away from the counterfeited footage, and describe in detail the other evidence — tickets, identification checks, biometrics — that will prove they left your arcology and visited two others before regrettably disappearing. One of them tries, with utter predictability, to threaten you with _his2 father, but you tell _him2 bluntly that if he does make the effort, he'll be looking in the wrong place.
-	<br><br>
-	"We shouldn't have come here," one of them says dully. _He3's wrong in that they would have had no trouble at all if they hadn't offended you, but right in that here, they put themselves entirely under your power. Tourists would never visit if this were widely known, but fortunately, you've been successful at concealing this. They begin to cry, and then to beg, and then the drones bag them and take them away.
-	<br><br><span id="result2">
-	<<link "Let your public servant take revenge on them">>
-		<<replace "#result2">>
-		Although they don't know it, your trio of new captures escape the usual choice of introductions to life among your sex slaves. In order to ensure that their fate has been properly obscured, you keep them in confinement for a while. After that, the usual beautification your slaves undergo will eliminate any possibility of their being recognized, even on public duty. That doesn't mean they have it easy, though. You delegate $activeSlave.slaveName to break them in, letting $him visit each of them whenever $he wants and treat them however $he wants.
-		<<if ($activeSlave.energy > 95) || ($activeSlave.devotion > 50)>>
-			$He approaches the task
-			<<if $activeSlave.energy > 95>>
-				eagerly, seeing it as an opportunity to sate $his urges
+	<br><<link "Agree and make sure $he doesn't regret it">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You agree and send $him straight to the surgery. $He looks a little hesitant, as though the prospect is intimidating now that it's actually about to happen, but $he complies obediently. You direct $assistantName to bring $him back to your office as soon as $he's fully recovered. The curatives applied right after surgery hasten $his recovery, and $he's back the next day, standing a little gingerly, $his limp dick looking a bit sore. $He greets you properly, and comes over willingly when you recline in your chair and <<if canSee($activeSlave)>>crook a finger at<<else>>beckon<</if>> $him. <<if canSee($activeSlave)>>As $he approaches, $he notices that <<if $PC.dick == 1>>you've got your<<if $PC.vagina == 1>> futa<</if>> dick out<<else>>you're wearing a strap-on<</if>>, and looks a little apprehensive<<else>>$He approaches gingerly, still slightly sore<</if>>, but $he sits down obediently, <<if $PC.dick == 1>>your erection<<else>>the phallus<</if>> coming to rest between $his legs and lower buttocks, resting against $his perineum and the smooth, recently healed patch of skin at the base of $his dick where $his ballsack used to be. $He gasps at the sensation of <<if $PC.dick == 1>>your hot cock<<if $PC.vagina == 1>> and the wet pussy beneath it<</if>><<else>>the hard thing<</if>> pressed against $his most intimate area, but $he doesn't flinch away.
+			<br><br>
+			You take your time with $him, leaning back in your chair so that $he's lying
+			<<if $PC.boobsBonus > 2>>
+				against your enormous <<if $PC.boobsImplant == 1>>fake breasts<<else>>cow tits<</if>>.
+			<<elseif $PC.boobsBonus == 2>>
+				against your huge<<if $PC.boobsImplant == 1>> firm<<else>> soft<</if>> breasts.
+			<<elseif $PC.boobsBonus == 1>>
+				against your big<<if $PC.boobsImplant == 1>> firm<</if>> breasts.
+			<<elseif $PC.boobs == 1>>
+				against your tits
+			<<elseif $PC.title == 0>>
+				against your flat chest
 			<<else>>
-				dutifully, seeing it as $his responsibility to break them well for you
+				on your chest
 			<</if>>
-			as well as to get some petty revenge.
-			<<switch $activeSlave.fetish>>
-			<<case "submissive">>
-				$He's a sub, but this actually means that $he can do a reasonable dom impression when $he works at it. $He certainly has experience with what works, even if it's from the other side. The erstwhile rich girls are required to kiss $his feet, literally.
-			<<case "cumslut">>
-				As a cumslut, $he derives considerable enjoyment from seeing others drink ejaculate, too. In this case, $he enjoys forcing the erstwhile rich girls to choke down liters of the stuff.
-			<<case "humiliation">>
-				$He can't publicly humiliate them, since that would defeat the whole purpose of sequestering them until the trail goes really cold. Unfortunately for them, that doesn't stop $him from humiliating them to each other, and $he forces them to perform various sex acts on $him while the others watch.
-				<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].counter.oral += 10>><</for>>
-				<<set $oralTotal += 30>>
-			<<case "buttslut">>
-				$He has a one track mind, and that track is anal sex. So, $he assrapes them, enjoying their sobbed apologies while $he <<if canPenetrate($activeSlave)>>fills their backdoors with $his cum<<else>>uses a dildo on them<</if>>.
-				<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].counter.anal += 10>><</for>>
-				<<set $activeSlave.counter.penetrative += 10>>
-				<<set $analTotal += 30, $penetrativeTotal += 30>>
-			<<case "boobs">>
-				$He forces them to <<if $activeSlave.nipples == "fuckable">>eat out $his nipples<<elseif $activeSlave.lactation > 0>>nurse from $him<<else>>suck $his nipples until $he orgasms<</if>>, mostly for how much $he enjoys the sensation, but also for the revulsion it produces.
-				<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].counter.oral += 10>><</for>>
-				<<set $activeSlave.counter.mammary += 10>>
-				<<set $oralTotal += 30, $mammaryTotal += 30>>
-				<<if $activeSlave.lactation > 0>>
-					<<set $activeSlave.lactationDuration = 2>>
-					<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
-				<<else>>
-					<<set $activeSlave.induceLactation += 5>>
-					<<= induceLactation($activeSlave)>>
-				<</if>>
-			<<case "pregnancy">>
-				$He doesn't have permission to impregnate them, but they don't know that, and $he lies shamelessly. <<if canPenetrate($activeSlave)>>They beg $him not to cum inside them, but $he does anyway,<<else>>$He uses a strap-on with a reservoir to fill them with cum,<</if>> and they cry themselves to sleep every night.
-				<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].counter.vaginal += 10>><</for>>
-				<<set $activeSlave.counter.penetrative += 10>>
-				<<set $vaginalTotal += 30, $penetrativeTotal += 30>>
-			<<case "dom">>
-				$He prizes the opportunity to be dominant, and makes the most of it. Rather than doing something pedestrian like force them to fuck $him, $he forces them to fuck each other, punishing them for hesitation until they're eating each other out even while they cry.
-				<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].counter.oral += 20>><</for>>
-				<<set $oralTotal += 60>>
-			<<case "sadist">>
-				Their tears aren't a means for $him; they're an end. $He extracts them with greed, enjoying the sensation of being <<if $activeSlave.dick > 0>>sucked off<<elseif $activeSlave.vagina == -1>>rimmed<<else>>eaten out<</if>> by one sobbing rich bitch while $he forces another to spank _his3 friend's pussy.
-				<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].counter.oral += 10>><</for>>
-				<<set $activeSlave.counter.oral += 10>>
-				<<set $oralTotal += 60>>
-			<<case "masochist">>
-				As a masochist, $he's naturally inclined to be on the receiving end, but in this case $he makes an exception for the sake of justice. And it's to $his victims' anguish that $he does, because $he knows pain like a lover, and inflicts it in excruciating crescendos without leaving a single mark.
-			<</switch>>
-			The horrible experience is certainly @@.gold;educational@@ for your new slaves, and $activeSlave.slaveName is @@.hotpink;well pleased.@@ Tolerating insults is part of being a public slave, but getting this opportunity to take $his pent-up frustrations out on some deserving targets is a @@.mediumaquamarine;trust building@@ exercise for $him. It seems their insults really did upset $him.
-			<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].trust -= 4>><</for>>
-			<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+			and bringing $his head around so you can make out. You play with $his
+			<<if $activeSlave.boobs > 1000>>
+				udders
+			<<elseif $activeSlave.boobs > 300>>
+				boobs
+			<<else>>
+				nipples
+			<</if>>
+			for a while, slowly starting to grind <<if $PC.dick == 1>>your dick<<if $PC.vagina == 1>> and the pussy attached to it<</if>><<else>>the strap-on<</if>> back and forth between $his legs. $He starts to ride you, and starts to beg you to fuck $him. You take $him under the arms and pull $him up, letting <<if $PC.dick == 1>>your erection<<else>>the dildo<</if>> spring free; $he takes the cue and lines its head up with $his
+			<<if $activeSlave.anus > 2>>
+				asspussy.
+			<<elseif $activeSlave.anus > 1>>
+				asshole.
+			<<else>>
+				tight pucker.
+			<</if>>
+			<<= AnalVCheck()>>
+			$He shivers with pleasure as you lower $him onto it and $he feels the pressure
+			<<if $activeSlave.prostate > 0>>
+				against $his prostate.
+			<<else>>
+				in $his rectum.
+			<</if>>
+			$He's so aroused that $he climaxes immediately, shuddering as $his
+			<<if $activeSlave.dick > 6>>
+				monstrous floppy dick twitches, dripping
+			<<elseif $activeSlave.dick > 3>>
+				big but now permanently soft dick drips
+			<<elseif $activeSlave.dick > 1>>
+				little bouncing bitch dick dribbles
+			<<else>>
+				shockingly tiny penis dribbles
+			<</if>>
+			<<if $activeSlave.prostate > 2>>
+				an obscene
+			<<elseif $activeSlave.prostate > 1>>
+				a large
+			<<elseif $activeSlave.prostate == 0>>
+				a negligible
+			<<else>>
+				a small
+			<</if>>
+			amount of clear fluid. By the time you carry $his @@.hotpink;limply submissive@@ body to the shower, $he's orgasmed twice more to your artful anal lovemaking.
+			<<set $activeSlave.devotion += 4>>
+			<<set $activeSlave.balls = 0>>
+			<<set $activeSlave.scrotum = 0>>
+			<<set $activeSlave.health-->>
+		<</replace>>
+	<</link>><<if $activeSlave.anus == 0>> //This option will take $his virginity//<</if>>
+<</if>>
+
+<<case "mean girls">>
+
+<<link "Tolerating verbal abuse is part of a public servant's job">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You inform your personal assistant that you aren't planning to take any action. If you took notice every time a citizen offered a slave on public duty any insult, you'd never be doing anything else. The only interesting part of the interaction was the possible value of the pretty girls, but enslaving them would likely have been difficult and expensive, given their families' probable wealth and influence. As for $activeSlave.slaveName, $he's not deeply affected.
+		<<if $activeSlave.energy > 95>>
+			$He's so horny that petty insults can't compete for $his attention with $his constant, oppressive need to get off.
+		<<elseif $activeSlave.trust > 95 && $activeSlave.devotion >= -20>>
+			$He's confident that $he's a good slave, no matter what some visitors from outside the arcology say.
+		<<elseif $activeSlave.trust > 95>>
+			It just gives $him more of a reason to work against you.
+		<<elseif $activeSlave.devotion > 20>>
+			$He tells $himself that they were wrong, and carries on.
 		<<else>>
-			$He obeys, but isn't so far gone into sexual slavery that $he's willing to really throw $himself into the task. $His visits are terrifying enough, though. Simply seeing their own likely futures reflected in $him is usually enough to leave your new slaves crying themselves to sleep.
+			It's not like the unhappy slave doesn't tell $himself much worse things.
 		<</if>>
+	<</replace>>
+<</link>>
+<br><<link "Enslave them all">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		<<for _ress = 0; _ress < _newSlaves.length; _ress++>>
+			<<run newSlave(_newSlaves[_ress])>> /* skip New Slave Intro */
+			<<run cashX(forceNeg(8333), "slaveTransfer", _newSlaves[_ress])>>
+		<</for>>
+		<<set _newSlaves[0].clothes = "no clothing">>
+		<<set _newSlaves[1].clothes = "no clothing">>
+		<<set _newSlaves[2].clothes = "no clothing">>
+		<<replace "#artFrame">>
+			/* 000-250-006 */
+			<<if $seeImages == 1>>
+				<div class="imageColumn">
+					<div class="imageRef medImg">
+						<<SlaveArt $activeSlave 2 0>>
+					</div>
+					<div class="imageRef medImg">
+						<<SlaveArt _newSlaves[0] 2 0>>
+					</div>
+					<div class="imageRef medImg">
+						<<SlaveArt _newSlaves[1] 2 0>>
+					</div>
+					<div class="imageRef medImg">
+						<<SlaveArt _newSlaves[2] 2 0>>
+					</div>
+				</div>
+			<</if>>
+			/* 000-250-006 */
 		<</replace>>
-	<</link>>
-	</span>
+
+		You seize a tablet and hurry out of your office, working furiously and using every feature of $assistantName to the utmost. These bitches have offended you, and you quickly frame the structure of an appropriate revenge. By the time you get to where $activeSlave.slaveName is still being heckled by spoiled, drunken harpies, everyone else present in that arcology hall has mysteriously received urgent messages and gone elsewhere. $activeSlave.slaveName <<if canSee($activeSlave)>>sees you approach, and stares at you<<else>>recognizes your dominant footsteps approaching, and turns to face you<</if>>, $his sudden intense look alerting your vile little guests to your presence. One of them attempts to frame an insult for the interloper, but one of _his2 friends pokes _him2 in the side and whispers something in _his2 ear and _he2 goes silent, staring at you with wide eyes.
+		<<if $PC.title != 1>>_He2 then winces, visibly realizing that you're likely aware that _he2 called $activeSlave.slaveName's owner $his Master. Somehow, the mistake seems important to _him2 now that you're standing here, effortlessly dominating the space for all your femininity.<</if>>
+		<br><br>
+		You hold the tablet out to them wordlessly. It's displaying security footage of the three of them, boarding a public VTOL transport for another arcology nearby. The prominent timestamp is thirty minutes in the future. The scene changes, showing them partying in one of that arcology's nightclubs. You clear your throat, dragging their attention away from the counterfeited footage, and describe in detail the other evidence — tickets, identification checks, biometrics — that will prove they left your arcology and visited two others before regrettably disappearing. One of them tries, with utter predictability, to threaten you with _his2 father, but you tell _him2 bluntly that if he does make the effort, he'll be looking in the wrong place.
+		<br><br>
+		<<run Enunciate(_newSlaves[1])>>
+		"We <<sh>>ouldn't have come here," one of them says dully. _He3's wrong in that they would have had no trouble at all if they hadn't offended you, but right in that here, they put themselves entirely under your power. Tourists would never visit if this were widely known, but fortunately, you've been successful at concealing this. They begin to cry, and then to beg, and then the drones bag them and take them away.
+		<br><br><span id="result2">
+			<<link "Let your public servant take revenge on them">>
+				<<replace "#result2">>
+					Although they don't know it, your trio of new captures escape the usual choice of introductions to life among your sex slaves. In order to ensure that their fate has been properly obscured, you keep them in confinement for a while. After that, the usual beautification your slaves undergo will eliminate any possibility of their being recognized, even on public duty. That doesn't mean they have it easy, though. You delegate $activeSlave.slaveName to break them in, letting $him visit each of them whenever $he wants and treat them however $he wants.
+					<<if ($activeSlave.energy > 95) || ($activeSlave.devotion > 50)>>
+						$He approaches the task
+						<<if $activeSlave.energy > 95>>
+							eagerly, seeing it as an opportunity to sate $his urges
+						<<else>>
+							dutifully, seeing it as $his responsibility to break them well for you
+						<</if>>
+						as well as to get some petty revenge.
+						<<switch $activeSlave.fetish>>
+						<<case "submissive">>
+							$He's a sub, but this actually means that $he can do a reasonable dom impression when $he works at it. $He certainly has experience with what works, even if it's from the other side. The erstwhile rich girls are required to kiss $his feet, literally.
+						<<case "cumslut">>
+							As a cumslut, $he derives considerable enjoyment from seeing others drink ejaculate, too. In this case, $he enjoys forcing the erstwhile rich girls to choke down liters of the stuff.
+						<<case "humiliation">>
+							$He can't publicly humiliate them, since that would defeat the whole purpose of sequestering them until the trail goes really cold. Unfortunately for them, that doesn't stop $him from humiliating them to each other, and $he forces them to perform various sex acts on $him while the others watch.
+							<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].counter.oral += 10>><</for>>
+							<<set $oralTotal += 30>>
+						<<case "buttslut">>
+							$He has a one track mind, and that track is anal sex. So, $he assrapes them, enjoying their sobbed apologies while $he <<if canPenetrate($activeSlave)>>fills their backdoors with $his cum<<else>>uses a dildo on them<</if>>.
+							<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].counter.anal += 10>><</for>>
+							<<set $activeSlave.counter.penetrative += 10>>
+							<<set $analTotal += 30, $penetrativeTotal += 30>>
+						<<case "boobs">>
+							$He forces them to <<if $activeSlave.nipples == "fuckable">>eat out $his nipples<<elseif $activeSlave.lactation > 0>>nurse from $him<<else>>suck $his nipples until $he orgasms<</if>>, mostly for how much $he enjoys the sensation, but also for the revulsion it produces.
+							<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].counter.oral += 10>><</for>>
+							<<set $activeSlave.counter.mammary += 10>>
+							<<set $oralTotal += 30, $mammaryTotal += 30>>
+							<<if $activeSlave.lactation > 0>>
+								<<set $activeSlave.lactationDuration = 2>>
+								<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
+							<<else>>
+								<<set $activeSlave.induceLactation += 5>>
+								<<= induceLactation($activeSlave)>>
+							<</if>>
+						<<case "pregnancy">>
+							$He doesn't have permission to impregnate them, but they don't know that, and $he lies shamelessly. <<if canPenetrate($activeSlave)>>They beg $him not to cum inside them, but $he does anyway,<<else>>$He uses a strap-on with a reservoir to fill them with cum,<</if>> and they cry themselves to sleep every night.
+							<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].counter.vaginal += 10>><</for>>
+							<<set $activeSlave.counter.penetrative += 10>>
+							<<set $vaginalTotal += 30, $penetrativeTotal += 30>>
+						<<case "dom">>
+							$He prizes the opportunity to be dominant, and makes the most of it. Rather than doing something pedestrian like force them to fuck $him, $he forces them to fuck each other, punishing them for hesitation until they're eating each other out even while they cry.
+							<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].counter.oral += 20>><</for>>
+							<<set $oralTotal += 60>>
+						<<case "sadist">>
+							Their tears aren't a means for $him; they're an end. $He extracts them with greed, enjoying the sensation of being <<if $activeSlave.dick > 0>>sucked off<<elseif $activeSlave.vagina == -1>>rimmed<<else>>eaten out<</if>> by one sobbing rich bitch while $he forces another to spank _his3 friend's pussy.
+							<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].counter.oral += 10>><</for>>
+							<<set $activeSlave.counter.oral += 10>>
+							<<set $oralTotal += 60>>
+						<<case "masochist">>
+							As a masochist, $he's naturally inclined to be on the receiving end, but in this case $he makes an exception for the sake of justice. And it's to $his victims' anguish that $he does, because $he knows pain like a lover, and inflicts it in excruciating crescendos without leaving a single mark.
+						<</switch>>
+						The horrible experience is certainly @@.gold;educational@@ for your new slaves, and $activeSlave.slaveName is @@.hotpink;well pleased.@@ Tolerating insults is part of being a public slave, but getting this opportunity to take $his pent-up frustrations out on some deserving targets is a @@.mediumaquamarine;trust building@@ exercise for $him. It seems their insults really did upset $him.
+						<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].trust -= 4>><</for>>
+						<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
+					<<else>>
+						$He obeys, but isn't so far gone into sexual slavery that $he's willing to really throw $himself into the task. $His visits are terrifying enough, though. Simply seeing their own likely futures reflected in $him is usually enough to leave your new slaves crying themselves to sleep.
+					<</if>>
+				<</replace>>
+			<</link>>
+		</span>
 	<</replace>>
 <</link>> //This option will cost <<print cashFormat(25000)>>//
 
@@ -17689,76 +17695,76 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Give them a surprise massage">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You move stealthily up behind $him in a predatory crouch, your arms forward and your fingers spread. When $he reaches up to <<if $activeSlave.makeup != 0>>do $his eyes<<else>>massage $his forehead<</if>>, you take advantage of $his newly vulnerable flanks and reach around $him to take $his torpedo tits in hand. $He <<if $activeSlave.voice != 0>>howls<<else>>makes the raspy noise that mute slaves make when<</if>> in shock, writhing away from the grasping digits. Your hands aren't particularly cold, but $he's deliciously warm from the shower and you're holding onto $him firmly. $His
-	<<if $activeSlave.butt > 12>>
-		titanic ass
-	<<elseif $activeSlave.butt > 5>>
-		massive ass
-	<<elseif $activeSlave.butt > 2>>
-		plush bottom
-	<<else>>
-		trim behind
-	<</if>>
-	bumps into you as $he recoils, and $he freezes, realizing who you are. You slide your grip back towards $him, down away from the point of each tit, grab $his back where $he's broader, and knead $him gently, moving forward down $his breasts.
-	<<if $activeSlave.fetish == "boobs">>
-		<<if $activeSlave.fetishKnown != 1>>
-			$His chest swells in your embrace as $he sucks in $his breath, stiffening with arousal. $He seems to @@.lightcoral;love breast play,@@ and if properly encouraged, might orgasm to it.
-			<<set $activeSlave.fetishKnown = 1>>
-		<<else>>
-			$He stiffens with arousal, since breast play is the main sexual event as far as $he's concerned.
-			<<if canAchieveErection($activeSlave) && ($activeSlave.chastityPenis == 1)>>There's an audible little smack as $he achieves an erection, bringing $his dickhead against the bottom of the counter.<</if>>
-		<</if>>
-	<<elseif $activeSlave.devotion > 50>>
-		$He softens into your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>, wriggling $his back into you to get comfortable.
-	<<elseif $activeSlave.devotion > 20>>
-		$He makes an effort to relax, and you can feel the stiffness go out of $his back, pressed against your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>.
-	<<else>>
-		$He remains stiff and afraid, shivering a little against your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>.
-	<</if>>
-	$He expects to get fucked, but you just massage $his breasts thoroughly, give $his <<if $activeSlave.pregKnown == 1>>belly<<else>>butt<</if>> a possessive pat, and continue on your way. $He thanks you <<if $activeSlave.devotion > 50>>with touching sincerity<<elseif $activeSlave.devotion > 20>>sincerely<<else>>hesitantly<</if>> and returns to $his business, @@.mediumaquamarine;smiling a little.@@
-	<<set $activeSlave.trust += 4>>
-	<<if $activeSlave.lactation > 0>>
-		<<set $activeSlave.lactationDuration = 2>>
-		<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
-	<<else>>
-		<<set $activeSlave.induceLactation += 3>>
-		<<= induceLactation($activeSlave)>>
-	<</if>>
-	<</replace>>
-<</link>>
-<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Make $him bounce them painfully">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	Appearing behind $him, you order $him to bounce up and down. You don't mention $his prominent tits, but $he knows exactly what you mean and is
-	<<if $activeSlave.devotion > 50>>eager to please<<elseif $activeSlave.devotion > 20>>willing to please<<else>>willing to debase $himself to avoid punishment<</if>>.
-	$He bounces up and down, watching for your reaction in the mirror. Harder, you tell $him, and $he bounces harder. Harder, you tell $him again, and then again. $He jumps up and down hard enough that $his promontories slap painfully against $him,
-	<<if $activeSlave.fetish == "masochist">>
-		<<if $activeSlave.fetishKnown != 1>>
-			making $him gasp with arousal. $He stares at $himself in shock, and then at your reflection, mystified and a little frightened that you might have seen. You did see, and you're not perplexed. $activeSlave.slaveName is a @@.lightcoral;sexual masochist,@@ and if properly encouraged, can probably be trained to be a proper slut for pain.
-			<<set $activeSlave.fetishKnown = 1>>
+		You move stealthily up behind $him in a predatory crouch, your arms forward and your fingers spread. When $he reaches up to <<if $activeSlave.makeup != 0>>do $his eyes<<else>>massage $his forehead<</if>>, you take advantage of $his newly vulnerable flanks and reach around $him to take $his torpedo tits in hand. $He <<if $activeSlave.voice != 0>>howls<<else>>makes the raspy noise that mute slaves make when<</if>> in shock, writhing away from the grasping digits. Your hands aren't particularly cold, but $he's deliciously warm from the shower and you're holding onto $him firmly. $His
+		<<if $activeSlave.butt > 12>>
+			titanic ass
+		<<elseif $activeSlave.butt > 5>>
+			massive ass
+		<<elseif $activeSlave.butt > 2>>
+			plush bottom
 		<<else>>
-			making the masochistic $desc gasp with arousal.
+			trim behind
+		<</if>>
+		bumps into you as $he recoils, and $he freezes, realizing who you are. You slide your grip back towards $him, down away from the point of each tit, grab $his back where $he's broader, and knead $him gently, moving forward down $his breasts.
+		<<if $activeSlave.fetish == "boobs">>
+			<<if $activeSlave.fetishKnown != 1>>
+				$His chest swells in your embrace as $he sucks in $his breath, stiffening with arousal. $He seems to @@.lightcoral;love breast play,@@ and if properly encouraged, might orgasm to it.
+				<<set $activeSlave.fetishKnown = 1>>
+			<<else>>
+				$He stiffens with arousal, since breast play is the main sexual event as far as $he's concerned.
+				<<if canAchieveErection($activeSlave) && ($activeSlave.chastityPenis == 1)>>There's an audible little smack as $he achieves an erection, bringing $his dickhead against the bottom of the counter.<</if>>
+			<</if>>
+		<<elseif $activeSlave.devotion > 50>>
+			$He softens into your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>, wriggling $his back into you to get comfortable.
+		<<elseif $activeSlave.devotion > 20>>
+			$He makes an effort to relax, and you can feel the stiffness go out of $his back, pressed against your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>.
+		<<else>>
+			$He remains stiff and afraid, shivering a little against your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>.
+		<</if>>
+		$He expects to get fucked, but you just massage $his breasts thoroughly, give $his <<if $activeSlave.pregKnown == 1>>belly<<else>>butt<</if>> a possessive pat, and continue on your way. $He thanks you <<if $activeSlave.devotion > 50>>with touching sincerity<<elseif $activeSlave.devotion > 20>>sincerely<<else>>hesitantly<</if>> and returns to $his business, @@.mediumaquamarine;smiling a little.@@
+		<<set $activeSlave.trust += 4>>
+		<<if $activeSlave.lactation > 0>>
+			<<set $activeSlave.lactationDuration = 2>>
+			<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
+		<<else>>
+			<<set $activeSlave.induceLactation += 3>>
+			<<= induceLactation($activeSlave)>>
 		<</if>>
-	<<elseif $activeSlave.devotion > 50>>
-		extracting a gasp as $he willingly causes $himself considerable discomfort at your command.
-	<<elseif $activeSlave.devotion > 20>>
-		making $him wince. $He starts to look afraid.
-	<<else>>
-		and $he starts to cry, more from fear than from the pain.
-	<</if>>
-	<br><br>
-	Pleased, you tell $him to keep it up as best $he can, and trap $his hips against the edge of the counter before sliding <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> <<if canDoVaginal($activeSlave)>>into $his pussy<<else>>up $his asshole<</if>>. It's not a comfortable angle, and between the rough penetration and the continued mammary torture,<<if $activeSlave.fetish == "masochist">>$he orgasms promptly<<if $activeSlave.balls > 0>>, scattering cum all over the counter<</if>><<else>>tears begin to run down $his cheeks<</if>>. When you climax, you grab the undersides of $his breasts and hoist $him up in a parody of exaltation, thrusting as far into $him as you can manage<<if $PC.dick == 1>> and <<if canDoVaginal($activeSlave)>>coming inside $him<<else>>blowing your load in $his butt<</if>><</if>>. The thrust, the lift, and the harsh hold on $his poor boobs extracts <<if $activeSlave.voice != 0>>a shriek<<else>>the pathetic little gasping noise that mute slaves make when in agony<</if>> from $his<<if $activeSlave.lactation > 0>>, not to mention <<if $activeSlave.lactation == 1>>a few drops of milk<<else>>an ejaculation-like stream of milk<</if>> from each of $his nipples<</if>>. You discard your toy on the counter,
-	<<if $activeSlave.fetish == "masochist">>
-		leaving the poor pain addict in a state of @@.hotpink;high sexual satiation,@@ even if $he does move $his battered breasts gingerly as $he climbs down.
-		<<set $activeSlave.devotion += 4>>
-	<<else>>
-		leaving $him to climb down $himself, @@.gold;fearfully@@ watching your receding back as $he gets off the counter, favoring $his battered breasts.
-		<<set $activeSlave.trust -= 4>>
-	<</if>>
-	<<= SimpleVCheck()>>
 	<</replace>>
-<</link>><<if (($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) || (($activeSlave.anus == 0) && canDoAnal($activeSlave))>> //This option will take virginity//<</if>>
+<</link>>
+<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
+	<br><<link "Make $him bounce them painfully">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			Appearing behind $him, you order $him to bounce up and down. You don't mention $his prominent tits, but $he knows exactly what you mean and is
+			<<if $activeSlave.devotion > 50>>eager to please<<elseif $activeSlave.devotion > 20>>willing to please<<else>>willing to debase $himself to avoid punishment<</if>>.
+			$He bounces up and down, watching for your reaction in the mirror. Harder, you tell $him, and $he bounces harder. Harder, you tell $him again, and then again. $He jumps up and down hard enough that $his promontories slap painfully against $him,
+			<<if $activeSlave.fetish == "masochist">>
+				<<if $activeSlave.fetishKnown != 1>>
+					making $him gasp with arousal. $He stares at $himself in shock, and then at your reflection, mystified and a little frightened that you might have seen. You did see, and you're not perplexed. $activeSlave.slaveName is a @@.lightcoral;sexual masochist,@@ and if properly encouraged, can probably be trained to be a proper slut for pain.
+					<<set $activeSlave.fetishKnown = 1>>
+				<<else>>
+					making the masochistic $desc gasp with arousal.
+				<</if>>
+			<<elseif $activeSlave.devotion > 50>>
+				extracting a gasp as $he willingly causes $himself considerable discomfort at your command.
+			<<elseif $activeSlave.devotion > 20>>
+				making $him wince. $He starts to look afraid.
+			<<else>>
+				and $he starts to cry, more from fear than from the pain.
+			<</if>>
+			<br><br>
+			Pleased, you tell $him to keep it up as best $he can, and trap $his hips against the edge of the counter before sliding <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> <<if canDoVaginal($activeSlave)>>into $his pussy<<else>>up $his asshole<</if>>. It's not a comfortable angle, and between the rough penetration and the continued mammary torture,<<if $activeSlave.fetish == "masochist">>$he orgasms promptly<<if $activeSlave.balls > 0>>, scattering cum all over the counter<</if>><<else>>tears begin to run down $his cheeks<</if>>. When you climax, you grab the undersides of $his breasts and hoist $him up in a parody of exaltation, thrusting as far into $him as you can manage<<if $PC.dick == 1>> and <<if canDoVaginal($activeSlave)>>coming inside $him<<else>>blowing your load in $his butt<</if>><</if>>. The thrust, the lift, and the harsh hold on $his poor boobs extracts <<if $activeSlave.voice != 0>>a shriek<<else>>the pathetic little gasping noise that mute slaves make when in agony<</if>> from $his<<if $activeSlave.lactation > 0>>, not to mention <<if $activeSlave.lactation == 1>>a few drops of milk<<else>>an ejaculation-like stream of milk<</if>> from each of $his nipples<</if>>. You discard your toy on the counter,
+			<<if $activeSlave.fetish == "masochist">>
+				leaving the poor pain addict in a state of @@.hotpink;high sexual satiation,@@ even if $he does move $his battered breasts gingerly as $he climbs down.
+				<<set $activeSlave.devotion += 4>>
+			<<else>>
+				leaving $him to climb down $himself, @@.gold;fearfully@@ watching your receding back as $he gets off the counter, favoring $his battered breasts.
+				<<set $activeSlave.trust -= 4>>
+			<</if>>
+			<<= SimpleVCheck()>>
+		<</replace>>
+	<</link>><<if (($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) || (($activeSlave.anus == 0) && canDoAnal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 
 <<case "retching cum feeding">>
@@ -17766,45 +17772,45 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Have mercy on the poor $girl and take $him off $his cum diet for now">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You see how $activeSlave.slaveName is suffering and you decide to reconsider $his dietary prescription. You instruct $assistantName to change <<print $activeSlave.slaveName>>'s diet to exclude cum for now. Slaves who can't eat are unhealthy, and unhealthy slaves are unprofitable slaves. $He is now @@.mediumorchid;more confident that $he can resist you and get $his way,@@ $he also @@.mediumaquamarine;trusts you a little more@@ to look after $his well being.
-	<<set $activeSlave.trust += 5, $activeSlave.devotion -= 5, $activeSlave.dietCum = 0>>
+		You see how $activeSlave.slaveName is suffering and you decide to reconsider $his dietary prescription. You instruct $assistantName to change <<print $activeSlave.slaveName>>'s diet to exclude cum for now. Slaves who can't eat are unhealthy, and unhealthy slaves are unprofitable slaves. $He is now @@.mediumorchid;more confident that $he can resist you and get $his way,@@ $he also @@.mediumaquamarine;trusts you a little more@@ to look after $his well being.
+		<<set $activeSlave.trust += 5, $activeSlave.devotion -= 5, $activeSlave.dietCum = 0>>
 	<</replace>>
 <</link>>
 <<if $activeSlave.dietCum == 1>>
 	<br><<link "Force $him onto a heavy cum diet, and double up on $his ejaculate intake">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You instruct $assistantName to double down on <<print $activeSlave.slaveName>>'s cum diet. Ungrateful little sluts who retch up their expensive food sometimes need tough love. Making $his cum-food thicker and more concentrated might help $him to learn that no matter how bad things seem, you can always make them worse. Initially $his new heavy cum diet makes no difference in $his ability to keep it down, but you tell $him to give it some time. Eventually $he will learn to appreciate cum as the primary ingredient in everything $he ingests. All of your future cumsluts do, sooner or later. $His pathetic tears reveal how @@.gold;helpless $he feels,@@ but they don't hide the @@.mediumorchid;streak of rebelliousness@@ that remains burning inside $him.
-	<<set $activeSlave.devotion -= 3, $activeSlave.trust -= 3, $activeSlave.dietCum = 2>>
-	<</replace>>
-<</link>>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You instruct $assistantName to double down on <<print $activeSlave.slaveName>>'s cum diet. Ungrateful little sluts who retch up their expensive food sometimes need tough love. Making $his cum-food thicker and more concentrated might help $him to learn that no matter how bad things seem, you can always make them worse. Initially $his new heavy cum diet makes no difference in $his ability to keep it down, but you tell $him to give it some time. Eventually $he will learn to appreciate cum as the primary ingredient in everything $he ingests. All of your future cumsluts do, sooner or later. $His pathetic tears reveal how @@.gold;helpless $he feels,@@ but they don't hide the @@.mediumorchid;streak of rebelliousness@@ that remains burning inside $him.
+			<<set $activeSlave.devotion -= 3, $activeSlave.trust -= 3, $activeSlave.dietCum = 2>>
+		<</replace>>
+	<</link>>
 <<elseif $activeSlave.dietCum == 2>>
 	<br><<link "Give the poor $girl a break and reduce $his cum intake to a more modest level">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$activeSlave.slaveName is on a very heavy cum diet, and it's possible you're forcing $him to take too much, too soon. You decide to give $him a break and instruct $assistantName to reduce, but not eliminate the amount of cum in $his diet. Although it doesn't immediately make $him hate cum any less, @@.hotpink;$he appreciates your willingness@@ to make things a little less unpleasant for $him. @@.mediumaquamarine;$He is a little less afraid of you too,@@ although not as much as if you'd taken $him off $his cum diet altogether.
-	<<set $activeSlave.devotion += 2, $activeSlave.trust += 2, $activeSlave.dietCum = 1>>
-	<</replace>>
-<</link>>
-<br><<link "Suppress $his gag reflex and double $his cum intake for a week">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He is already on a very heavy cum-based diet, and there's only so much ejaculate you can force a slut to ingest before it negatively affects $his health. However, as a temporary measure, you still have options. You instruct $assistantName to re-double the amount of ejaculate in <<print $activeSlave.slaveName>>'s diet for the week. You also have $him closely monitored and injected with anti-nausea drugs to help $his hold down $his food. Although the idea of being forced to eat large amounts of human reproductive fluid still disgusts $him, the week of having a super-concentrated cum-diet, along with the suppressed reflex to purge it has its effect. Knowing that you monitor and control every aspect of $his life @@.hotpink;breaks down $his resistance to your will,@@ and by the end of the week, $he is grateful that you return $him to a more nutritionally viable regimen — even if its cum content is still overwhelmingly high. <<if $activeSlave.fetishKnown == 1>>@@.lightcoral;$His brain has now begun to accept the sexual perversity of $his food as a turn on.@@<<else>>$He is now able to eat and digest $his prescribed diet without pharmacological assistance.<</if>>
-	<<set $activeSlave.devotion += 5, $activeSlave.fetish = "cumslut">>
-	<<if $activeSlave.fetishKnown == 1>>
-		<<set $activeSlave.fetishStrength = 10>>
-	<</if>>
-	<</replace>>
-<</link>>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$activeSlave.slaveName is on a very heavy cum diet, and it's possible you're forcing $him to take too much, too soon. You decide to give $him a break and instruct $assistantName to reduce, but not eliminate the amount of cum in $his diet. Although it doesn't immediately make $him hate cum any less, @@.hotpink;$he appreciates your willingness@@ to make things a little less unpleasant for $him. @@.mediumaquamarine;$He is a little less afraid of you too,@@ although not as much as if you'd taken $him off $his cum diet altogether.
+			<<set $activeSlave.devotion += 2, $activeSlave.trust += 2, $activeSlave.dietCum = 1>>
+		<</replace>>
+	<</link>>
+	<br><<link "Suppress $his gag reflex and double $his cum intake for a week">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$He is already on a very heavy cum-based diet, and there's only so much ejaculate you can force a slut to ingest before it negatively affects $his health. However, as a temporary measure, you still have options. You instruct $assistantName to re-double the amount of ejaculate in <<print $activeSlave.slaveName>>'s diet for the week. You also have $him closely monitored and injected with anti-nausea drugs to help $his hold down $his food. Although the idea of being forced to eat large amounts of human reproductive fluid still disgusts $him, the week of having a super-concentrated cum-diet, along with the suppressed reflex to purge it has its effect. Knowing that you monitor and control every aspect of $his life @@.hotpink;breaks down $his resistance to your will,@@ and by the end of the week, $he is grateful that you return $him to a more nutritionally viable regimen — even if its cum content is still overwhelmingly high. <<if $activeSlave.fetishKnown == 1>>@@.lightcoral;$His brain has now begun to accept the sexual perversity of $his food as a turn on.@@<<else>>$He is now able to eat and digest $his prescribed diet without pharmacological assistance.<</if>>
+			<<set $activeSlave.devotion += 5, $activeSlave.fetish = "cumslut">>
+			<<if $activeSlave.fetishKnown == 1>>
+				<<set $activeSlave.fetishStrength = 10>>
+			<</if>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if ($arcade > 0)>>
 	<br><<link "Sentence $him to a day in $arcadeName for cum injection therapy">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You have $assistantName inform $activeSlave.slaveName of $his unacceptable behavior and sentence $him to a day in $arcadeName. $He cries and pleads for mercy, and even begs to be allowed to suck a cock, any cock, so $he can prove $his newfound enthusiasm for cum, but you are unmerciful as two other slaves drag $him off to serve $his sentence. $He is forced to wear a<<if $activeSlave.vagina != -1>> combined vaginal and<<else>>n<</if>> anal chastity belt so that the only hole available is $his mouth, and is then confined in $arcadeName with $his mouth spread open by a ring gag and $his head sticking through the hole in the wall. A sign below $his mouth proclaims $him to be a "cum extraction tube" and $he is used that way for the duration of $his stay — a grueling, 18-hour marathon of relentless throat fucking. <<if $activeSlave.sexualFlaw != "hates oral">>$His ordeal is so extreme that $he now @@.red;hates oral sex@@<<else>>$His hatred of oral sex makes $his ordeal that much more horrific<</if>>, but it @@.hotpink;breaks down $his resistance.@@ $He now @@.gold;better understands the terrifying power you have over $him,@@ and the sheer amount of cum $he is forced to ingest @@.red;negatively effects $his health.@@ Your other cum-fed slaves take note of what you do to those who can't hold down their assigned diet.
-	<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.health -= 5, $activeSlave.counter.oral += 55, $activeSlave.counter.publicUse += 55, $oralTotal += 55, $activeSlave.sexualFlaw = "hates oral", $activeSlave.fetish = "masochist">>
-	<</replace>>
-<</link>>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You have $assistantName inform $activeSlave.slaveName of $his unacceptable behavior and sentence $him to a day in $arcadeName. $He cries and pleads for mercy, and even begs to be allowed to suck a cock, any cock, so $he can prove $his newfound enthusiasm for cum, but you are unmerciful as two other slaves drag $him off to serve $his sentence. $He is forced to wear a<<if $activeSlave.vagina != -1>> combined vaginal and<<else>>n<</if>> anal chastity belt so that the only hole available is $his mouth, and is then confined in $arcadeName with $his mouth spread open by a ring gag and $his head sticking through the hole in the wall. A sign below $his mouth proclaims $him to be a "cum extraction tube" and $he is used that way for the duration of $his stay — a grueling, 18-hour marathon of relentless throat fucking. <<if $activeSlave.sexualFlaw != "hates oral">>$His ordeal is so extreme that $he now @@.red;hates oral sex@@<<else>>$His hatred of oral sex makes $his ordeal that much more horrific<</if>>, but it @@.hotpink;breaks down $his resistance.@@ $He now @@.gold;better understands the terrifying power you have over $him,@@ and the sheer amount of cum $he is forced to ingest @@.red;negatively effects $his health.@@ Your other cum-fed slaves take note of what you do to those who can't hold down their assigned diet.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.health -= 5, $activeSlave.counter.oral += 55, $activeSlave.counter.publicUse += 55, $oralTotal += 55, $activeSlave.sexualFlaw = "hates oral", $activeSlave.fetish = "masochist">>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "subjugation blues">>
@@ -17812,89 +17818,89 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Surgically alter $him to be of the inferior $arcologies[0].FSSubjugationistRace race, and give $him a public debut">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Some slaves have a bigger potential price to pay for disobedience than they realize. $activeSlave.slaveName is $activeSlave.race, which is
-	<<if $activeSlave.race != $arcologies[0].FSSupremacistRace>>
-		not particularly noteworthy.
-	<<else>>
-		advantageous to $him, as it is generally unpopular to enslave a $girl of the superior race.
-	<</if>>
-	However, $he's about to learn that $his racial appearance isn't immutable, and in your arcology, it can make a big difference in how $he is treated. You escort the struggling <<if $activeSlave.pregKnown == 1 && $activeSlave.bellyPreg >= 1500>>mother-to-be<<else>>$girl<</if>> to the surgery center and instruct $assistantName to alter $his appearance so that $he appears to be <<print $arcologies[0].FSSubjugationistRace>>. The full meaning of your instructions
-	<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>>
-		slowly start to dawn on <<print $activeSlave.slaveName>>'s stupid face
-	<<else>>
-		spark a quick reaction <<if canSee($activeSlave)>>from <<print $activeSlave.slaveName>>'s intelligent eyes<<else>>on <<print $activeSlave.slaveName>>'s intelligent face<</if>>
-	<</if>>
-	and $he whimpers and begs for you to reconsider even as $he's strapped onto the operating table.
-	<br><br>
-	By the time $he wakes up from the anesthesia, you've already made the necessary alterations to $his permanent records, which now clearly indicate that $he was born <<print $arcologies[0].FSSubjugationistRace>>, and as such, can be rightfully regarded as the racially inferior fuck-animal $he now is. Of course, your fellow slaveowners and the slave market will be savvy enough to see through the alterations you've forced upon $him, but when you make $him available for a day of use in the public square, all your average citizen knows is that the $girl they are fucking is simply a worthless $arcologies[0].FSSubjugationistRace slut who doesn't deserve much more than a stomach full of cum. The surgery @@.red;negatively effects $his health,@@ but by the end of a long day $he'll likely never forget, $he has gotten a crash course in what it means to be a $arcologies[0].FSSubjugationistRace slave in your arcology, and any evidence that $he was born $activeSlave.race has been efficiently expunged from $his records. <<if ($activeSlave.vagina == 0 || $activeSlave.anus == 0)>>@@.lime;All vestiges of $his virginity have been unceremoniously stripped away@@.<</if>> The experience has @@.hotpink;broken down $his resistance,@@ and your willingness to go to such extremes to subjugate $him @@.gold;greatly increases $his fear of you.@@
-	<<set $activeSlave.devotion += 5, $activeSlave.trust -= 10, $activeSlave.counter.anal += 25, $activeSlave.counter.oral += 35, $analTotal += 25, $oralTotal += 35, $activeSlave.anus++, $activeSlave.counter.publicUse += 60>>
-	<<if $activeSlave.vagina > -1>>
-		<<set $activeSlave.vagina++, $activeSlave.counter.vaginal += 20, $vaginalTotal += 20, $activeSlave.counter.publicUse += 20>>
-	<</if>>
-	<<= knockMeUp($activeSlave, 100, 2, -2, 1)>>
-	<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-	<<set $activeSlave.health -= 20>>
-	<<set $activeSlave.race = $arcologies[0].FSSubjugationistRace>>
-	<<set $activeSlave.skin = randomRaceSkin($arcologies[0].FSSubjugationistRace)>>
-	<<set $activeSlave.eyeColor = randomRaceEye($arcologies[0].FSSubjugationistRace)>>
-	<<set $activeSlave.hColor = randomRaceHair($arcologies[0].FSSubjugationistRace)>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take virginity and ignore chastity//<</if>>
+		Some slaves have a bigger potential price to pay for disobedience than they realize. $activeSlave.slaveName is $activeSlave.race, which is
+		<<if $activeSlave.race != $arcologies[0].FSSupremacistRace>>
+			not particularly noteworthy.
+		<<else>>
+			advantageous to $him, as it is generally unpopular to enslave a $girl of the superior race.
+		<</if>>
+		However, $he's about to learn that $his racial appearance isn't immutable, and in your arcology, it can make a big difference in how $he is treated. You escort the struggling <<if $activeSlave.pregKnown == 1 && $activeSlave.bellyPreg >= 1500>>mother-to-be<<else>>$girl<</if>> to the surgery center and instruct $assistantName to alter $his appearance so that $he appears to be <<print $arcologies[0].FSSubjugationistRace>>. The full meaning of your instructions
+		<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>>
+			slowly start to dawn on <<print $activeSlave.slaveName>>'s stupid face
+		<<else>>
+			spark a quick reaction <<if canSee($activeSlave)>>from <<print $activeSlave.slaveName>>'s intelligent eyes<<else>>on <<print $activeSlave.slaveName>>'s intelligent face<</if>>
+		<</if>>
+		and $he whimpers and begs for you to reconsider even as $he's strapped onto the operating table.
+		<br><br>
+		By the time $he wakes up from the anesthesia, you've already made the necessary alterations to $his permanent records, which now clearly indicate that $he was born <<print $arcologies[0].FSSubjugationistRace>>, and as such, can be rightfully regarded as the racially inferior fuck-animal $he now is. Of course, your fellow slaveowners and the slave market will be savvy enough to see through the alterations you've forced upon $him, but when you make $him available for a day of use in the public square, all your average citizen knows is that the $girl they are fucking is simply a worthless $arcologies[0].FSSubjugationistRace slut who doesn't deserve much more than a stomach full of cum. The surgery @@.red;negatively effects $his health,@@ but by the end of a long day $he'll likely never forget, $he has gotten a crash course in what it means to be a $arcologies[0].FSSubjugationistRace slave in your arcology, and any evidence that $he was born $activeSlave.race has been efficiently expunged from $his records. <<if ($activeSlave.vagina == 0 || $activeSlave.anus == 0)>>@@.lime;All vestiges of $his virginity have been unceremoniously stripped away@@.<</if>> The experience has @@.hotpink;broken down $his resistance,@@ and your willingness to go to such extremes to subjugate $him @@.gold;greatly increases $his fear of you.@@
+		<<set $activeSlave.devotion += 5, $activeSlave.trust -= 10, $activeSlave.counter.anal += 25, $activeSlave.counter.oral += 35, $analTotal += 25, $oralTotal += 35, $activeSlave.anus++, $activeSlave.counter.publicUse += 60>>
+		<<if $activeSlave.vagina > -1>>
+			<<set $activeSlave.vagina++, $activeSlave.counter.vaginal += 20, $vaginalTotal += 20, $activeSlave.counter.publicUse += 20>>
+		<</if>>
+		<<= knockMeUp($activeSlave, 100, 2, -2, 1)>>
+		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+		<<set $activeSlave.health -= 20>>
+		<<set $activeSlave.race = $arcologies[0].FSSubjugationistRace>>
+		<<set $activeSlave.skin = randomRaceSkin($arcologies[0].FSSubjugationistRace)>>
+		<<set $activeSlave.eyeColor = randomRaceEye($arcologies[0].FSSubjugationistRace)>>
+		<<set $activeSlave.hColor = randomRaceHair($arcologies[0].FSSubjugationistRace)>>
+	<</replace>>
+<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take $his virginity and ignore $his chastity//<</if>>
 <br><<link "No surgery today, but give $him something to think about">>
 	<<EventNameDelink $activeSlave>>
 	<<setNonlocalPronouns $seeDicks>>
 	<<replace "#result">>
-	You stroke <<print $activeSlave.slaveName>>'s $activeSlave.skin cheek and tell $him that $he has much more to lose than $he realizes. You decide to give $him a tour of the arcology to show $him what you mean. You make sure to <<if canSee($activeSlave)>>point out<<else>>explain<</if>> everything that makes living in your arcology as a $arcologies[0].FSSubjugationistRace slut special.
-	<<if $dairy > 0>>
-		There are the specially calibrated "<<print $arcologies[0].FSSubjugationistRace>> only" industrial human milking machines in $dairyName which have been set for maximum milking efficiency, disregarding any need for slave comfort.
-	<<else>>
-		There are the segregated milking stalls, where only the dirtiest and most dilapidated machines are reserved for filthy $arcologies[0].FSSubjugationistRace sluts.
-	<</if>>
-	<<if $club > 0>>
-		There are the "refresher" sinks in $clubName where normal slaves can go to periodically clean the cum out of their holes before returning to service more citizens — but such a luxury is off limits to $arcologies[0].FSSubjugationistRace animals, who simply have to work through their long shifts with ever increasing amount of ejaculate covering their worthless bodies.
-	<<else>>
-		There are the "animal fuckers" in the public square — groups of racial purists who specifically seek out slaves of the inferior $arcologies[0].FSSubjugationistRace race to mistreat through extreme public use.
-	<</if>>
-	<<if $clinic > 0>>
-		While $clinicName is available to normal slaves to recover from injuries and general ill health, such things aren't afforded to $arcologies[0].FSSubjugationistRace whores. They have to work through it, no matter the outcome.
-		<<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>>
-			A slave in the throes of labor catches $his attention. Assisted birth is a luxury; gravid $arcologies[0].FSSubjugationistRace whores receive no aid with childbirth, nor are contraceptives wasted on them.
+		You stroke <<print $activeSlave.slaveName>>'s $activeSlave.skin cheek and tell $him that $he has much more to lose than $he realizes. You decide to give $him a tour of the arcology to show $him what you mean. You make sure to <<if canSee($activeSlave)>>point out<<else>>explain<</if>> everything that makes living in your arcology as a $arcologies[0].FSSubjugationistRace slut special.
+		<<if $dairy > 0>>
+			There are the specially calibrated "<<print $arcologies[0].FSSubjugationistRace>> only" industrial human milking machines in $dairyName which have been set for maximum milking efficiency, disregarding any need for slave comfort.
+		<<else>>
+			There are the segregated milking stalls, where only the dirtiest and most dilapidated machines are reserved for filthy $arcologies[0].FSSubjugationistRace sluts.
 		<</if>>
-	<<else>>
-		As you tour, you pass an exhausted $arcologies[0].FSSubjugationistRace _girlU struggling to give birth. _HeU'll be left to handle the act alone as medical care is seldom given to $arcologies[0].FSSubjugationistRace mongrels.
-		<<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>>
-			A common occurrence in pregnant subhumans, since they aren't worth the cost of contraception.
+		<<if $club > 0>>
+			There are the "refresher" sinks in $clubName where normal slaves can go to periodically clean the cum out of their holes before returning to service more citizens — but such a luxury is off limits to $arcologies[0].FSSubjugationistRace animals, who simply have to work through their long shifts with ever increasing amount of ejaculate covering their worthless bodies.
+		<<else>>
+			There are the "animal fuckers" in the public square — groups of racial purists who specifically seek out slaves of the inferior $arcologies[0].FSSubjugationistRace race to mistreat through extreme public use.
 		<</if>>
-	<</if>>
-	Finally
-	<<if $arcade > 0>>
-		you take $him over to $arcadeName, and <<if canSee($activeSlave)>>give $him an up close view of<<else>>let $him feel<</if>> the brutal ring gag used to pry open the $arcologies[0].FSSubjugationistRace sluts' mouths for relentless cock-milking purposes.
-	<<else>>
-		you take $him over to the glory hole area, where distinct labels adorn the holes reserved for members of the slave race, and $arcologies[0].FSSubjugationistRace fuck-holes are afforded "special attention" by "sympathetic" citizens of the arcology.
-	<</if>>
-	<br><br>
-	At first $activeSlave.slaveName is confused as to why you are showing $him these things, but you soon make your point clear. You explain that if $he doesn't start accepting $his role, you can easily alter $his appearance and force $him to accept a much different role instead. You see $his <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> stupid <<if canSee($activeSlave)>>eyes<<else>>face<</if>> finally start to show signs of understanding<<else>>intelligent <<if canSee($activeSlave)>>eyes<<else>>face<</if>> quickly realize what you are talking about<</if>> and $he starts to whimper helplessly, begging you not to turn $him into a $arcologies[0].FSSubjugationistRace sub-human. By the end of the tour $he better realizes exactly what it means to be a slave. $He is starting to understand the @@.hotpink;power you have over $him,@@ and @@.gold;$he fears you even more because of it.@@
-	<<set $activeSlave.devotion += 5, $activeSlave.trust -= 10>>
+		<<if $clinic > 0>>
+			While $clinicName is available to normal slaves to recover from injuries and general ill health, such things aren't afforded to $arcologies[0].FSSubjugationistRace whores. They have to work through it, no matter the outcome.
+			<<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>>
+				A slave in the throes of labor catches $his attention. Assisted birth is a luxury; gravid $arcologies[0].FSSubjugationistRace whores receive no aid with childbirth, nor are contraceptives wasted on them.
+			<</if>>
+		<<else>>
+			As you tour, you pass an exhausted $arcologies[0].FSSubjugationistRace _girlU struggling to give birth. _HeU'll be left to handle the act alone as medical care is seldom given to $arcologies[0].FSSubjugationistRace mongrels.
+			<<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>>
+				It's a common occurrence for pregnant subhumans, since they aren't worth the cost of contraception.
+			<</if>>
+		<</if>>
+		Finally
+		<<if $arcade > 0>>
+			you take $him over to $arcadeName, and <<if canSee($activeSlave)>>give $him an up close view of<<else>>let $him feel<</if>> the brutal ring gag used to pry open the $arcologies[0].FSSubjugationistRace sluts' mouths for relentless cock-milking purposes.
+		<<else>>
+			you take $him over to the glory hole area, where distinct labels adorn the holes reserved for members of the slave race, and $arcologies[0].FSSubjugationistRace fuck-holes are afforded "special attention" by "sympathetic" citizens of the arcology.
+		<</if>>
+		<br><br>
+		At first $activeSlave.slaveName is confused as to why you are showing $him these things, but you soon make your point clear. You explain that if $he doesn't start accepting $his role, you can easily alter $his appearance and force $him to accept a much different role instead. You see $his <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> stupid <<if canSee($activeSlave)>>eyes<<else>>face<</if>> finally start to show signs of understanding<<else>>intelligent <<if canSee($activeSlave)>>eyes<<else>>face<</if>> quickly realize what you are talking about<</if>> and $he starts to whimper helplessly, begging you not to turn $him into a $arcologies[0].FSSubjugationistRace subhuman. By the end of the tour $he better realizes exactly what it means to be a slave. $He is starting to understand the @@.hotpink;power you have over $him,@@ and @@.gold;$he fears you even more because of it.@@
+		<<set $activeSlave.devotion += 5, $activeSlave.trust -= 10>>
 	<</replace>>
 <</link>>
 <br><<link "Discipline $him normally. Artificial racial subjugation is going too far">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You look $activeSlave.slaveName over, and something about $him makes you reconsider playing games with $his racial appearance. <<if $activeSlave.race == $arcologies[0].FSSupremacistRace>>Perhaps $his natural $activeSlave.race supremacy is too sacrosanct for you to go to such lengths. <</if>>You'll not make such an extreme example of $him. Still, $he is a disobedient slave, and $he cannot be allowed to openly defy your orders and inspections. You
-	<<if $activeSlave.belly >= 300000>>
-		shove $him onto $his _belly belly, expose $his bare ass
-	<<else>>
-		take $him over your knee, expose $his bare ass
-	<</if>>
-	and spank $him hard and relentlessly. $He screams and whines and struggles, and you call in an obedient slave to help keep control of $him as you punish $his reddened bottom. You also make sure to tell $him how lucky $he is that $he isn't one of those worthless sub-human $arcologies[0].FSSubjugationistRace sluts, and that $he is getting off easy. But you also remind $him that there are worse owners to belong to, and if $he continues to resist your will, you will be very selective about who you sell $him to.
-	<br><br>
-	By the time you've finished with $his sensitive ass, it shines red, and $he is crying and whimpering in pain. You send $him away, having @@.hotpink;dampened $his resistance a bit,@@ and @@.gold;scared $him with your tales of how much worse life could be@@ for $him
-	<<if $activeSlave.race == $arcologies[0].FSSupremacistRace>>
-		if $he weren't born of the supreme race.
-	<<else>>
-		under a less forgiving owner.
-	<</if>>
-	<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5>>
+		You look $activeSlave.slaveName over, and something about $him makes you reconsider playing games with $his racial appearance. <<if $activeSlave.race == $arcologies[0].FSSupremacistRace>>Perhaps $his natural $activeSlave.race supremacy is too sacrosanct for you to go to such lengths. <</if>>You'll not make such an extreme example of $him. Still, $he is a disobedient slave, and $he cannot be allowed to openly defy your orders and inspections. You
+		<<if $activeSlave.belly >= 300000>>
+			shove $him onto $his _belly belly, expose $his bare ass
+		<<else>>
+			take $him over your knee, expose $his bare ass
+		<</if>>
+		and spank $him hard and relentlessly. $He screams and whines and struggles, and you call in an obedient slave to help keep control of $him as you punish $his reddened bottom. You also make sure to tell $him how lucky $he is that $he isn't one of those worthless subhuman $arcologies[0].FSSubjugationistRace sluts, and that $he is getting off easy. But you also remind $him that there are worse owners to belong to, and if $he continues to resist your will, you will be very selective about who you sell $him to.
+		<br><br>
+		By the time you've finished with $his sensitive ass, it shines red, and $he is crying and whimpering in pain. You send $him away, having @@.hotpink;dampened $his resistance a bit,@@ and @@.gold;scared $him with your tales of how much worse life could be@@ for $him
+		<<if $activeSlave.race == $arcologies[0].FSSupremacistRace>>
+			if $he weren't born of the supreme race.
+		<<else>>
+			under a less forgiving owner.
+		<</if>>
+		<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5>>
 	<</replace>>
 <</link>>
 
@@ -17903,178 +17909,178 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Give the poor $girl a break and take $him off $his cum diet so $he can safely get to a healthier weight">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You silently appraise <<print $activeSlave.slaveName>>'s desperate face and lean forward in your chair to check your terminal. You confirm that
-	<<if $activeSlave.dietCum == 1>>
-		$his food is supplemented with cum for flavor.
-	<<else>>
-		$he is being fed significant amounts of ejaculate.
-	<</if>>
-	While $his <<if $activeSlave.dietCum == 2>>extreme <</if>>diet is still engineered to <<if $activeSlave.dietCum == 2>>barely <</if>> provide the nutrition $he needs, if $he can't hold the stuff down, $he can't gain weight<<if $activeSlave.pregKnown == 1 && $activeSlave.preg > $activeSlave.pregData.normalBirth/4>>, even more so with $his growing child<<if $activeSlave.pregType > 1>>ren<</if>> taking whatever nutrients <<if $activeSlave.pregType > 1>>they<<else>>it<</if>> can<</if>>. With a few taps on the keyboard you change $his orders so that $he will be fed a much more nutritionally rich diet that is free of ejaculate. However, you make sure to warn $him that $assistantName will be monitoring $him, and you may change your mind once $he reaches a more attractive weight. $He thanks you profusely, <<if $activeSlave.vagina != 0>>even attempting to offer $his body for use in gratitude,<</if>> but you simply send $him away. You find yourself concerned that you are becoming soft by allowing slaves to dictate what they will and won't eat, but your benevolent decision has already had a @@.hotpink;positive effect on $his attitude.@@ $He @@.mediumaquamarine;trusts you a little more@@ too.
-	<<set $activeSlave.trust += 2, $activeSlave.devotion += 2, $activeSlave.dietCum = 0>>
-	<</replace>>
-<</link>>
-<<if canDoAnal($activeSlave)>>
-<br><<link "Give the emaciated slut your answer in the form of a rough butt-fuck">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You stand up behind your desk. $He flinches, but holds $his ground, $his lip quivering slightly. You slowly walk toward $him, appraising $his <<if $activeSlave.belly >= 100>>bloated<<else>>smooth<</if>>, skinny body, touching $his shoulder as you disappear behind $him. $He starts to cry as you
-	<<if $PC.dick == 0>>
-		pull a massive rubber dong attachment off the wall and hook it to your strap-on.
-	<<else>>
-		unbuckle your pants and let $him feel your warm dick harden against $his tight, bony thigh.
-	<</if>>
-	Without word or ceremony, you shove $him forward so that $he is bent over and crushed against your desk. The tears start to flow out of $him as $he feels your <<if $PC.dick == 0>>massive rubber dong <<else>>hard, thick cock <</if>>pressing against $his unprotected anus.
-	<br><br>
-	When you offer $him the opportunity to revise $his request, $he does. "Plea<<s>>e, <<Master>>! I'm <<s>>orry! Plea<<s>>e don't fuck my a<<ss>>! I'll eat all the cum you want! Plea<<s>>e!" $He screams <<if $activeSlave.accent > 1>>in $his thick accent <</if>> as you force your<<if $PC.dick == 0>> strap-on <<else>>self <</if>> inside $his butt-hole and subdue $his weak, struggling body against your unforgiving desk. @@.gold;Horrified tears@@ stream down $his face with each brutal thrust as you speak into $his ear and remind $him that slaves are not allowed to dictate their needs to their owners. You know what's best for $him, and right now, $his proper role is as an eager little depository for the products of the free-cities ejaculate market. It's $his job to suck down cum at the whim of $his owner, plain and simple, until $he's told otherwise. You butt-fuck the cum-fed slag until $he simply lays there and accepts $his corrective assrape.
-	<<if $activeSlave.anus == 0>>
-		@@.lime;$His@@
-		<<if $activeSlave.butt < 5>>
-			@@.lime;skinny little@@
+		You silently appraise <<print $activeSlave.slaveName>>'s desperate face and lean forward in your chair to check your terminal. You confirm that
+		<<if $activeSlave.dietCum == 1>>
+			$his food is supplemented with cum for flavor.
 		<<else>>
-			@@.lime;plump little@@
+			$he is being fed significant amounts of ejaculate.
 		<</if>>
-		@@.lime;ass is now broken in.@@
-	<</if>>
-	$He sobs quietly with each thrust of your hips, and when you finally <<if $PC.dick == 1>>make yet another cum deposit into $his <<if $activeSlave.weight < -80>>emaciated <<else>>bony <</if>>body and<</if>> pull out, you instruct
-	<<if $activeSlave.dietCum == 1>>
-		$assistantName to dramatically increase the amount of cum in $his diet from now on. You won't have a slave telling you what $he eats. $activeSlave.slaveName <<if canHear($activeSlave)>>hears your instructions <<else>>correctly guesses the meaning behind your body language <</if>>and whimpers before rubbing $his sore bottom and
-	<<else>>
-		another slave to drag the broken slut to the kitchen, where $he's to receive an additional feeding of thick, creamy ejaculate-based nutrients before
-	<</if>>
-	proceeding to $his next assignment.
-	<br><br>
-	$He's learned a valuable lesson about what it truly means to be a slave today, and it's one $he @@.orchid;won't soon forget.@@
-	<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
-	<<if ($activeSlave.anus == 0)>>
-		<<set $activeSlave.anus += 1>>
-	<</if>>
-	<<= AnalVCheck()>>
-	<<if $activeSlave.dietCum == 1>>
-		<<set $activeSlave.dietCum = 2, $activeSlave.dietMilk = 0>>
-	<</if>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.dietMilk == 1)>> //This option will//<<if $activeSlave.anus == 0>> //take anal virginity//<<if $activeSlave.dietMilk == 1>>// and//<</if>><</if>><<if $activeSlave.dietMilk == 1>>// remove milk from $his diet//<</if>><</if>>
-<</if>>
-<br><<link "Use aphrodisiacs and positive reinforcement to make $his cum diet more palatable">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You do a quick check at your terminal. $He is indeed being fed <<if $activeSlave.dietCum == 1>> food that is supplemented with cum for flavor.<<else>>large amounts of human ejaculate.<</if>> You tell $him that it can't be helped. When you assign a slave $his diet, it's for a reason, and in <<print $activeSlave.slaveName>>'s case, you are using $his diet to make $him into a better whore. By the look on $his distressed face, you can tell $he doesn't understand or appreciate your perspective, but you tell $him you have just the thing to help change $his outlook.
-	<br><br>
-	You pull out a heavy dose of aphrodisiacs from the drawer in your desk. They are expensive, but powerful drugs that can be used in a brute force way to manipulate the sexual urges and tastes of even the most frigid sluts. The mild dose included in every slave's food is usually enough to affect a slow, inevitable change in attitude for resistant slaves, but sometimes a more acute dose can be an amusing way to turn disgust into dependence. $activeSlave.slaveName shivers as you reassure $him and inject $his <<if $activeSlave.weight < -80>>bony <<else>>tiny <</if>>body with the powerful drugs. You know they are working when $he begins to perspire a little, and
-	<<if $activeSlave.vagina > -1>>
-		$he starts to leak fresh girl-juice down $his shivering thighs.
-	<<elseif $activeSlave.dick == 0>>
-		starts to turn instinctively to offer you $his only hole.
-	<<else>>
-		$his dick starts to come to attention.
-	<</if>>
-	You then book $him to be the main attraction at a corporate office party that afternoon, where $he will be the target of a blow-bang and bukkake. You see that $he's dosed heavily with the drugs every day this week, and then book the rest of $his afternoons for similar duties, making sure $he still tends to $his regular assignments as well. In the meantime, you also instruct the kitchen that $he is to eat as much cum-based food from the dispensers as $he can suck down in order to fuel up for these exhausting escapades. By the end of the week, the aphrodisiacs and $his slide into an inescapable routine of cum immersion have done their job, and $he has begun to @@.lightcoral;view cum as an inevitable component of $his daily life.@@ $He also manages to @@.green;gain a little weight.@@ Thanks to your manipulation of $his Pavlovian responses through extreme drug therapy, $his @@.red;health has suffered a bit,@@ but $he is also @@.hotpink;more dependent on you@@ thanks to $his <<if $activeSlave.addict == 0>>@@.cyan;new@@<<else>>@@.cyan;developing@@<</if>> @@.cyan;addiction to aphrodisiacs.@@
-	<<set $activeSlave.devotion += 5, $activeSlave.health -= 10, $activeSlave.weight += 10, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.counter.oral += 50, $oralTotal += 50, $activeSlave.counter.publicUse += 50, $activeSlave.addict += 1>>
+		While $his <<if $activeSlave.dietCum == 2>>extreme <</if>>diet is still engineered to <<if $activeSlave.dietCum == 2>>barely <</if>> provide the nutrition $he needs, if $he can't hold the stuff down, $he can't gain weight<<if $activeSlave.pregKnown == 1 && $activeSlave.preg > $activeSlave.pregData.normalBirth/4>>, even more so with $his growing child<<if $activeSlave.pregType > 1>>ren<</if>> taking whatever nutrients <<if $activeSlave.pregType > 1>>they<<else>>it<</if>> can<</if>>. With a few taps on the keyboard you change $his orders so that $he will be fed a much more nutritionally rich diet that is free of ejaculate. However, you make sure to warn $him that $assistantName will be monitoring $him, and you may change your mind once $he reaches a more attractive weight. $He thanks you profusely, <<if $activeSlave.vagina != 0>>even attempting to offer $his body for use in gratitude,<</if>> but you simply send $him away. You find yourself concerned that you are becoming soft by allowing slaves to dictate what they will and won't eat, but your benevolent decision has already had a @@.hotpink;positive effect on $his attitude.@@ $He @@.mediumaquamarine;trusts you a little more@@ too.
+		<<set $activeSlave.trust += 2, $activeSlave.devotion += 2, $activeSlave.dietCum = 0>>
 	<</replace>>
 <</link>>
-
-<<case "transition anxiety">>
-
 <<if canDoAnal($activeSlave)>>
-<<link "Fuck $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-		You announce that you're going to fuck $his <<if $activeSlave.anus == 0>>virgin <</if>>asspussy. To your complete lack of surprise, $he can't hide $his horror at the prospect of <<if $PC.dick == 1>>having a cock inside $his<<else>>being fucked with a strap-on<</if>>, and $his <<if canSee($activeSlave)>>wide, <<= App.Desc.eyeColor($activeSlave)>> eyes track<<else>>terrified face follows<</if>> your movements closely as you stand up and <<if $PC.dick == 1>>reveal the formidable member<<else>>don the strap-on<</if>> you're about to breed $him with. You order $him to kneel on the couch, which $he does, @@.gold;cringing in fear of being buttfucked, but knowing disobedience will be worse;@@ and then you order $him to reach down and spread $his butt for you, as wide as it'll go. $He complies,
-		<<if $activeSlave.butt > 12>>
-			grabbing as much flesh as $he can of each monstrous buttock and heaving them as far apart as $he can manage in an attempt
-		<<elseif $activeSlave.butt > 6>>
-			taking a handful of each massive buttock and heaving them apart to reveal $his
-		<<elseif $activeSlave.butt > 3>>
-			pulling $his plush buttocks apart
-		<<else>>
-			even though $his cute ass doesn't have to be spread
-		<</if>>
-		to reveal $his
-		<<if $activeSlave.anus > 2>>
-			whorish anal slit.
-		<<elseif $activeSlave.butt > 1>>
-			relaxed rear hole.
-		<<else>>
-			tight little rosebud.
-		<</if>>
-		You let $him soak in $his discomfort, <<if $PC.dick == 1>>stroking your cock gently<<else>>rubbing a little lube on the tip of your phallus<</if>> and letting $him see how big it is. $His cringing even extends to $his asshole,
-		<<if $activeSlave.analArea > 3>>
-			the huge area of crinkled skin
-		<<elseif $activeSlave.analArea > 1>>
-			the crinkled skin around $his anus
-		<<else>>
-			$his little pucker
-		<</if>>
-		tensing as $he anticipates anal sex.
-		<<set $activeSlave.trust -= 3>>
-		<br><br><span id="result2">
-		<<link "Make sure $he gets off on it">>
-			<<replace "#result2">>
-				You press <<if $PC.dick == 1>>yourself<<else>>your weapon<</if>> past $his sphincter with care, and $his posture softens a little as $he realizes you aren't going to hurt $him. Once you've hilted <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>> inside $him, you caress $his
-				<<if $activeSlave.belly >= 150000>>
-					_belly distended
-				<<elseif $activeSlave.weight > 95>>
-					fat
-				<<elseif $activeSlave.belly >= 5000>>
-					<<if $activeSlave.bellyPreg >= 3000>>
-						pregnancy swollen
-					<<elseif $activeSlave.bellyImplant >= 3000>>
-						implant swollen
-					<<else>>
-						<<print $activeSlave.inflationType>>-bloated
-					<</if>>
-				<<elseif $activeSlave.weight > 30>>
-					chubby
-				<<elseif $activeSlave.waist < -95>>
-					narrow
-				<<elseif $activeSlave.muscles > 30>>
-					muscular
-				<<elseif $activeSlave.waist < -10>>
-					wasp
-				<<elseif $activeSlave.weight > 10>>
-					soft
-				<<elseif $activeSlave.muscles > 5>>
-					toned
-				<<else>>
-					thin
-				<</if>>
-				waist, running your hands across $his skin. Then you <<if $activeSlave.clitPiercing == 3>>activate $his smart frenulum piercing<<else>>secure a couple of little egg vibes to $his dick<</if>>. $He gasps as the vibration starts, and then gasps again as $his anus tightens involuntarily with the stimulation, squeezing the <<if $PC.dick == 1>>warm penis<<else>>phallus<</if>> that fills it. $He <<if $activeSlave.voice > 0>>moans openly<<else>>rasps mutely<</if>> as you pull out and then thrust into $him. Much against $his will, $he <<if canAchieveErection($activeSlave)>>quickly becomes erect<<else>>starts to drip precum, which is $his ballsless body's way of showing arousal<</if>>.
-				<<if $activeSlave.fetish == "buttslut">>
-				<<if $activeSlave.fetishKnown == 1>>
-					<<if $activeSlave.fetishStrength > 95>>
-						Every time $he takes it up the butt, $he's reminded that $he's a natural buttslut, and the reminder @@.lightsalmon;helps $him relax and accept sodomy.@@
-						<<set $activeSlave.fetishStrength += 10>>
-					<<else>>
-						$He knows $he gets off easily on anal stimulation, but taking it like this still isn't $his favorite activity. Still, the <<if $activeSlave.prostate > 0>>prostate<<else>>rectal<</if>> stimulation does its work, and $he @@.hotpink;submits to having $his favorite hole pleasured.@@
-						<<set $activeSlave.devotion += 3>>
-					<</if>>
-				<<else>>
-					You notice that $he stiffens again, looking down at $his traitorous member in shock at how much $he enjoys the sensation of <<if $activeSlave.prostate > 0>>prostate<<else>>rectal<</if>> stimulation. @@.lightsalmon;$He's a buttslut!@@
-					<<set $activeSlave.fetishKnown = 1>>
-				<</if>>
-				<</if>>
-				<<= AnalVCheck()>>
-				Not long after you penetrate $him, $he
-				<<if $activeSlave.balls > 0>>
-					squirts a weak ejaculation onto the couch.
-				<<else>>
-					shivers and releases some watery fluid.
-				<</if>>
-				$He had almost forgotten that $he was being fucked like a girl, and stiffens uncomfortably when $he feels you <<if $PC.dick == 1>>fill $his rectum with your hot seed<<else>>grip $his hips harder and shake with your own climax<</if>>. As $he gets up from the couch, $he seems @@.hotpink;subdued and submissive.@@ After all, if $he's submitting to you, that absolves $him of responsibility for what $he's becoming.
-				<<set $activeSlave.devotion += 5>>
-			<</replace>>
-		<</link>>
-		<br><<link "Rape $him">>
-			<<replace "#result2">>
-				You grab $his hips, getting a good grip, and spear the poor $desc without any hint of mercy. $He <<if $activeSlave.voice > 0>>screams in pain and fear<<else>>sucks in a great sobbing gasp<</if>>, and tries to wriggle away despite $his intention of submitting to your use, but you hold $him in place and rape $his ass.
-				<<= AnalVCheck()>>
-				$He tries to maintain $his position, crying openly, but eventually slides off $his perch on the couch, pulling $his hole off your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>>. You grab $him by <<if $activeSlave.hLength > 20>>hair<<else>>neck<</if>> and smash $his face into the angle of the couch, leaving $his poor butt completely vulnerable. $He can't see you line up to ream $him again, but $he knows it's coming and cries, quivering. After a while, you haul $him up to $his feet and keep fucking $him, the uncomfortable angle of standing anal forcing new <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> out of $him. You pour degradation into $his ear as you take your pleasure from $his unhappy body, telling $him that $he's your fuckmeat. $He believes you, and when you finally orgasm and let $him slide off your hateful <<if $PC.dick == 1>>penis<<else>>strap-on<</if>>, shes @@.gold;already terrified@@ of the next time you feel like fucking $him.
-				<<set $activeSlave.trust -= 5>>
-			<</replace>>
-		<</link>>
-		</span>
+	<br><<link "Give the emaciated slut your answer in the form of a rough butt-fuck">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You stand up behind your desk. $He flinches, but holds $his ground, $his lip quivering slightly. You slowly walk toward $him, appraising $his <<if $activeSlave.belly >= 100>>bloated<<else>>smooth<</if>>, skinny body, touching $his shoulder as you disappear behind $him. $He starts to cry as you
+			<<if $PC.dick == 0>>
+				pull a massive rubber dong attachment off the wall and hook it to your strap-on.
+			<<else>>
+				unbuckle your pants and let $him feel your warm dick harden against $his tight, bony thigh.
+			<</if>>
+			Without word or ceremony, you shove $him forward so that $he is bent over and crushed against your desk. The tears start to flow out of $him as $he feels your <<if $PC.dick == 0>>massive rubber dong <<else>>hard, thick cock <</if>>pressing against $his unprotected anus.
+			<br><br>
+			When you offer $him the opportunity to revise $his request, $he does. "Plea<<s>>e, <<Master>>! I'm <<s>>orry! Plea<<s>>e don't fuck my a<<ss>>! I'll eat all the cum you want! Plea<<s>>e!" $He screams <<if $activeSlave.accent > 1>>in $his thick accent <</if>> as you force your<<if $PC.dick == 0>> strap-on <<else>>self <</if>> inside $his butt-hole and subdue $his weak, struggling body against your unforgiving desk. @@.gold;Horrified tears@@ stream down $his face with each brutal thrust as you speak into $his ear and remind $him that slaves are not allowed to dictate their needs to their owners. You know what's best for $him, and right now, $his proper role is as an eager little depository for the products of the free-cities ejaculate market. It's $his job to suck down cum at the whim of $his owner, plain and simple, until $he's told otherwise. You butt-fuck the cum-fed slag until $he simply lays there and accepts $his corrective assrape.
+			<<if $activeSlave.anus == 0>>
+				@@.lime;$His@@
+				<<if $activeSlave.butt < 5>>
+					@@.lime;skinny little@@
+				<<else>>
+					@@.lime;plump little@@
+				<</if>>
+				@@.lime;ass is now broken in.@@
+			<</if>>
+			$He sobs quietly with each thrust of your hips, and when you finally <<if $PC.dick == 1>>make yet another cum deposit into $his <<if $activeSlave.weight < -80>>emaciated <<else>>bony <</if>>body and<</if>> pull out, you instruct
+			<<if $activeSlave.dietCum == 1>>
+				$assistantName to dramatically increase the amount of cum in $his diet from now on. You won't have a slave telling you what $he eats. $activeSlave.slaveName <<if canHear($activeSlave)>>hears your instructions <<else>>correctly guesses the meaning behind your body language <</if>>and whimpers before rubbing $his sore bottom and
+			<<else>>
+				another slave to drag the broken slut to the kitchen, where $he's to receive an additional feeding of thick, creamy ejaculate-based nutrients before
+			<</if>>
+			proceeding to $his next assignment.
+			<br><br>
+			$He's learned a valuable lesson about what it truly means to be a slave today, and it's one $he @@.orchid;won't soon forget.@@
+			<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
+			<<if ($activeSlave.anus == 0)>>
+				<<set $activeSlave.anus += 1>>
+			<</if>>
+			<<= AnalVCheck()>>
+			<<if $activeSlave.dietCum == 1>>
+				<<set $activeSlave.dietCum = 2, $activeSlave.dietMilk = 0>>
+			<</if>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.dietMilk == 1)>> //This option will//<<if $activeSlave.anus == 0>> //take anal virginity//<<if $activeSlave.dietMilk == 1>>// and//<</if>><</if>><<if $activeSlave.dietMilk == 1>>// remove milk from $his diet//<</if>><</if>>
+<</if>>
+<br><<link "Use aphrodisiacs and positive reinforcement to make $his cum diet more palatable">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You do a quick check at your terminal. $He is indeed being fed <<if $activeSlave.dietCum == 1>> food that is supplemented with cum for flavor.<<else>>large amounts of human ejaculate.<</if>> You tell $him that it can't be helped. When you assign a slave $his diet, it's for a reason, and in <<print $activeSlave.slaveName>>'s case, you are using $his diet to make $him into a better whore. By the look on $his distressed face, you can tell $he doesn't understand or appreciate your perspective, but you tell $him you have just the thing to help change $his outlook.
+		<br><br>
+		You pull out a heavy dose of aphrodisiacs from the drawer in your desk. They are expensive, but powerful drugs that can be used in a brute force way to manipulate the sexual urges and tastes of even the most frigid sluts. The mild dose included in every slave's food is usually enough to affect a slow, inevitable change in attitude for resistant slaves, but sometimes a more acute dose can be an amusing way to turn disgust into dependence. $activeSlave.slaveName shivers as you reassure $him and inject $his <<if $activeSlave.weight < -80>>bony <<else>>tiny <</if>>body with the powerful drugs. You know they are working when $he begins to perspire a little, and
+		<<if $activeSlave.vagina > -1>>
+			$he starts to leak fresh girl-juice down $his shivering thighs.
+		<<elseif $activeSlave.dick == 0>>
+			starts to turn instinctively to offer you $his only hole.
+		<<else>>
+			$his dick starts to come to attention.
+		<</if>>
+		You then book $him to be the main attraction at a corporate office party that afternoon, where $he will be the target of a blow-bang and bukkake. You see that $he's dosed heavily with the drugs every day this week, and then book the rest of $his afternoons for similar duties, making sure $he still tends to $his regular assignments as well. In the meantime, you also instruct the kitchen that $he is to eat as much cum-based food from the dispensers as $he can suck down in order to fuel up for these exhausting escapades. By the end of the week, the aphrodisiacs and $his slide into an inescapable routine of cum immersion have done their job, and $he has begun to @@.lightcoral;view cum as an inevitable component of $his daily life.@@ $He also manages to @@.green;gain a little weight.@@ Thanks to your manipulation of $his Pavlovian responses through extreme drug therapy, $his @@.red;health has suffered a bit,@@ but $he is also @@.hotpink;more dependent on you@@ thanks to $his <<if $activeSlave.addict == 0>>@@.cyan;new@@<<else>>@@.cyan;developing@@<</if>> @@.cyan;addiction to aphrodisiacs.@@
+		<<set $activeSlave.devotion += 5, $activeSlave.health -= 10, $activeSlave.weight += 10, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.counter.oral += 50, $oralTotal += 50, $activeSlave.counter.publicUse += 50, $activeSlave.addict += 1>>
 	<</replace>>
-<</link>><<if $activeSlave.anus == 0>> //This option will take anal virginity//<</if>>
+<</link>>
+
+<<case "transition anxiety">>
+
+<<if canDoAnal($activeSlave)>>
+	<<link "Fuck $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You announce that you're going to fuck $his <<if $activeSlave.anus == 0>>virgin <</if>>asspussy. To your complete lack of surprise, $he can't hide $his horror at the prospect of <<if $PC.dick == 1>>having a cock inside $his<<else>>being fucked with a strap-on<</if>>, and $his <<if canSee($activeSlave)>>wide, <<= App.Desc.eyeColor($activeSlave)>> eyes track<<else>>terrified face follows<</if>> your movements closely as you stand up and <<if $PC.dick == 1>>reveal the formidable member<<else>>don the strap-on<</if>> you're about to breed $him with. You order $him to kneel on the couch, which $he does, @@.gold;cringing in fear of being buttfucked, but knowing disobedience will be worse;@@ and then you order $him to reach down and spread $his butt for you, as wide as it'll go. $He complies,
+			<<if $activeSlave.butt > 12>>
+				grabbing as much flesh as $he can of each monstrous buttock and heaving them as far apart as $he can manage in an attempt
+			<<elseif $activeSlave.butt > 6>>
+				taking a handful of each massive buttock and heaving them apart to reveal $his
+			<<elseif $activeSlave.butt > 3>>
+				pulling $his plush buttocks apart
+			<<else>>
+				even though $his cute ass doesn't have to be spread
+			<</if>>
+			to reveal $his
+			<<if $activeSlave.anus > 2>>
+				whorish anal slit.
+			<<elseif $activeSlave.butt > 1>>
+				relaxed rear hole.
+			<<else>>
+				tight little rosebud.
+			<</if>>
+			You let $him soak in $his discomfort, <<if $PC.dick == 1>>stroking your cock gently<<else>>rubbing a little lube on the tip of your phallus<</if>> and letting $him see how big it is. $His cringing even extends to $his asshole,
+			<<if $activeSlave.analArea > 3>>
+				the huge area of crinkled skin
+			<<elseif $activeSlave.analArea > 1>>
+				the crinkled skin around $his anus
+			<<else>>
+				$his little pucker
+			<</if>>
+			tensing as $he anticipates anal sex.
+			<<set $activeSlave.trust -= 3>>
+			<br><br><span id="result2">
+				<<link "Make sure $he gets off on it">>
+					<<replace "#result2">>
+						You press <<if $PC.dick == 1>>yourself<<else>>your weapon<</if>> past $his sphincter with care, and $his posture softens a little as $he realizes you aren't going to hurt $him. Once you've hilted <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>> inside $him, you caress $his
+						<<if $activeSlave.belly >= 150000>>
+							_belly distended
+						<<elseif $activeSlave.weight > 95>>
+							fat
+						<<elseif $activeSlave.belly >= 5000>>
+							<<if $activeSlave.bellyPreg >= 3000>>
+								pregnancy swollen
+							<<elseif $activeSlave.bellyImplant >= 3000>>
+								implant swollen
+							<<else>>
+								<<print $activeSlave.inflationType>>-bloated
+							<</if>>
+						<<elseif $activeSlave.weight > 30>>
+							chubby
+						<<elseif $activeSlave.waist < -95>>
+							narrow
+						<<elseif $activeSlave.muscles > 30>>
+							muscular
+						<<elseif $activeSlave.waist < -10>>
+							wasp
+						<<elseif $activeSlave.weight > 10>>
+							soft
+						<<elseif $activeSlave.muscles > 5>>
+							toned
+						<<else>>
+							thin
+						<</if>>
+						waist, running your hands across $his skin. Then you <<if $activeSlave.clitPiercing == 3>>activate $his smart frenulum piercing<<else>>secure a couple of little egg vibes to $his dick<</if>>. $He gasps as the vibration starts, and then gasps again as $his anus tightens involuntarily with the stimulation, squeezing the <<if $PC.dick == 1>>warm penis<<else>>phallus<</if>> that fills it. $He <<if $activeSlave.voice > 0>>moans openly<<else>>rasps mutely<</if>> as you pull out and then thrust into $him. Much against $his will, $he <<if canAchieveErection($activeSlave)>>quickly becomes erect<<else>>starts to drip precum, which is $his ballsless body's way of showing arousal<</if>>.
+						<<if $activeSlave.fetish == "buttslut">>
+						<<if $activeSlave.fetishKnown == 1>>
+							<<if $activeSlave.fetishStrength > 95>>
+								Every time $he takes it up the butt, $he's reminded that $he's a natural buttslut, and the reminder @@.lightsalmon;helps $him relax and accept sodomy.@@
+								<<set $activeSlave.fetishStrength += 10>>
+							<<else>>
+								$He knows $he gets off easily on anal stimulation, but taking it like this still isn't $his favorite activity. Still, the <<if $activeSlave.prostate > 0>>prostate<<else>>rectal<</if>> stimulation does its work, and $he @@.hotpink;submits to having $his favorite hole pleasured.@@
+								<<set $activeSlave.devotion += 3>>
+							<</if>>
+						<<else>>
+							You notice that $he stiffens again, looking down at $his traitorous member in shock at how much $he enjoys the sensation of <<if $activeSlave.prostate > 0>>prostate<<else>>rectal<</if>> stimulation. @@.lightsalmon;$He's a buttslut!@@
+							<<set $activeSlave.fetishKnown = 1>>
+						<</if>>
+						<</if>>
+						<<= AnalVCheck()>>
+						Not long after you penetrate $him, $he
+						<<if $activeSlave.balls > 0>>
+							squirts a weak ejaculation onto the couch.
+						<<else>>
+							shivers and releases some watery fluid.
+						<</if>>
+						$He had almost forgotten that $he was being fucked like a girl, and stiffens uncomfortably when $he feels you <<if $PC.dick == 1>>fill $his rectum with your hot seed<<else>>grip $his hips harder and shake with your own climax<</if>>. As $he gets up from the couch, $he seems @@.hotpink;subdued and submissive.@@ After all, if $he's submitting to you, that absolves $him of responsibility for what $he's becoming.
+						<<set $activeSlave.devotion += 5>>
+					<</replace>>
+				<</link>>
+				<br><<link "Rape $him">>
+					<<replace "#result2">>
+						You grab $his hips, getting a good grip, and spear the poor $desc without any hint of mercy. $He <<if $activeSlave.voice > 0>>screams in pain and fear<<else>>sucks in a great sobbing gasp<</if>>, and tries to wriggle away despite $his intention of submitting to your use, but you hold $him in place and rape $his ass.
+						<<= AnalVCheck()>>
+						$He tries to maintain $his position, crying openly, but eventually slides off $his perch on the couch, pulling $his hole off your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>>. You grab $him by <<if $activeSlave.hLength > 20>>hair<<else>>neck<</if>> and smash $his face into the angle of the couch, leaving $his poor butt completely vulnerable. $He can't see you line up to ream $him again, but $he knows it's coming and cries, quivering. After a while, you haul $him up to $his feet and keep fucking $him, the uncomfortable angle of standing anal forcing new <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> out of $him. You pour degradation into $his ear as you take your pleasure from $his unhappy body, telling $him that $he's your fuckmeat. $He believes you, and when you finally orgasm and let $him slide off your hateful <<if $PC.dick == 1>>penis<<else>>strap-on<</if>>, $he's @@.gold;already terrified@@ of the next time you feel like fucking $him.
+						<<set $activeSlave.trust -= 5>>
+					<</replace>>
+				<</link>>
+			</span>
+		<</replace>>
+	<</link>><<if $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
 <</if>>
 <br><<link "Humiliate $him in public">>
 	<<EventNameDelink $activeSlave>>
@@ -18082,48 +18088,48 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 		You get up from behind your desk, drawing an apprehensive <<if canSee($activeSlave)>>stare<<else>>look<</if>>. To $his bemusement, you order $him to follow you and leave your office. $He hurries to obey, $his footsteps pattering along behind you, but they become much more hesitant as you make your way out of the penthouse and $he realizes that $he's about to be in public, naked. You don't bother looking back, knowing that $he's sufficiently afraid of you to obey. On the border between your private domain and the public hustle and bustle of the arcology's public life, $he stops for a long moment before scurrying to catch up with you, barely even noticing that @@.hotpink;$he just swallowed $his sense of shame@@ to obey you and avoid punishment. You stroll along, greeting leading citizens and taking in the hum of your people. $activeSlave.slaveName grows increasingly embarrassed under the hot stares of passersby, cringing closer and closer to your protective side as $he notices how <<if canSee($activeSlave)>>many gazes rest with open hunger on<<else>>many lewd comments focus on<</if>> $his mouth, $his crotch, and $his ass.
 		<<set $activeSlave.devotion += 3>>
 		<br><br><span id="result2">
-		<<link "Make $him perform oral on you, right here">>
-			<<replace "#result2">>
-				You reach around, place a dominating hand on $his shoulder, pull $him around in front of you, and push $him down to $his knees. $He quickly realizes what's coming, and $his $activeSlave.skin cheeks blush furiously as you reveal your <<if $PC.dick == 1>>meaty dick<<else>>flushed pussy<</if>> and offer it to $him. $He gets busy, burying $his head against you with a speed that seems surprising until it occurs to you that this allows $him to hide $his face. Deciding to accept this tiny compromise, you run a possessive hand <<if $activeSlave.hLength < 5>>across $his smooth scalp<<elseif $activeSlave.hLength < 20>>through $his short hair<<else>>through $his tresses<</if>> and murmur praise for $his enthusiasm. $He stiffens at the implication that $he wants to be <<if $PC.dick == 1>>polishing your penis<<else>>eating you out<</if>> in broad daylight, but after a slight pause $he decides that this isn't bad. As <<if $PC.dick == 1>>$his head continues to bob back and forth as $he sucks your dick<<else>>$he continues nuzzling $his nose and mouth against your wet cunt<</if>>, $he fails to notice $his @@.hotpink;second major submission today.@@
-				<<if $activeSlave.fetish == "humiliation">>
-				<<if $activeSlave.fetishKnown == 1>>
-					Since $he has a humiliation fetish, the embarrassment has been arousing $him even as it's been torturing $him. Unsatisfied with just this, $his need to be shamed obliges $him to cock $his hips and make sure onlookers can see $his asspussy as $he services you with $his mouth.
-					<<if $activeSlave.fetishStrength > 95>>
-						@@.lightsalmon;$His need for humiliation has deepened.@@
-						<<set $activeSlave.fetishStrength += 10>>
-					<<else>>
-						Such abject sluttery @@.hotpink;helps convince $him of $his status as a slave $girl.@@
-						<<set $activeSlave.devotion += 3>>
+			<<link "Make $him perform oral on you, right here">>
+				<<replace "#result2">>
+					You reach around, place a dominating hand on $his shoulder, pull $him around in front of you, and push $him down to $his knees. $He quickly realizes what's coming, and $his $activeSlave.skin cheeks blush furiously as you reveal your <<if $PC.dick == 1>>meaty dick<<else>>flushed pussy<</if>> and offer it to $him. $He gets busy, burying $his head against you with a speed that seems surprising until it occurs to you that this allows $him to hide $his face. Deciding to accept this tiny compromise, you run a possessive hand <<if $activeSlave.hLength < 5>>across $his smooth scalp<<elseif $activeSlave.hLength < 20>>through $his short hair<<else>>through $his tresses<</if>> and murmur praise for $his enthusiasm. $He stiffens at the implication that $he wants to be <<if $PC.dick == 1>>polishing your penis<<else>>eating you out<</if>> in broad daylight, but after a slight pause $he decides that this isn't bad. As <<if $PC.dick == 1>>$his head continues to bob back and forth as $he sucks your dick<<else>>$he continues nuzzling $his nose and mouth against your wet cunt<</if>>, $he fails to notice $his @@.hotpink;second major submission today.@@
+					<<if $activeSlave.fetish == "humiliation">>
+						<<if $activeSlave.fetishKnown == 1>>
+							Since $he has a humiliation fetish, the embarrassment has been arousing $him even as it's been torturing $him. Unsatisfied with just this, $his need to be shamed obliges $him to cock $his hips and make sure onlookers can see $his asspussy as $he services you with $his mouth.
+							<<if $activeSlave.fetishStrength > 95>>
+								@@.lightsalmon;$His need for humiliation has deepened.@@
+								<<set $activeSlave.fetishStrength += 10>>
+							<<else>>
+								Such abject sluttery @@.hotpink;helps convince $him of $his status as a slave $girl.@@
+								<<set $activeSlave.devotion += 3>>
+							<</if>>
+						<<else>>
+							To your surprise, $he even starts to glance around, checking to verify that $he's still being watched. @@.lightsalmon;$He's a humiliation slut!@@
+							<<set $activeSlave.fetishKnown = 1>>
+						<</if>>
 					<</if>>
-				<<else>>
-					To your surprise, $he even starts to glance around, checking to verify that $he's still being watched. @@.lightsalmon;$He's a humiliation slut!@@
-					<<set $activeSlave.fetishKnown = 1>>
-				<</if>>
-				<</if>>
-				<<set $activeSlave.counter.oral++, $oralTotal++, $activeSlave.devotion += 5>>
-			<</replace>>
-		<</link>>
-		<br><<link "Make $him cum in public">>
-			<<replace "#result2">>
-				You produce three little egg vibrators, which instantly steal $his anxious attention away from the passersby who <<if canSee($activeSlave)>>stare<<else>>whistle catcalls<</if>> at $him. You require $him to hold $his dick out while you use an elastic band to attach one of the vibrators to the underside of its head. $He doesn't get to touch $himself much anymore, and the half-forgotten sensations of doing so almost make $him forget that $he's naked in public, and almost certainly about to do something very embarrassing. Then you order $him to hold $his dick up and place another vibrator <<if $activeSlave.scrotum > 0>>against $his sensitive scrotum<<else>>against the sensitive skin where $his scrotum used to be<</if>>. Finally, you order $him to bend over and offer you $his asshole. $He obeys, with apprehension, and is actually relieved when you just place the final vibrator against, but not inside, $his <<if $activeSlave.anus > 1>>asspussy<<else>>pucker<</if>>. $He finds $himself ordered to kneel and put $his hands on $his head; and ordering $him to hold this position, you use remote control of the vibrators to force $him to cum twice. $He can't <<if canSee($activeSlave)>>tear $his eyes away from<<else>>tune out<</if>> the citizens who stare and laugh as $he <<if $activeSlave.balls > 0>>spurts $his seed<<else>>dribbles weakly<</if>> onto the floor.
-				<<if $activeSlave.fetish == "humiliation">>
-				<<if $activeSlave.fetishKnown == 1>>
-					<<if $activeSlave.fetishStrength > 95>>
-						Though $he's still unhappy about being a slave $girl, @@.lightsalmon;appetite for humiliation has deepened.@@
-						<<set $activeSlave.fetishStrength += 10>>
-					<<else>>
-						The abject humiliation slut climaxes harder each time, and can't stop $himself @@.mediumaquamarine;glancing at you with something like trust.@@
-						<<set $activeSlave.trust += 3>>
+					<<set $activeSlave.counter.oral++, $oralTotal++, $activeSlave.devotion += 5>>
+				<</replace>>
+			<</link>>
+			<br><<link "Make $him cum in public">>
+				<<replace "#result2">>
+					You produce three little egg vibrators, which instantly steal $his anxious attention away from the passersby who <<if canSee($activeSlave)>>stare<<else>>whistle catcalls<</if>> at $him. You require $him to hold $his dick out while you use an elastic band to attach one of the vibrators to the underside of its head. $He doesn't get to touch $himself much anymore, and the half-forgotten sensations of doing so almost make $him forget that $he's naked in public, and almost certainly about to do something very embarrassing. Then you order $him to hold $his dick up and place another vibrator <<if $activeSlave.scrotum > 0>>against $his sensitive scrotum<<else>>against the sensitive skin where $his scrotum used to be<</if>>. Finally, you order $him to bend over and offer you $his asshole. $He obeys, with apprehension, and is actually relieved when you just place the final vibrator against, but not inside, $his <<if $activeSlave.anus > 1>>asspussy<<else>>pucker<</if>>. $He finds $himself ordered to kneel and put $his hands on $his head; and ordering $him to hold this position, you use remote control of the vibrators to force $him to cum twice. $He can't <<if canSee($activeSlave)>>tear $his eyes away from<<else>>tune out<</if>> the citizens who stare and laugh as $he <<if $activeSlave.balls > 0>>spurts $his seed<<else>>dribbles weakly<</if>> onto the floor.
+					<<if $activeSlave.fetish == "humiliation">>
+						<<if $activeSlave.fetishKnown == 1>>
+							<<if $activeSlave.fetishStrength > 95>>
+								Though $he's still unhappy about being a slave $girl, @@.lightsalmon;appetite for humiliation has deepened.@@
+								<<set $activeSlave.fetishStrength += 10>>
+							<<else>>
+								The abject humiliation slut climaxes harder each time, and can't stop $himself @@.mediumaquamarine;glancing at you with something like trust.@@
+								<<set $activeSlave.trust += 3>>
+							<</if>>
+						<<else>>
+							With a mix of horror and dawning arousal, $he discovers that $he enjoys the stares. @@.lightsalmon;$He's a humiliation slut!@@
+							<<set $activeSlave.fetishKnown = 1>>
+						<</if>>
 					<</if>>
-				<<else>>
-					With a mix of horror and dawning arousal, $he discovers that $he enjoys the stares. @@.lightsalmon;$He's a humiliation slut!@@
-					<<set $activeSlave.fetishKnown = 1>>
-				<</if>>
-				<</if>>
-				As $he follows you back to your penthouse, $he seems almost cheerful, and will definitely be @@.mediumaquamarine;more trusting of strange orders@@ in the future.
-				<<set $activeSlave.trust += 5>>
-			<</replace>>
-		<</link>>
+					As $he follows you back to your penthouse, $he seems almost cheerful, and will definitely be @@.mediumaquamarine;more trusting of strange orders@@ in the future.
+					<<set $activeSlave.trust += 5>>
+				<</replace>>
+			<</link>>
 		</span>
 	<</replace>>
 <</link>>
@@ -18196,7 +18202,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 		<</if>>
 		<<set $activeSlave.devotion += 5>>
 	<</replace>>
-<</link>><<if $activeSlave.vagina == 0 && $PC.dick == 1>> //This option will take virginity//<</if>>
+<</link>><<if $activeSlave.vagina == 0 && $PC.dick == 1>> //This option will take $his virginity//<</if>>
 <br><<link "Pound $his wet pussy">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
@@ -18223,25 +18229,25 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 		<</if>>
 		mount $him with such force that your first stroke brings $his butt against your hips with an audible smack. There's also a deliciously lewd noise as <<if $PC.dick == 1>>your invading penis<<else>>the invading phallus<</if>> forces a little gush of pussyjuice out of $him. $He <<if $activeSlave.voice > 0>>shrieks, but it's a shriek<<else>>gasps, but it's a gasp<</if>> of pleasure, and your rutting is so well-lubricated that $he has no trouble getting off on it. Wanting $his climax, you reach around $him and grab hold of $his pussy, feeling the slippery fluid between your fingers and the lewd thrusting motion as <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>> pistons in and out of $him. That bit of stimulation is enough to tip $him over, and you feel a gush of femcum against your hand as <<if $PC.dick == 1>>your dickhead<<else>>the head of the strap-on<</if>> forces an orgasm out of $his g-spot. $He's so discombobulated that $he collapses into the puddle of pussyjuice $he left on the floor when you stand up and head off for a shower, but $he @@.hotpink;crawls after you@@ as best $he can on rubbery legs.
 		<<if $activeSlave.fetish == "submissive">>
-		<<if $activeSlave.fetishKnown == 1>>
-			The $desc sub loves getting fucked like that, and
-			<<if $activeSlave.fetishStrength > 95>>
-				@@.lightsalmon;seems even more submissive@@
-				<<set $activeSlave.fetishStrength += 10>>
+			<<if $activeSlave.fetishKnown == 1>>
+				The $desc sub loves getting fucked like that, and
+				<<if $activeSlave.fetishStrength > 95>>
+					@@.lightsalmon;seems even more submissive@@
+					<<set $activeSlave.fetishStrength += 10>>
+				<<else>>
+					since $he's fully confirmed in $his status as a sub, $he @@.hotpink;glows with devotion@@
+					<<set $activeSlave.devotion += 3>>
+				<</if>>
+				as $he washes $himself in the shower with you.
 			<<else>>
-				since $he's fully confirmed in $his status as a sub, $he @@.hotpink;glows with devotion@@
-				<<set $activeSlave.devotion += 3>>
+				$He seems utterly dissipated by the fucking $he just got, and may have just had the best sex of $his life. @@.lightsalmon;$He's a submissive!@@
+				<<set $activeSlave.fetishKnown = 1>>
 			<</if>>
-			as $he washes $himself in the shower with you.
-		<<else>>
-			$He seems utterly dissipated by the fucking $he just got, and may have just had the best sex of $his life. @@.lightsalmon;$He's a submissive!@@
-			<<set $activeSlave.fetishKnown = 1>>
-		<</if>>
 		<</if>>
 		<<= VaginalVCheck()>>
 		<<set $activeSlave.devotion += 5>>
 	<</replace>>
-<</link>><<if $activeSlave.vagina == 0>> //This option will take virginity//<</if>>
+<</link>><<if $activeSlave.vagina == 0>> //This option will take $his virginity//<</if>>
 <br><<link "Feed $him $his own pussyjuice">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
@@ -18400,46 +18406,46 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 	<</replace>>
 <</link>>
 <<if $activeSlave.lactation < 2>>
-<<link "Augment $his breast growth with lactation implants">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-		You announce that you're resolved to continue growing $his breasts, and since $he feels like a cow, plan to help $him fulfill $his image of $himself. $He's experienced enough to know not to question what that means, just to @@.gold;fear the intent behind it.@@ $He's right to worry, as you drag $him to the remote surgery for an impromptu lactation implant installation. When $he comes to, $he immediately realizes $his breasts are larger than ever. As $he brings a hand to each of the full mounds, a moan laced with relief and disdain escapes $his lips; along with a strong gush of milk from $his engorged breasts. $He has been taught a harsh lesson about questioning your will, a lesson $he will be reminded of every time $he has to empty $his ever swelling breasts of their excessive milk. As with all surgery @@.red;$his health has been slightly affected.@@
-		<<set $activeSlave.trust -= 5, $activeSlave.lactation = 2, $activeSlave.health -= 10>>
-		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
-	<</replace>>
-<</link>>
-<</if>> //This option will cost <<print cashFormat($surgeryCost)>>//
+	<<link "Augment $his breast growth with lactation implants">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You announce that you're resolved to continue growing $his breasts, and since $he feels like a cow, plan to help $him fulfill $his image of $himself. $He's experienced enough to know not to question what that means, just to @@.gold;fear the intent behind it.@@ $He's right to worry, as you drag $him to the remote surgery for an impromptu lactation implant installation. When $he comes to, $he immediately realizes $his breasts are larger than ever. As $he brings a hand to each of the full mounds, a moan laced with relief and disdain escapes $his lips; along with a strong gush of milk from $his engorged breasts. $He has been taught a harsh lesson about questioning your will, a lesson $he will be reminded of every time $he has to empty $his ever swelling breasts of their excessive milk. As with all surgery @@.red;$his health has been slightly affected.@@
+			<<set $activeSlave.trust -= 5, $activeSlave.lactation = 2, $activeSlave.health -= 10>>
+			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
+		<</replace>>
+	<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
+<</if>>
 <<if canGetPregnant($activeSlave) && $PC.dick == 1>>
-<<link "Give $his bust a boost by knocking $him up">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-		You announce that you're resolved to continue growing $his breasts, and plan to increase their rate of growth in the coming months. $He's experienced enough to know not to question what that means, just to @@.gold;fear the intent behind it.@@ $He's right to worry, as you easily tip $him off balance and to the ground; mounting $his
-		<<if $activeSlave.mpreg == 1>>
-			<<if $activeSlave.anus == 0>>
-				virgin
+	<<link "Give $his bust a boost by knocking $him up">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You announce that you're resolved to continue growing $his breasts, and plan to increase their rate of growth in the coming months. $He's experienced enough to know not to question what that means, just to @@.gold;fear the intent behind it.@@ $He's right to worry, as you easily tip $him off balance and to the ground; mounting $his
+			<<if $activeSlave.mpreg == 1>>
+				<<if $activeSlave.anus == 0>>
+					virgin
+				<<else>>
+					exposed
+				<</if>>
+				ass
 			<<else>>
-				exposed
+				<<if $activeSlave.vagina == 0>>
+					virgin
+				<<else>>
+					exposed
+				<</if>>
+				pussy
 			<</if>>
-			ass
-		<<else>>
-			<<if $activeSlave.vagina == 0>>
-				virgin
+			as $he struggles to lift $his swollen breasts from the floor.
+			<<if $activeSlave.mpreg == 1>>
+				<<= AnalVCheck(10)>>
 			<<else>>
-				exposed
+				<<= VaginalVCheck(10)>>
 			<</if>>
-			pussy
-		<</if>>
-		as $he struggles to lift $his swollen breasts from the floor.
-		<<if $activeSlave.mpreg == 1>>
-			<<= AnalVCheck(10)>>
-		<<else>>
-			<<= VaginalVCheck(10)>>
-		<</if>>
-		$He <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> with displeasure as you roughly plow $him into $his distended breasts until you cum deep inside $his fertile hole. You return to your desk, leaving $him to sob into $his unwelcome bust as cum pools from $his abused <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He knows full well what you meant now, and @@.hotpink;lets you have your way@@ with $his body every time you catch $him in a vulnerable moment or complaining about $his tits. By the week's end, scans reveal that your seed has taken root; @@.lime;$he's pregnant.@@ As $his breasts grow to feed $his coming child, $he will likely be too distracted by $his swelling middle to complain about their added weight.
-		<<set $activeSlave.trust -= 5, $activeSlave.devotion += 5>>
-		<<= knockMeUp($activeSlave, 100, 2, -1, 1)>>
-	<</replace>>
-<</link>><<if $activeSlave.vagina == 0>> //This option will take virginity//<<elseif $activeSlave.anus == 0 && $activeSlave.mpreg == 1>> //This option will take anal virginity//<</if>>
+			$He <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> with displeasure as you roughly plow $him into $his distended breasts until you cum deep inside $his fertile hole. You return to your desk, leaving $him to sob into $his unwelcome bust as cum pools from $his abused <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He knows full well what you meant now, and @@.hotpink;lets you have your way@@ with $his body every time you catch $him in a vulnerable moment or complaining about $his tits. By the week's end, scans reveal that your seed has taken root; @@.lime;$he's pregnant.@@ As $his breasts grow to feed $his coming child, $he will likely be too distracted by $his swelling middle to complain about their added weight.
+			<<set $activeSlave.trust -= 5, $activeSlave.devotion += 5>>
+			<<= knockMeUp($activeSlave, 100, 2, -1, 1)>>
+		<</replace>>
+	<</link>><<if $activeSlave.vagina == 0>> //This option will take $his virginity//<<elseif $activeSlave.anus == 0 && $activeSlave.mpreg == 1>> //This option will take $his anal virginity//<</if>>
 <</if>>
 <br><<link "Praise $his breasts and reassure $him">>
 	<<EventNameDelink $activeSlave>>
@@ -18525,7 +18531,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 					<<set $activeSlave.devotion += 5, $activeSlave.counter.anal++, $analTotal++, $activeSlave.anus = 1>>
 					<<= knockMeUp($activeSlave, 5, 1, -1, 1)>>
 				<</replace>>
-			<</link>> //This option will take anal virginity//
+			<</link>> //This option will take $his anal virginity//
 		</span>
 	<</replace>>
 <</link>>
@@ -18558,35 +18564,35 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 	<</replace>>
 <</link>>
 <<if $HeadGirl != 0>>
-<br><<link "Double up on $his ass with your Head Girl">>
-	<<setLocalPronouns $HeadGirl 2>>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-		You page $HeadGirl.slaveName for some assistance filling up a loose hole, and _he2 comes quickly, <<if canPenetrate($HeadGirl)>>precum already visible at the tip of _his2 erection<<else>>bringing a strap-on<</if>>. When _he2 arrives, it's to the sight of $activeSlave.slaveName sitting on your lap<<if !canDoAnal($activeSlave)>>, anal chastity discarded<</if>>, with your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up $his ridiculous anal gape, waiting for a second phallus while your hands tease $his $activeSlave.nipples nipples. Seeing that backup has arrived, you lean back and shift your grip to the back of the receptacle's lower thighs, pulling $him up and shifting $his hips to offer your Head Girl another berth in $activeSlave.slaveName's ass. This pulls $his loose sphincter up, producing a little gape above the top of your invading shaft, and $HeadGirl.slaveName loses no time in fucking it. _He2 gives $activeSlave.slaveName a kiss, but soon breaks the lip lock, since _he2's more interested in making eyes at you over your mutual anal conquest's shuddering shoulder. As
-		<<if $PC.dick == 1>>
-			<<if canPenetrate($HeadGirl)>>
-				your dicks slide against each other,
+	<br><<link "Double up on $his ass with your Head Girl">>
+		<<setLocalPronouns $HeadGirl 2>>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You page $HeadGirl.slaveName for some assistance filling up a loose hole, and _he2 comes quickly, <<if canPenetrate($HeadGirl)>>precum already visible at the tip of _his2 erection<<else>>bringing a strap-on<</if>>. When _he2 arrives, it's to the sight of $activeSlave.slaveName sitting on your lap<<if !canDoAnal($activeSlave)>>, anal chastity discarded<</if>>, with your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up $his ridiculous anal gape, waiting for a second phallus while your hands tease $his $activeSlave.nipples nipples. Seeing that backup has arrived, you lean back and shift your grip to the back of the receptacle's lower thighs, pulling $him up and shifting $his hips to offer your Head Girl another berth in $activeSlave.slaveName's ass. This pulls $his loose sphincter up, producing a little gape above the top of your invading shaft, and $HeadGirl.slaveName loses no time in fucking it. _He2 gives $activeSlave.slaveName a kiss, but soon breaks the lip lock, since _he2's more interested in making eyes at you over your mutual anal conquest's shuddering shoulder. As
+			<<if $PC.dick == 1>>
+				<<if canPenetrate($HeadGirl)>>
+					your dicks slide against each other,
+				<<else>>
+					your dick slides against _his2 strap-on,
+				<</if>>
 			<<else>>
-				your dick slides against _his2 strap-on,
+				<<if canPenetrate($HeadGirl)>>
+					your strap-on slides against _his2 dick,
+				<<else>>
+					your strap-ons slide against each other,
+				<</if>>
 			<</if>>
-		<<else>>
-			<<if canPenetrate($HeadGirl)>>
-				your strap-on slides against _his2 dick,
-			<<else>>
-				your strap-ons slide against each other,
+			your trusty Head Girl whispers that @@.hotpink;_he2 loves you.@@ $activeSlave.slaveName makes an inarticulate noise of anal distress that probably means @@.hotpink;approximately the same thing.@@
+			<<set $activeSlave.devotion += 4>>
+			<<= AnalVCheck(2)>>
+			<<if canImpreg($activeSlave, $HeadGirl)>>
+				<<= knockMeUp($activeSlave, 5, 1, $HeadGirl.ID, 1)>>
 			<</if>>
-		<</if>>
-		your trusty Head Girl whispers that @@.hotpink;_he2 loves you.@@ $activeSlave.slaveName makes an inarticulate noise of anal distress that probably means @@.hotpink;approximately the same thing.@@
-		<<set $activeSlave.devotion += 4>>
-		<<= AnalVCheck(2)>>
-		<<if canImpreg($activeSlave, $HeadGirl)>>
-			<<= knockMeUp($activeSlave, 5, 1, $HeadGirl.ID, 1)>>
-		<</if>>
-		<<set $slaves[$slaveIndices[$HeadGirl.ID]].devotion += 4>>
-		<<EventFetish $activeSlave "buttslut">>
-		<<EventFetish $activeSlave "submissive">>
-	<</replace>>
-<</link>>
+			<<set $slaves[$slaveIndices[$HeadGirl.ID]].devotion += 4>>
+			<<EventFetish $activeSlave "buttslut">>
+			<<EventFetish $activeSlave "submissive">>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "passing declaration">>
@@ -18805,7 +18811,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 		right there among your breakfasting slaves, who try to ignore you or watch with appreciation, according to their own natures. When you're finished, you <<if $PC.dick == 1>>spin $him around and kiss $him,<<else>>pull $him up to $his feet and kiss $him, tasting yourself on $his lips and<</if>> making sure $he knows @@.hotpink;you appreciate $his mature body@@ just as much as <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>$his customers do<<else>>your citizens do<</if>>.
 		<<set $activeSlave.devotion += 5>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $PC.dick == 1>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0) && $PC.dick == 1>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $PC.dick == 1>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0) && $PC.dick == 1>> //This option will take $his anal virginity//<</if>>
 
 <<case "im scared">>
 
@@ -18834,32 +18840,32 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 	<</replace>>
 <</link>>
 <<if $dairyRestraintsSetting == 2>>
-<br><<link "Threaten $him with the industrial Dairy">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-		You grab $him by the scruff of $his neck and drag $him down to $dairyName. $He tries to control $himself, but breaks down in tears when you haul $him to a stop, forcing $him to get a good <<if canSee($activeSlave)>>look at the rows of bodies being<<elseif canHear($activeSlave)>>listen of the sound of rows of bodies being<<else>>feel for the omnipresent aura of rows of bodies being<</if>> mercilessly milked. You explain that if $he continues to fail to control $himself, your patience with $his will eventually expire, and you'll be forced to immure $him here. <<if canSee($activeSlave)>>Indicating<<else>>Facing $him towards<</if>> a slave who's being
-		<<if ($activeSlave.balls > 0) && ($dairyStimulatorsSetting == 2)>>
-			cockmilked by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as a dildo the size of $his forearm slides in and out of the slave's rectum, pounding it harder and harder until the slave stiffens and the transparent tubing coming off its cockhead whitens with cum. As the slave relaxes slightly in the restrains, the powerful milkers continue their relentless tugging at $his gigantic udders.<<if !canSee($activeSlave)>> As the dildo begins its efforts to loose a second cumming, you grab the horrified slave's hands and push them to the cow's throbbing dick just in time for $him to feel the ejaculate forced out by its unwilling orgasm.<</if>> You run a hand down to $activeSlave.slaveName's own balls and, squeezing them slightly, tell $him that unless $he wants $his ass ruined by constant machine rape, $his tits turned into immobilizing milk factories and $his balls drained of every last drop of seed,
-		<<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && ($dairyPregSetting == 2)>>
-			used for reproduction by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as a dildo the size of $his forearm fucks the slave's enormous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against $his cervix. The slave is gigantically pregnant. You tell $activeSlave.slaveName that this is the vaginal treatment $he can expect when pregnant; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.<<if !canSee($activeSlave)>> As the dildo retracts from the cow's gaping cunt, you grab the horrified slave's hands and push them to its gravid middle just in time for $him to feel a massive contraction.<</if>> You run a hand down to $activeSlave.slaveName's own middle and, patting it gently, tell $him that unless $he wants $his womb converted into an industrial component,
-		<<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && ($dairyPregSetting == 3)>>
-			used for mass reproduction by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as a dildo the size of $his forearm fucks the slave's cavernous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against $his tortured cervix. The slave is absolutely enormous, more a taut sphere of a belly than a person; so pregnant that the children within $his are visibly forced to bulge the skin covering $his straining womb by their sisters. You tell $activeSlave.slaveName that this is the treatment $he can expect when pregnant here; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.<<if !canSee($activeSlave)>> As the cow takes the huge dildo absentmindedly, you grab the horrified slave's hands and push them to its gravid middle forcing $him to feel the children squirming within its packed womb. $He squeals in terror at the feeling of so many babies moving under $his fingers.<</if>> You run a hand down to $activeSlave.slaveName's own middle and, patting it gently, tell $him that unless $he wants to become an industrial breeder,
-		<<else>>
-			drained of $his milk, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as the slave's gigantic breasts are massaged and squeezed, while the milkers attached to $his absurd nipples tug and pull with industrial power. $He can't <<if canSee($activeSlave)>>look away; the orbs of jiggling flesh being manipulated are each as big as the slave's torso<<else>>shut out the sound of those enormous jiggling orbs of flesh being so roughly manipulated<</if>>. It's good for milk production to drain slaves completely on occasion, and the machine doesn't stop until every drop is wrung from both udders.<<if !canSee($activeSlave)>> You force the horrified slave's hands onto its breasts so that $he may get a good sense of just how big and swollen they are and how hard the milker is pulling at them.<</if>> You run a hand over to $activeSlave.slaveName's own breast and, teasing $his nipple, tell $him that unless $he wants to experience that twice a day,
-		<</if>>
-		$he had better behave $himself. $He nods furiously, @@.gold;terrified beyond the ability to speak.@@
-		<<set $activeSlave.trust -= 8>>
-	<</replace>>
-<</link>>
+	<br><<link "Threaten $him with the industrial Dairy">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You grab $him by the scruff of $his neck and drag $him down to $dairyName. $He tries to control $himself, but breaks down in tears when you haul $him to a stop, forcing $him to get a good <<if canSee($activeSlave)>>look at the rows of bodies being<<elseif canHear($activeSlave)>>listen of the sound of rows of bodies being<<else>>feel for the omnipresent aura of rows of bodies being<</if>> mercilessly milked. You explain that if $he continues to fail to control $himself, your patience with $his will eventually expire, and you'll be forced to immure $him here. <<if canSee($activeSlave)>>Indicating<<else>>Facing $him towards<</if>> a slave who's being
+			<<if ($activeSlave.balls > 0) && ($dairyStimulatorsSetting == 2)>>
+				cockmilked by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as a dildo the size of $his forearm slides in and out of the slave's rectum, pounding it harder and harder until the slave stiffens and the transparent tubing coming off its cockhead whitens with cum. As the slave relaxes slightly in the restrains, the powerful milkers continue their relentless tugging at $his gigantic udders.<<if !canSee($activeSlave)>> As the dildo begins its efforts to loose a second cumming, you grab the horrified slave's hands and push them to the cow's throbbing dick just in time for $him to feel the ejaculate forced out by its unwilling orgasm.<</if>> You run a hand down to $activeSlave.slaveName's own balls and, squeezing them slightly, tell $him that unless $he wants $his ass ruined by constant machine rape, $his tits turned into immobilizing milk factories and $his balls drained of every last drop of seed,
+			<<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && ($dairyPregSetting == 2)>>
+				used for reproduction by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as a dildo the size of $his forearm fucks the slave's enormous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against $his cervix. The slave is gigantically pregnant. You tell $activeSlave.slaveName that this is the vaginal treatment $he can expect when pregnant; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.<<if !canSee($activeSlave)>> As the dildo retracts from the cow's gaping cunt, you grab the horrified slave's hands and push them to its gravid middle just in time for $him to feel a massive contraction.<</if>> You run a hand down to $activeSlave.slaveName's own middle and, patting it gently, tell $him that unless $he wants $his womb converted into an industrial component,
+			<<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && ($dairyPregSetting == 3)>>
+				used for mass reproduction by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as a dildo the size of $his forearm fucks the slave's cavernous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against $his tortured cervix. The slave is absolutely enormous, more a taut sphere of a belly than a person; so pregnant that the children within $his are visibly forced to bulge the skin covering $his straining womb by their sisters. You tell $activeSlave.slaveName that this is the treatment $he can expect when pregnant here; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.<<if !canSee($activeSlave)>> As the cow takes the huge dildo absentmindedly, you grab the horrified slave's hands and push them to its gravid middle forcing $him to feel the children squirming within its packed womb. $He squeals in terror at the feeling of so many babies moving under $his fingers.<</if>> You run a hand down to $activeSlave.slaveName's own middle and, patting it gently, tell $him that unless $he wants to become an industrial breeder,
+			<<else>>
+				drained of $his milk, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as the slave's gigantic breasts are massaged and squeezed, while the milkers attached to $his absurd nipples tug and pull with industrial power. $He can't <<if canSee($activeSlave)>>look away; the orbs of jiggling flesh being manipulated are each as big as the slave's torso<<else>>shut out the sound of those enormous jiggling orbs of flesh being so roughly manipulated<</if>>. It's good for milk production to drain slaves completely on occasion, and the machine doesn't stop until every drop is wrung from both udders.<<if !canSee($activeSlave)>> You force the horrified slave's hands onto its breasts so that $he may get a good sense of just how big and swollen they are and how hard the milker is pulling at them.<</if>> You run a hand over to $activeSlave.slaveName's own breast and, teasing $his nipple, tell $him that unless $he wants to experience that twice a day,
+			<</if>>
+			$he had better behave $himself. $He nods furiously, @@.gold;terrified beyond the ability to speak.@@
+			<<set $activeSlave.trust -= 8>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if $seeExtreme != 0>>
-<br><<link "Threaten to convert $him into a Fuckdoll">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-		You order a Fuckdoll brought to your office. $activeSlave.slaveName <<if canSee($activeSlave)>>watches it totter in<<elseif canHear($activeSlave)>>listens to the clicks of its approaching heels and the ominous squeaking of its latex shell<<else>>feels the uncomfortable latex skin of its suit when it brushes up against $him<</if>>, automatically following the tugs on its leash and the tonal commands passed by its suit. $He already understands the implicit threat, and $he shivers uncontrollably, @@.gold;almost falling to $his knees in fear.@@ Not content with that, you tell $him that $he's trying your patience with $his behavior. If $he doesn't control $himself better in the future, you'll give up on $him and convert $him into a Fuckdoll. At the spoken threat $activeSlave.slaveName does collapse, but you order $him to get back to $his feet and <<if canSee($activeSlave)>>watch<<else>>pay attention<</if>>. $He does, shakily, tears streaming down $his face as you put the Fuckdoll on all fours, as though it were about to take dick. Its <<if $activeSlave.vagina > -1>>holes are pointed straight at $activeSlave.slaveName's face, <<if canSee($activeSlave)>>and $he can't avoid seeing how loose and used they look<<else>>so you grab both $his hands and force one into each of its blown out holes. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><<else>>rear hole is pointed straight at $activeSlave.slaveName's face,<<if canSee($activeSlave)>> and $he can't avoid seeing how loose and used it looks<<else>>so you grab both $his hands and force them into its blown out ass. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><</if>>. Suddenly, you activate the Fuckdoll's suit's punishment systems. It does not and cannot scream, but <<if canSee($activeSlave)>>a slight stiffening of its posture communicates extreme anguish, and its sphincter spasms tightly closed with obviously involuntary force<<else>>the sudden, pitiful attempt to clamp down on $his arms makes it perfectly clear that you just forced it to undergo extreme anguish<</if>>. $activeSlave.slaveName is almost incapacitated by terror.
-		<<set $activeSlave.trust -= 8>>
-	<</replace>>
-<</link>>
+	<br><<link "Threaten to convert $him into a Fuckdoll">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You order a Fuckdoll brought to your office. $activeSlave.slaveName <<if canSee($activeSlave)>>watches it totter in<<elseif canHear($activeSlave)>>listens to the clicks of its approaching heels and the ominous squeaking of its latex shell<<else>>feels the uncomfortable latex skin of its suit when it brushes up against $him<</if>>, automatically following the tugs on its leash and the tonal commands passed by its suit. $He already understands the implicit threat, and $he shivers uncontrollably, @@.gold;almost falling to $his knees in fear.@@ Not content with that, you tell $him that $he's trying your patience with $his behavior. If $he doesn't control $himself better in the future, you'll give up on $him and convert $him into a Fuckdoll. At the spoken threat $activeSlave.slaveName does collapse, but you order $him to get back to $his feet and <<if canSee($activeSlave)>>watch<<else>>pay attention<</if>>. $He does, shakily, tears streaming down $his face as you put the Fuckdoll on all fours, as though it were about to take dick. Its <<if $activeSlave.vagina > -1>>holes are pointed straight at $activeSlave.slaveName's face, <<if canSee($activeSlave)>>and $he can't avoid seeing how loose and used they look<<else>>so you grab both $his hands and force one into each of its blown out holes. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><<else>>rear hole is pointed straight at $activeSlave.slaveName's face,<<if canSee($activeSlave)>> and $he can't avoid seeing how loose and used it looks<<else>>so you grab both $his hands and force them into its blown out ass. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><</if>>. Suddenly, you activate the Fuckdoll's suit's punishment systems. It does not and cannot scream, but <<if canSee($activeSlave)>>a slight stiffening of its posture communicates extreme anguish, and its sphincter spasms tightly closed with obviously involuntary force<<else>>the sudden, pitiful attempt to clamp down on $his arms makes it perfectly clear that you just forced it to undergo extreme anguish<</if>>. $activeSlave.slaveName is almost incapacitated by terror.
+			<<set $activeSlave.trust -= 8>>
+		<</replace>>
+	<</link>>
 <</if>>
 <br><<link "Comfort $him">>
 	<<EventNameDelink $activeSlave>>
@@ -18926,39 +18932,39 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Rape $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-		Sometimes there's really no need to overthink things. You reach down, grab $him under the armpits, and haul $him up, throwing $him across your desk. $He lands on $his back, and the impact drives the wind out of $him, so $he lies there, @@.gold;all possibility of resistance driven out of $him.@@
-		<<if $activeSlave.clothes == "no clothing">>
-			$He's already naked, so there's no need to
-		<<else>>
-			You
-		<</if>>
-		tear the clothes off $him. You force yourself in between $his legs as $he struggles to get $his breath back, and $he gets another good look at the formidable dick that's about to be slammed inside $his<<if $activeSlave.belly >= 5000>> before it disappears beneath $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly<</if>>. $His eyes go wide with fear, and you enhance the effect by smacking yourself against
-		<<if canDoVaginal($activeSlave)>>
-			$his
-			<<if $activeSlave.vagina == 0>>
-				virgin
+	<br><<link "Rape $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			Sometimes there's really no need to overthink things. You reach down, grab $him under the armpits, and haul $him up, throwing $him across your desk. $He lands on $his back, and the impact drives the wind out of $him, so $he lies there, @@.gold;all possibility of resistance driven out of $him.@@
+			<<if $activeSlave.clothes == "no clothing">>
+				$He's already naked, so there's no need to
+			<<else>>
+				You
 			<</if>>
-			vulva.
-		<<elseif $activeSlave.dick > 0>>
-			limp bitchclit.
-		<<else>>
-			$his buttocks.
-		<</if>>
-		You tell $him not to worry, because you're still pretty wet from the last slave you fucked, so this shouldn't hurt too much. Then you ram your cock
-		<<if $activeSlave.vagina > 0>>
-			inside $him.
-			<<= VaginalVCheck()>>
-		<<else>>
-			up $his spasming ass.
-			<<= AnalVCheck()>>
-		<</if>>
-		$He whines and bucks, but $he's entirely at your mercy. $He doesn't like dicks, and to go by $his facial expression as you piston in and out of $him, this experience isn't going to make $him reconsider. When you fill $him with cum, pull out, and let $him retreat to clean $himself up, $he's relieved to go.
-		<<set $activeSlave.trust -= 5>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+			tear the clothes off $him. You force yourself in between $his legs as $he struggles to get $his breath back, and $he gets another good look at the formidable dick that's about to be slammed inside $his<<if $activeSlave.belly >= 5000>> before it disappears beneath $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly<</if>>. $His eyes go wide with fear, and you enhance the effect by smacking yourself against
+			<<if canDoVaginal($activeSlave)>>
+				$his
+				<<if $activeSlave.vagina == 0>>
+					virgin
+				<</if>>
+				vulva.
+			<<elseif $activeSlave.dick > 0>>
+				limp bitchclit.
+			<<else>>
+				$his buttocks.
+			<</if>>
+			You tell $him not to worry, because you're still pretty wet from the last slave you fucked, so this shouldn't hurt too much. Then you ram your cock
+			<<if $activeSlave.vagina > 0>>
+				inside $him.
+				<<= VaginalVCheck()>>
+			<<else>>
+				up $his spasming ass.
+				<<= AnalVCheck()>>
+			<</if>>
+			$He whines and bucks, but $he's entirely at your mercy. $He doesn't like dicks, and to go by $his facial expression as you piston in and out of $him, this experience isn't going to make $him reconsider. When you fill $him with cum, pull out, and let $him retreat to clean $himself up, $he's relieved to go.
+			<<set $activeSlave.trust -= 5>>
+		<</replace>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 
 <<case "comfortable seat">>
@@ -19221,7 +19227,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 					<<set $activeSlave.trust += 5>>
 				<</link>>
 			<<else>>
-				Fucking $him here would be interesting, unfortunately there just isn't enough room for two mothers-to-be.
+				Fucking $him here would be interesting; unfortunately there just isn't enough room for two mothers-to-be.
 			<</if>>
 			<br><<link "Teach $him about true sadism">>
 				<<set _ress = $slaveIndices[$ArcadeiIDs.random()]>>
@@ -19286,89 +19292,89 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 	<<set $activeSlave.trust += 5>>
 <</link>>
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Fuck $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-		Finding the situation simply too good to pass up, you wait until $he's not <<if canSee($activeSlave)>>looking at<<else>>paying attention to<</if>> you, and then approach $him from behind.
-		<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut") && canDoAnal($activeSlave)>>
-			$He gasps wantonly as $he feels the familiar sensation of <<if $PC.dick == 1>>your dick<<else>>a strap-on<</if>> infiltrating between $his cheeks and towards $his <<if $activeSlave.anus >= 3>>loose<<elseif $activeSlave.anus >= 2>>relaxed<<else>>tight little<</if>> anus. $He releases $his grip on the constricting clothing that's binding $his thighs together and grinds $his ass back against you, making sure every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of your <<if $PC.dick == 1>>hard member<<else>>phallus<</if>> that will fit gets inside $his asshole. Some time later, the hard pounding dislodges the clothing and it slides down $his legs to gather around $his ankles. @@.hotpink;$He doesn't notice.@@
-			<<= AnalVCheck()>>
-		<<elseif $activeSlave.energy > 80>>
-			$He's so horny that $he doesn't need any foreplay. Nor does $he get any. You grab $his hips and smack your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> against $his jiggling buttocks a couple of times, making $his bounce with eagerness and frustration at the anticipation of imminent sexual release. Exercising mercy, you pull $his ass back against you and maneuver <<if $PC.dick == 1>>yourself<<else>>your instrument<</if>> inside $him, enjoying $his shiver at the @@.hotpink;satisfaction of $his hopes.@@ The constricting clothes pin $his legs together, and you hold $his arms against $his sides, keeping $his back pressed against your
-			<<if $PC.belly > 1500>>
-				pregnancy
-			<<elseif $PC.boobs == 1>>
-				<<if $PC.boobsImplant == 1>>fake <</if>>breasts
-			<<elseif $PC.title == 0>>
-				flat chest
-			<<else>>
-				muscular chest
-			<</if>>
-			as you take $him.
-			<<if canDoVaginal($activeSlave)>><<= VaginalVCheck()>><<else>><<= AnalVCheck()>><</if>>
-		<<elseif $activeSlave.trust > 20>>
-			$He relaxes submissively when $he feels you take hold of $his huge ass and slide your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> between $his asscheeks and then inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>anus<</if>>. $His legs are already in effect bound, by the constricting clothing that's still holding them together, and you enhance the effect by taking hold of $his wrists and hugging $him from behind as you fuck $him, holding $his arms crossed across $his <<if $activeSlave.boobs > 2000>>massive breasts<<elseif $activeSlave.boobs > 300>>boobs<<else>>chest<</if>>. Helpless in your embrace, $he @@.hotpink;relaxes completely and lets it happen.@@
-			<<if canDoVaginal($activeSlave)>><<= VaginalVCheck()>><<else>><<= AnalVCheck()>><</if>>
-		<<else>>
-			$He stiffens fearfully when $he feels you take hold of $his huge ass, but $he knows not to resist. $He stays still as you slide your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> between $his asscheeks and then inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>anus<</if>>, trying to angle $his hips to make the standing penetration less uncomfortable. The clothing binds $his legs together, reducing $him to simply sticking $his butt out as best $he can to ease the stroking of your <<if $PC.dick == 1>>cock<<else>>phallus<</if>>, invading $his helpless
-			<<if canDoVaginal($activeSlave)>>
-				cunt.
-				<<= VaginalVCheck()>>
-			<<else>>
-				asshole.
+	<br><<link "Fuck $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			Finding the situation simply too good to pass up, you wait until $he's not <<if canSee($activeSlave)>>looking at<<else>>paying attention to<</if>> you, and then approach $him from behind.
+			<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut") && canDoAnal($activeSlave)>>
+				$He gasps wantonly as $he feels the familiar sensation of <<if $PC.dick == 1>>your dick<<else>>a strap-on<</if>> infiltrating between $his cheeks and towards $his <<if $activeSlave.anus >= 3>>loose<<elseif $activeSlave.anus >= 2>>relaxed<<else>>tight little<</if>> anus. $He releases $his grip on the constricting clothing that's binding $his thighs together and grinds $his ass back against you, making sure every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of your <<if $PC.dick == 1>>hard member<<else>>phallus<</if>> that will fit gets inside $his asshole. Some time later, the hard pounding dislodges the clothing and it slides down $his legs to gather around $his ankles. @@.hotpink;$He doesn't notice.@@
 				<<= AnalVCheck()>>
+			<<elseif $activeSlave.energy > 80>>
+				$He's so horny that $he doesn't need any foreplay. Nor does $he get any. You grab $his hips and smack your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> against $his jiggling buttocks a couple of times, making $his bounce with eagerness and frustration at the anticipation of imminent sexual release. Exercising mercy, you pull $his ass back against you and maneuver <<if $PC.dick == 1>>yourself<<else>>your instrument<</if>> inside $him, enjoying $his shiver at the @@.hotpink;satisfaction of $his hopes.@@ The constricting clothes pin $his legs together, and you hold $his arms against $his sides, keeping $his back pressed against your
+				<<if $PC.belly > 1500>>
+					pregnancy
+				<<elseif $PC.boobs == 1>>
+					<<if $PC.boobsImplant == 1>>fake <</if>>breasts
+				<<elseif $PC.title == 0>>
+					flat chest
+				<<else>>
+					muscular chest
+				<</if>>
+				as you take $him.
+				<<if canDoVaginal($activeSlave)>><<= VaginalVCheck()>><<else>><<= AnalVCheck()>><</if>>
+			<<elseif $activeSlave.trust > 20>>
+				$He relaxes submissively when $he feels you take hold of $his huge ass and slide your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> between $his asscheeks and then inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>anus<</if>>. $His legs are already in effect bound, by the constricting clothing that's still holding them together, and you enhance the effect by taking hold of $his wrists and hugging $him from behind as you fuck $him, holding $his arms crossed across $his <<if $activeSlave.boobs > 2000>>massive breasts<<elseif $activeSlave.boobs > 300>>boobs<<else>>chest<</if>>. Helpless in your embrace, $he @@.hotpink;relaxes completely and lets it happen.@@
+				<<if canDoVaginal($activeSlave)>><<= VaginalVCheck()>><<else>><<= AnalVCheck()>><</if>>
+			<<else>>
+				$He stiffens fearfully when $he feels you take hold of $his huge ass, but $he knows not to resist. $He stays still as you slide your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> between $his asscheeks and then inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>anus<</if>>, trying to angle $his hips to make the standing penetration less uncomfortable. The clothing binds $his legs together, reducing $him to simply sticking $his butt out as best $he can to ease the stroking of your <<if $PC.dick == 1>>cock<<else>>phallus<</if>>, invading $his helpless
+				<<if canDoVaginal($activeSlave)>>
+					cunt.
+					<<= VaginalVCheck()>>
+				<<else>>
+					asshole.
+					<<= AnalVCheck()>>
+				<</if>>
+				When you're done, you extract yourself and stalk off, leaving $him to struggle free<<if $PC.dick == 1>> and try to keep the cum dripping out of $him off $his clothing<</if>>. $He stumbles back to fetch the right size, @@.hotpink;thoroughly fucked.@@
 			<</if>>
-			When you're done, you extract yourself and stalk off, leaving $him to struggle free<<if $PC.dick == 1>> and try to keep the cum dripping out of $him off $his clothing<</if>>. $He stumbles back to fetch the right size, @@.hotpink;thoroughly fucked.@@
-		<</if>>
-	<</replace>>
-	<<set $activeSlave.devotion += 5>>
-<</link>>
-<</if>>
-
-<<case "servant maid">>
-
-<<link "Stop $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You look $activeSlave.slaveName up and down slowly before informing $him that $he has one more duty left to perform.
-	<br><br><span id="result2">
-	<<if canDoAnal($activeSlave)>>
-	<<link "Clean out $his ass with an enema and fuck it">>
-		<<replace "#result2">>
-		You tell $activeSlave.slaveName that $he forgot to clean one thing in $his office — $himself. As $he looks at you in confusion, you rise from your chair and lightly press $his chest down on your desk. $He lays there obediently, only letting out a gasp as the cold tip of an enema bulb penetrates $his ass. As a result of $his slave diet and daily anal preparation, the insertion of the enema is little more a bit of roleplaying spectacle. When you retrieve the enema from $his rectum you remark, <<if $PC.dick == 0>>as you don a strap-on, <</if>>that you'll need to inspect $his asshole personally with a vigorous assfucking. Soon $activeSlave.slaveName finds $himself being pounded so forcefully that a small pool of drool begins to form beneath $his open mouth, staining the surface of your desk that $he so meticulously cleaned. $He @@.mediumaquamarine;resolves to trust you more in the future,@@ since you took a personal interest in $his cleanliness.
-		<<= AnalVCheck()>>
-		<<set $activeSlave.trust += 4>>
-		<</replace>>
-	<</link>><<if $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
-	<</if>>
-	<br><<link "Have $his lick you clean">>
-		<<replace "#result2">>
-			You recline in your chair and inform $activeSlave.slaveName that $he has one last thing to clean in your office. $He understands your meaning quickly, sinks to $his knees and <<if $activeSlave.belly >= 5000>>struggles to crawl<<else>>crawls<</if>> beneath your desk to kneel between your legs. Soon enough you feel the sensation of $his lips wrapping obediently about one of your toes, fellating the appendage with some enthusiasm. $He works $his way through your various digits, taking some solace in the simplicity of $his task, before a sudden understanding dawns on $him. $He runs $his tongue up your leg, cleansing your skin with $his tongue as best $he can, before heading for your
-		<<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>>
-		but you lay a hand on $his forehead and halt $him — $he'll do that last.
-		<<if $PC.boobs == 1 || $PC.title == 0>>
-			Soon enough $he manages to lick all the way up from your feet to your breasts, cleansing your <<if $PC.belly >= 60000>>massively gravid <<elseif $PC.belly >= 5000>>motherly <</if>>body with $his wet tongue all the way. $He hesitates before teasingly laying a single lap on your nipples, so you take $his head and hold it against your breasts to enjoy $his skillful tongue on your nipples.<<if $PC.lactation > 0>> $He even gets a special treat to savor, fresh from $his <<= WrittenMaster($activeSlave)>>'s milky breasts. $He makes sure your sore breasts are sufficiently relieved.<</if>>
-		<<else>>
-			Soon enough $he manages to lick all the way up from your feet to your <<if $PC.belly >= 10000>>taut dome of a stomach<<elseif $PC.belly >= 5000>>pregnancy strained abs<<else>>abs<</if>>, pecs, and collarbone, cleansing your body with $his wet tongue all the way. $He lavishes particular attention on every nook and groove of your chiseled body, clearly eager to please $his muscular <<if $PC.belly >= 5000>>(and very pregnant) <</if>><<= WrittenMaster($activeSlave)>>.
-		<</if>>
-		When $he's satisfied that every other <<if $showInches == 2>>inch<<else>>centimeter<</if>> of your body has been bathed by $his tongue, $he moves for your
-		<<if $PC.dick == 0>>
-			cunt, and laps at you enthusiastically
-		<<else>>
-			cock, and runs $his tongue all over its surface<<if $PC.vagina == 1>> before turning $his attentions to lavish the same wet service to your pussy<</if>>
-		<</if>>
-		This extravagant display of $his subservience leaves $him more sure of $his @@.hotpink;submission@@ to you than before.
-		<<set $activeSlave.counter.oral++, $oralTotal++, $activeSlave.devotion += 4>>
 		<</replace>>
+		<<set $activeSlave.devotion += 5>>
 	<</link>>
-	</span>
+<</if>>
+
+<<case "servant maid">>
+
+<<link "Stop $him">>
+	<<EventNameDelink $activeSlave>>
+	<<replace "#result">>
+		You look $activeSlave.slaveName up and down slowly before informing $him that $he has one more duty left to perform.
+		<br><br><span id="result2">
+			<<if canDoAnal($activeSlave)>>
+				<<link "Clean out $his ass with an enema and fuck it">>
+					<<replace "#result2">>
+						You tell $activeSlave.slaveName that $he forgot to clean one thing in $his office — $himself. As $he looks at you in confusion, you rise from your chair and lightly press $his chest down on your desk. $He lays there obediently, only letting out a gasp as the cold tip of an enema bulb penetrates $his ass. As a result of $his slave diet and daily anal preparation, the insertion of the enema is little more a bit of roleplaying spectacle. When you retrieve the enema from $his rectum you remark, <<if $PC.dick == 0>>as you don a strap-on, <</if>>that you'll need to inspect $his asshole personally with a vigorous assfucking. Soon $activeSlave.slaveName finds $himself being pounded so forcefully that a small pool of drool begins to form beneath $his open mouth, staining the surface of your desk that $he so meticulously cleaned. $He @@.mediumaquamarine;resolves to trust you more in the future,@@ since you took a personal interest in $his cleanliness.
+						<<= AnalVCheck()>>
+						<<set $activeSlave.trust += 4>>
+					<</replace>>
+				<</link>><<if $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
+			<</if>>
+			<br><<link "Have $him lick you clean">>
+				<<replace "#result2">>
+					You recline in your chair and inform $activeSlave.slaveName that $he has one last thing to clean in your office. $He understands your meaning quickly, sinks to $his knees and <<if $activeSlave.belly >= 5000>>struggles to crawl<<else>>crawls<</if>> beneath your desk to kneel between your legs. Soon enough you feel the sensation of $his lips wrapping obediently about one of your toes, fellating the appendage with some enthusiasm. $He works $his way through your various digits, taking some solace in the simplicity of $his task, before a sudden understanding dawns on $him. $He runs $his tongue up your leg, cleansing your skin with $his tongue as best $he can, before heading for your
+					<<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>>
+					but you lay a hand on $his forehead and halt $him — $he'll do that last.
+					<<if $PC.boobs == 1 || $PC.title == 0>>
+						Soon enough $he manages to lick all the way up from your feet to your breasts, cleansing your <<if $PC.belly >= 60000>>massively gravid <<elseif $PC.belly >= 5000>>motherly <</if>>body with $his wet tongue all the way. $He hesitates before teasingly laying a single lap on your nipples, so you take $his head and hold it against your breasts to enjoy $his skillful tongue on your nipples.<<if $PC.lactation > 0>> $He even gets a special treat to savor, fresh from $his <<= WrittenMaster($activeSlave)>>'s milky breasts. $He makes sure your sore breasts are sufficiently relieved.<</if>>
+					<<else>>
+						Soon enough $he manages to lick all the way up from your feet to your <<if $PC.belly >= 10000>>taut dome of a stomach<<elseif $PC.belly >= 5000>>pregnancy strained abs<<else>>abs<</if>>, pecs, and collarbone, cleansing your body with $his wet tongue all the way. $He lavishes particular attention on every nook and groove of your chiseled body, clearly eager to please $his muscular <<if $PC.belly >= 5000>>(and very pregnant) <</if>><<= WrittenMaster($activeSlave)>>.
+					<</if>>
+					When $he's satisfied that every other <<if $showInches == 2>>inch<<else>>centimeter<</if>> of your body has been bathed by $his tongue, $he moves for your
+					<<if $PC.dick == 0>>
+						cunt, and laps at you enthusiastically
+					<<else>>
+						cock, and runs $his tongue all over its surface<<if $PC.vagina == 1>> before turning $his attentions to lavish the same wet service to your pussy<</if>>
+					<</if>>
+					This extravagant display of $his subservience leaves $him more sure of $his @@.hotpink;submission@@ to you than before.
+					<<set $activeSlave.counter.oral++, $oralTotal++, $activeSlave.devotion += 4>>
+				<</replace>>
+			<</link>>
+		</span>
 	<</replace>>
 <</link>>
 <br><<link "Let $him go">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You grant $him your assent to leave, and $he hurries off to go on with $his day. $His @@.mediumaquamarine;trust@@ for you grows as a result of allowing $him to go about $his duties unmolested.
-	<<set $activeSlave.trust += 2>>
+		You grant $him your assent to leave, and $he hurries off to go on with $his day. $His @@.mediumaquamarine;trust@@ for you grows as a result of allowing $him to go about $his duties unmolested.
+		<<set $activeSlave.trust += 2>>
 	<</replace>>
 <</link>>
 
@@ -19377,123 +19383,123 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Gently acclimate $him to the age difference with some lovemaking">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing $him into you arms, running the tips of your fingers through $his $activeSlave.hColor hair, and looking into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years your senior $he is<<else>>$He seems to feel the intensity of your gaze despite $his sightless eyes and blushes girlishly, as if forgetting how many years your senior $he is<</if>>. In lieu of words, you lift $his chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered $his wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to $his role as a sex slave in response to your unexpected intimacy. Instead, you
-	<<if $activeSlave.belly >= 300000>>
-		help $him to $his feet and guide $him to bed, aiding the <<if $activeSlave.bellyPreg >= 3000>>child-laden<<else>>tremendously swollen<</if>> older $woman onto the sheets before gently mounting $him.
-	<<else>>
-		<<if $activeSlave.belly >= 5000>>carefully <</if>>lift $him up from $his low position beneath you and carry $him to bed, laying the flushed older $woman down on the sheets before gently positioning yourself on top of $him.
-	<</if>>
-	Together, the two of you make fiercely intimate love, while you whisper romantic reassurances into $his ear, nip at $his neck,
-	<<if $activeSlave.bellyPreg >= 300000>>
-		run your hands across $his squirming brood,
-	<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
-		stroke $his pregnant belly,
-	<<elseif $activeSlave.belly >= 5000>>
-		caress the curve of $his _belly belly,
-	<</if>>
-	and bring $him to climax again and again. After a final frantic orgasm together in $his
-	<<if canDoVaginal($activeSlave)>>
-		pussy
-	<<else>>
-		anus
-	<</if>>
-	$he <<if canSee($activeSlave)>>looks<<else>>gazes sightlessly<</if>> up at you with @@.hotpink;adoration@@ and a new @@.mediumaquamarine;trust@@ in $his young <<= WrittenMaster($activeSlave)>>.
-	<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
+		As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing $him into you arms, running the tips of your fingers through $his $activeSlave.hColor hair, and looking into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years your senior $he is<<else>>$He seems to feel the intensity of your gaze despite $his sightless eyes and blushes girlishly, as if forgetting how many years your senior $he is<</if>>. In lieu of words, you lift $his chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered $his wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to $his role as a sex slave in response to your unexpected intimacy. Instead, you
+		<<if $activeSlave.belly >= 300000>>
+			help $him to $his feet and guide $him to bed, aiding the <<if $activeSlave.bellyPreg >= 3000>>child-laden<<else>>tremendously swollen<</if>> older $woman onto the sheets before gently mounting $him.
+		<<else>>
+			<<if $activeSlave.belly >= 5000>>carefully <</if>>lift $him up from $his low position beneath you and carry $him to bed, laying the flushed older $woman down on the sheets before gently positioning yourself on top of $him.
+		<</if>>
+		Together, the two of you make fiercely intimate love, while you whisper romantic reassurances into $his ear, nip at $his neck,
+		<<if $activeSlave.bellyPreg >= 300000>>
+			run your hands across $his squirming brood,
+		<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
+			stroke $his pregnant belly,
+		<<elseif $activeSlave.belly >= 5000>>
+			caress the curve of $his _belly belly,
+		<</if>>
+		and bring $him to climax again and again. After a final frantic orgasm together in $his
+		<<if canDoVaginal($activeSlave)>>
+			pussy
+		<<else>>
+			anus
+		<</if>>
+		$he <<if canSee($activeSlave)>>looks<<else>>gazes sightlessly<</if>> up at you with @@.hotpink;adoration@@ and a new @@.mediumaquamarine;trust@@ in $his young <<= WrittenMaster($activeSlave)>>.
+		<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
+		<<if canDoVaginal($activeSlave)>>
+			<<= VaginalVCheck()>>
+		<<else>>
+			<<= AnalVCheck()>>
+		<</if>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <br><<link "Cruelly torment $him about the age difference">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	As you close in on $activeSlave.slaveName predatorily, $his face blanches with visible regret at $his prior candidness. By the time you have $his bent over
-	<<if $activeSlave.belly >= 300000>>
-		$his _belly belly
-	<<else>>
-		your desk
-	<</if>>
-	and begun spanking $his
-	<<if $activeSlave.butt > 12>>
-		absurd ass,
-	<<elseif $activeSlave.butt > 6>>
-		massive behind,
-	<<elseif $activeSlave.butt > 3>>
-		bountiful bottom,
-	<<else>>
-		cute ass,
-	<</if>>
-	$he seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush one of $his ears, $he flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about $his sexual submission and subservience to so young a <<= WrittenMaster($activeSlave)>>, $he begins to sob quietly
-	<<if $activeSlave.belly >= 300000>>
-		<<if $activeSlave.boobs > 600>>
-			into $his breasts.
+		As you close in on $activeSlave.slaveName predatorily, $his face blanches with visible regret at $his prior candidness. By the time you have $his bent over
+		<<if $activeSlave.belly >= 300000>>
+			$his _belly belly
 		<<else>>
-			into $his hands.
+			your desk
 		<</if>>
-	<<else>>
-		against the hard surface of your desk.
-	<</if>>
-	<br><br>
-	By the time you deign to <<if $PC.dick == 0>>don a strap-on and <</if>>mount $his ass, $he seems catatonic at the revelation that $his body is owned by a cruel <<= WrittenMaster($activeSlave)>>, nearly half $his age. Even when you accompany each brutal thrust with a harsh spank and a harsher jab at the dearth in years between the two of you, $he merely winces at the
-	<<if canDoVaginal($activeSlave)>>
-		force
-	<<else>>
-		anal pain
-	<</if>>
-	of your coupling. Judging by the empty look in $his eyes that persists past $his dismissal from your office, $he might @@.gold;not feel any better@@ about the age difference but you've definitely @@.hotpink;fucked $him into compliance.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.trust -= 4>>
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
-<<if isFertile($activeSlave)>>
-<br><<link "Give $him an afternoon off for some quality time with a local Frat House">>
-	<<EventNameDelink $activeSlave>>
-	<<set _clothesTemp = $activeSlave.clothes, $activeSlave.clothes = "no clothing">>
-	<<replace "#artFrame">>
-		/* 000-250-006 */
-		<<if $seeImages == 1>>
-			<<if $imageChoice == 1>>
-				<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+		and begun spanking $his
+		<<if $activeSlave.butt > 12>>
+			absurd ass,
+		<<elseif $activeSlave.butt > 6>>
+			massive behind,
+		<<elseif $activeSlave.butt > 3>>
+			bountiful bottom,
+		<<else>>
+			cute ass,
+		<</if>>
+		$he seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush one of $his ears, $he flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about $his sexual submission and subservience to so young a <<= WrittenMaster($activeSlave)>>, $he begins to sob quietly
+		<<if $activeSlave.belly >= 300000>>
+			<<if $activeSlave.boobs > 600>>
+				into $his breasts.
 			<<else>>
-				<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+				into $his hands.
 			<</if>>
+		<<else>>
+			against the hard surface of your desk.
 		<</if>>
-		/* 000-250-006 */
-	<</replace>>
-	<<set $activeSlave.clothes = _clothesTemp>>
-	<<replace "#result">>
-	You direct $assistantName to clear $activeSlave.slaveName's schedule and to find a local Frat House willing to 'host' a $woman of $his age and experience. Perhaps a group of virile college boys running a train on $activeSlave.slaveName might accustom $him to younger sexual partners. When $activeSlave.slaveName leaves the penthouse, $he's dressed up to look like a frumpy old world MILF and is clearly skeptical about your age-play therapy.
-	<br><br>
-	$activeSlave.slaveName returns to the penthouse naked, disheveled, and absolutely covered in a thick coating of drying cum. Despite $his appearance, however, $he is practically beaming with happiness. It seems young cock agrees with $him, and by the state of $his
-	<<if $activeSlave.mpreg == 1>>
-		cum-drenched asshole
-	<<else>>
-		messy pussy
-	<</if>>
-	$his youthful partners particularly enjoyed filling $him with their potent seed. Unsurprisingly, at a routine check up later that week, $activeSlave.slaveName joyfully discovers that $he was impregnated during $his Frat House excursion. It seems that being bred by a bunch of horny college boys has eliminated $his prior worries about the importance of age and also caused $him to @@.lightcoral;fetishize impregnation.@@ @@.hotpink;$He has become more submissive to you@@ for giving $him the means to broaden $his sexual horizons.
-	<<set $activeSlave.devotion += 4, $activeSlave.preg = 1, $activeSlave.pregWeek = 1, $activeSlave.pregKnown = 1>>
-	<<set $activeSlave.pregType = setPregType($activeSlave)>>
-	<<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, 1)>>
-	<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 5>>
-	<<if $activeSlave.mpreg == 1>>
-		<<set $activeSlave.counter.anal += 10, $analTotal += 10>>
-		<<if $activeSlave.anus == 0>>
-			<<set $activeSlave.anus++>>
+		<br><br>
+		By the time you deign to <<if $PC.dick == 0>>don a strap-on and <</if>>mount $his ass, $he seems catatonic at the revelation that $his body is owned by a cruel <<= WrittenMaster($activeSlave)>>, nearly half $his age. Even when you accompany each brutal thrust with a harsh spank and a harsher jab at the dearth in years between the two of you, $he merely winces at the
+		<<if canDoVaginal($activeSlave)>>
+			force
+		<<else>>
+			anal pain
 		<</if>>
-	<<else>>
-		<<set $activeSlave.counter.vaginal += 10, $vaginalTotal += 10>>
-		<<if $activeSlave.vagina == 0>>
-			<<set $activeSlave.vagina++>>
+		of your coupling. Judging by the empty look in $his eyes that persists past $his dismissal from your office, $he might @@.gold;not feel any better@@ about the age difference but you've definitely @@.hotpink;fucked $him into compliance.@@
+		<<set $activeSlave.devotion += 4, $activeSlave.trust -= 4>>
+		<<if canDoVaginal($activeSlave)>>
+			<<= VaginalVCheck()>>
+		<<else>>
+			<<= AnalVCheck()>>
 		<</if>>
-	<</if>>
 	<</replace>>
-<</link>> //This option will render $activeSlave.slaveName pregnant//<<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> // and take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //and take $his anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
+<<if isFertile($activeSlave)>>
+	<br><<link "Give $him an afternoon off for some quality time with a local Frat House">>
+		<<EventNameDelink $activeSlave>>
+		<<set _clothesTemp = $activeSlave.clothes, $activeSlave.clothes = "no clothing">>
+		<<replace "#artFrame">>
+			/* 000-250-006 */
+			<<if $seeImages == 1>>
+				<<if $imageChoice == 1>>
+					<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+				<<else>>
+					<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+				<</if>>
+			<</if>>
+			/* 000-250-006 */
+		<</replace>>
+		<<set $activeSlave.clothes = _clothesTemp>>
+		<<replace "#result">>
+			You direct $assistantName to clear $activeSlave.slaveName's schedule and to find a local Frat House willing to 'host' a $woman of $his age and experience. Perhaps a group of virile college boys running a train on $activeSlave.slaveName might accustom $him to younger sexual partners. When $activeSlave.slaveName leaves the penthouse, $he's dressed up to look like a frumpy old world MILF and is clearly skeptical about your age-play therapy.
+			<br><br>
+			$activeSlave.slaveName returns to the penthouse naked, disheveled, and absolutely covered in a thick coating of drying cum. Despite $his appearance, however, $he is practically beaming with happiness. It seems young cock agrees with $him, and by the state of $his
+			<<if $activeSlave.mpreg == 1>>
+				cum-drenched asshole
+			<<else>>
+				messy pussy
+			<</if>>
+			$his youthful partners particularly enjoyed filling $him with their potent seed. Unsurprisingly, at a routine check up later that week, $activeSlave.slaveName joyfully discovers that $he was impregnated during $his Frat House excursion. It seems that being bred by a bunch of horny college boys has eliminated $his prior worries about the importance of age and also caused $him to @@.lightcoral;fetishize impregnation.@@ @@.hotpink;$He has become more submissive to you@@ for giving $him the means to broaden $his sexual horizons.
+			<<set $activeSlave.devotion += 4, $activeSlave.preg = 1, $activeSlave.pregWeek = 1, $activeSlave.pregKnown = 1>>
+			<<set $activeSlave.pregType = setPregType($activeSlave)>>
+			<<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, 1)>>
+			<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 5>>
+			<<if $activeSlave.mpreg == 1>>
+				<<set $activeSlave.counter.anal += 10, $analTotal += 10>>
+				<<if $activeSlave.anus == 0>>
+					<<set $activeSlave.anus++>>
+				<</if>>
+			<<else>>
+				<<set $activeSlave.counter.vaginal += 10, $vaginalTotal += 10>>
+				<<if $activeSlave.vagina == 0>>
+					<<set $activeSlave.vagina++>>
+				<</if>>
+			<</if>>
+		<</replace>>
+	<</link>> //This option will render $activeSlave.slaveName pregnant//<<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> // and take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //and take $his anal virginity//<</if>>
 <</if>>
 
 <<case "old PC age difference">>
@@ -19501,240 +19507,240 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Gently acclimate $him to the age difference with some lovemaking">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing $him into you arms, running the tips of your fingers through $his $activeSlave.hColor hair, and looking into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years $his senior you are<<else>>$He seems to feel the intensity of your gaze despite $his sightless eyes and blushes girlishly, as if forgetting how many years $his senior you are<</if>>. In lieu of words, you lift $his chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered $his wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to $his role as a sex slave in response to your unexpected intimacy.
-	Instead, you
-	<<if $activeSlave.belly >= 300000>>
-		help $him to $his feet and guide $him to bed, aiding the
-		<<if $activeSlave.physicalAge <= 3>>
-			<<if $activeSlave.bellyPreg >= 3000>>
-				bursting at the seams with life
-			<<else>>
-				nearly circular
-			<</if>>
-			little $girl
-		<<elseif $activeSlave.physicalAge < 13>>
-			<<if $activeSlave.bellyPreg >= 3000>>
-				poor overfilled and ready to pop
+		As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing $him into you arms, running the tips of your fingers through $his $activeSlave.hColor hair, and looking into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years $his senior you are<<else>>$He seems to feel the intensity of your gaze despite $his sightless eyes and blushes girlishly, as if forgetting how many years $his senior you are<</if>>. In lieu of words, you lift $his chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered $his wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to $his role as a sex slave in response to your unexpected intimacy.
+		Instead, you
+		<<if $activeSlave.belly >= 300000>>
+			help $him to $his feet and guide $him to bed, aiding the
+			<<if $activeSlave.physicalAge <= 3>>
+				<<if $activeSlave.bellyPreg >= 3000>>
+					bursting at the seams with life
+				<<else>>
+					nearly circular
+				<</if>>
+				little $girl
+			<<elseif $activeSlave.physicalAge < 13>>
+				<<if $activeSlave.bellyPreg >= 3000>>
+					poor overfilled and ready to pop
+				<<else>>
+					tremendously swollen
+				<</if>>
+				$girl
+			<<elseif $activeSlave.physicalAge < 18>>
+				<<if $activeSlave.bellyPreg >= 3000>>
+					child-filled
+				<<else>>
+					tremendously swollen
+				<</if>>
+				teen
 			<<else>>
-				tremendously swollen
+				<<if $activeSlave.bellyPreg >= 3000>>
+					child-laden
+				<<else>>
+					tremendously swollen
+				<</if>>
+				young lady
 			<</if>>
-			$girl
-		<<elseif $activeSlave.physicalAge < 18>>
-			<<if $activeSlave.bellyPreg >= 3000>>
-				child-filled
+			onto the sheets before gently mounting $him.
+		<<else>>
+			<<if $activeSlave.belly >= 5000>>carefully <</if>>lift $him up from $his low position beneath you and carry $him to bed, laying the flushed
+			<<if $activeSlave.physicalAge <= 3>>
+				little $girl
+			<<elseif $activeSlave.physicalAge < 13>>
+				$girl
+			<<elseif $activeSlave.physicalAge < 18>>
+				teen
 			<<else>>
-				tremendously swollen
+				young lady
 			<</if>>
-			teen
+			down on the sheets before gently positioning yourself on top of $him.
+		<</if>>
+		Together, the two of you make fiercely intimate love, while you whisper romantic reassurances into $his ear, nip at $his neck,
+		<<if $activeSlave.bellyPreg >= 300000>>
+			run your hands across $his squirming brood,
+		<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
+			stroke $his pregnant belly,
+		<<elseif $activeSlave.belly >= 5000>>
+			caress the curve of $his _belly belly,
+		<</if>>
+		and bring $him to climax again and again. After a final frantic orgasm together in $his
+		<<if canDoVaginal($activeSlave)>>
+			pussy
 		<<else>>
-			<<if $activeSlave.bellyPreg >= 3000>>
-				child-laden
-			<<else>>
-				tremendously swollen
-			<</if>>
-			young lady
+			anus
 		<</if>>
-		onto the sheets before gently mounting $him.
-	<<else>>
-		<<if $activeSlave.belly >= 5000>>carefully <</if>>lift $him up from $his low position beneath you and carry $him to bed, laying the flushed
-		<<if $activeSlave.physicalAge <= 3>>
-			little $girl
-		<<elseif $activeSlave.physicalAge < 13>>
-			$girl
-		<<elseif $activeSlave.physicalAge < 18>>
-			teen
+		$he <<if canSee($activeSlave)>>looks<<else>>gazes sightlessly<</if>> up at you with @@.hotpink;adoration@@ and a new @@.mediumaquamarine;trust@@ in $his aged <<= WrittenMaster($activeSlave)>>.
+		<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
+		<<if canDoVaginal($activeSlave)>>
+			<<= VaginalVCheck()>>
 		<<else>>
-			young lady
+			<<= AnalVCheck()>>
 		<</if>>
-		down on the sheets before gently positioning yourself on top of $him.
-	<</if>>
-	Together, the two of you make fiercely intimate love, while you whisper romantic reassurances into $his ear, nip at $his neck,
-	<<if $activeSlave.bellyPreg >= 300000>>
-		run your hands across $his squirming brood,
-	<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
-		stroke $his pregnant belly,
-	<<elseif $activeSlave.belly >= 5000>>
-		caress the curve of $his _belly belly,
-	<</if>>
-	and bring $him to climax again and again. After a final frantic orgasm together in $his
-	<<if canDoVaginal($activeSlave)>>
-		pussy
-	<<else>>
-		anus
-	<</if>>
-	$he <<if canSee($activeSlave)>>looks<<else>>gazes sightlessly<</if>> up at you with @@.hotpink;adoration@@ and a new @@.mediumaquamarine;trust@@ in $his aged <<= WrittenMaster($activeSlave)>>.
-	<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <br><<link "Cruelly torment $him about the age difference">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	As you close in on $activeSlave.slaveName predatorily, $his face blanches with visible regret at $his prior candidness. By the time you have $him bent over
-	<<if $activeSlave.belly >= 300000>>
-		$his _belly belly
-	<<else>>
-		your desk
-	<</if>>
-	and begun spanking $his
-	<<if $activeSlave.butt > 12>>
-		absurd ass,
-	<<elseif $activeSlave.butt > 6>>
-		massive behind,
-	<<elseif $activeSlave.butt > 3>>
-		bountiful bottom,
-	<<else>>
-		cute ass,
-	<</if>>
-	$he seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush one of $his ears, $he flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about $his sexual submission and subservience to so old a <<= WrittenMaster($activeSlave)>>, $he begins to sob quietly
-	<<if $activeSlave.belly >= 300000>>
-		<<if $activeSlave.boobs > 600>>
-			into $his breasts.
+		As you close in on $activeSlave.slaveName predatorily, $his face blanches with visible regret at $his prior candidness. By the time you have $him bent over
+		<<if $activeSlave.belly >= 300000>>
+			$his _belly belly
 		<<else>>
-			into $his hands.
+			your desk
 		<</if>>
-	<<else>>
-		against the hard surface of your desk.
-	<</if>>
-	<br><br>
-	By the time you deign to <<if $PC.dick == 0>>don a strap-on and <</if>>mount $his ass, $he seems catatonic at the revelation that $his body is owned by so cruel an old <<Master>>. Even when you accompany each brutal thrust with a harsh spank and a harsh jab at the dearth in years between the two of you, $he merely winces at the
-	<<if canDoVaginal($activeSlave)>>
-		force
-	<<else>>
-		anal pain
-	<</if>>
-	of your coupling. Judging by the empty look in $his eyes that persists past $his dismissal from your office, $he might @@.gold;not feel any better@@ about the age difference but you've definitely @@.hotpink;fucked $him into compliance.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.trust -= 4>>
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
-<<if isFertile($activeSlave)>>
-<br><<link "Give $him an afternoon off for some quality time with a local retirement community">>
-	<<EventNameDelink $activeSlave>>
-	<<set _clothesTemp = $activeSlave.clothes, $activeSlave.clothes = "no clothing">>
-	<<replace "#artFrame">>
-		/* 000-250-006 */
-		<<if $seeImages == 1>>
-			<<if $imageChoice == 1>>
-				<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+		and begun spanking $his
+		<<if $activeSlave.butt > 12>>
+			absurd ass,
+		<<elseif $activeSlave.butt > 6>>
+			massive behind,
+		<<elseif $activeSlave.butt > 3>>
+			bountiful bottom,
+		<<else>>
+			cute ass,
+		<</if>>
+		$he seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush one of $his ears, $he flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about $his sexual submission and subservience to so old a <<= WrittenMaster($activeSlave)>>, $he begins to sob quietly
+		<<if $activeSlave.belly >= 300000>>
+			<<if $activeSlave.boobs > 600>>
+				into $his breasts.
 			<<else>>
-				<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+				into $his hands.
 			<</if>>
+		<<else>>
+			against the hard surface of your desk.
 		<</if>>
-		/* 000-250-006 */
-	<</replace>>
-	<<set $activeSlave.clothes = _clothesTemp>>
-	<<replace "#result">>
-	You direct $assistantName to clear $activeSlave.slaveName's schedule and to find a local retirement community willing to 'host' a $girl of $his age. Perhaps a group of venerable graybeards running a train on $activeSlave.slaveName might accustom $him to older sexual partners. When $activeSlave.slaveName leaves the penthouse, $he's dressed up to look like an old world schoolgirl and is clearly skeptical about your age-play therapy.
-	<br><br>
-	$activeSlave.slaveName returns to the penthouse naked, disheveled, and absolutely covered in a thick coating of drying cum. Despite $his appearance, however, $he is practically beaming with happiness. It seems a good fucking from experienced older men agrees with $him, and by the state of $his
-	<<if $activeSlave.mpreg == 1>>
-		cum-drenched asshole
-	<<else>>
-		messy pussy
-	<</if>>
-	$his aged partners particularly enjoyed filling $him with their still potent seed. Unsurprisingly, at a routine check up later that week, $activeSlave.slaveName joyfully discovers that $he was impregnated during $his excursion. It seems that being bred by a bunch of horny old men has eliminated $his prior worries about the importance of age and also caused $him to @@.lightcoral;fetishize impregnation.@@ @@.hotpink;$He has become more submissive to you@@ for giving $him the means to broaden $his sexual horizons.
-	<<set $activeSlave.devotion += 4, $activeSlave.preg = 1, $activeSlave.pregWeek = 1, $activeSlave.pregKnown = 1>>
-	<<set $activeSlave.pregType = setPregType($activeSlave)>>
-	<<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, 1)>>
-	<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 5>>
-	<<if $activeSlave.mpreg == 1>>
-		<<set $activeSlave.counter.anal += 10, $analTotal += 10>>
-		<<if $activeSlave.anus == 0>>
-			<<set $activeSlave.anus++>>
+		<br><br>
+		By the time you deign to <<if $PC.dick == 0>>don a strap-on and <</if>>mount $his ass, $he seems catatonic at the revelation that $his body is owned by so cruel an old <<Master>>. Even when you accompany each brutal thrust with a harsh spank and a harsh jab at the dearth in years between the two of you, $he merely winces at the
+		<<if canDoVaginal($activeSlave)>>
+			force
+		<<else>>
+			anal pain
 		<</if>>
-	<<else>>
-		<<set $activeSlave.counter.vaginal += 10, $vaginalTotal += 10>>
-		<<if $activeSlave.vagina == 0>>
-			<<set $activeSlave.vagina++>>
+		of your coupling. Judging by the empty look in $his eyes that persists past $his dismissal from your office, $he might @@.gold;not feel any better@@ about the age difference but you've definitely @@.hotpink;fucked $him into compliance.@@
+		<<set $activeSlave.devotion += 4, $activeSlave.trust -= 4>>
+		<<if canDoVaginal($activeSlave)>>
+			<<= VaginalVCheck()>>
+		<<else>>
+			<<= AnalVCheck()>>
 		<</if>>
-	<</if>>
-	<</replace>>
-<</link>> //This option will render $activeSlave.slaveName pregnant//<<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> // and take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //and take $his anal virginity//<</if>>
-<</if>>
-
-<<case "devoted educated slave">>
-
-<<link "Have a conversation with $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You linger in the hallway a while with $activeSlave.slaveName and enjoy a brief but verbose discussion. It's clear $he hasn't had the chance to engage in any meaningful conversations in a while, so $he relishes the opportunity energetically.
-	<br><br>
-	Though the two of you only touch upon a handful of sophisticated topics, by the time you leave $him to tend to other matters, $activeSlave.slaveName is beaming happily as $he continues on to $his duties for the day. $He @@.mediumaquamarine;trusts you more@@ for taking the time to engage with $him intellectually.
-	<<set $activeSlave.trust += 4>>
 	<</replace>>
-<</link>>
-<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Stimulate $his mind and body">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You find a comfortable seat to sit on <<if $PC.dick == 0>>,don a strap-on,<</if>>as $he seats $his
-	<<if $activeSlave.butt < 2>>
-		narrow
-	<<elseif $activeSlave.butt < 5>>
-		average
-	<<elseif $activeSlave.butt < 8>>
-		plump
-	<<elseif $activeSlave.butt < 12>>
-		impressive
-	<<else>>
-		mind-blowing
-	<</if>>
-	ass on your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> and rides you. While your cock plumbs the depths of $his
-	<<if canDoVaginal($activeSlave)>>
-		pussy,
-	<<else>>
-		butt,
-	<</if>>
-	the two of you engage in a casual debate over a number of topics of sophistry.
-	<br><br>
-	At the crux of one of $his concluding arguments, the intense pleasure from the prolonged
-	<<if canDoVaginal($activeSlave)>>
-		fucking
-	<<else>>
-		buttfucking
-	<</if>>
-	pushes $him over the edge into orgasm, robbing the thrust of $his defense of any gravitas it once had. $He doesn't seem to mind however, choosing to instead wrap up $his remarks by @@.hotpink;blowing you a kiss.@@
-	<<set $activeSlave.devotion += 4>>
-	<<if canDoVaginal($activeSlave)>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<= AnalVCheck()>>
-	<</if>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
+<<if isFertile($activeSlave)>>
+	<br><<link "Give $him an afternoon off for some quality time with a local retirement community">>
+		<<EventNameDelink $activeSlave>>
+		<<set _clothesTemp = $activeSlave.clothes, $activeSlave.clothes = "no clothing">>
+		<<replace "#artFrame">>
+			/* 000-250-006 */
+			<<if $seeImages == 1>>
+				<<if $imageChoice == 1>>
+					<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+				<<else>>
+					<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+				<</if>>
+			<</if>>
+			/* 000-250-006 */
+		<</replace>>
+		<<set $activeSlave.clothes = _clothesTemp>>
+		<<replace "#result">>
+			You direct $assistantName to clear $activeSlave.slaveName's schedule and to find a local retirement community willing to 'host' a $girl of $his age. Perhaps a group of venerable graybeards running a train on $activeSlave.slaveName might accustom $him to older sexual partners. When $activeSlave.slaveName leaves the penthouse, $he's dressed up to look like an old world schoolgirl and is clearly skeptical about your age-play therapy.
+			<br><br>
+			$activeSlave.slaveName returns to the penthouse naked, disheveled, and absolutely covered in a thick coating of drying cum. Despite $his appearance, however, $he is practically beaming with happiness. It seems a good fucking from experienced older men agrees with $him, and by the state of $his
+			<<if $activeSlave.mpreg == 1>>
+				cum-drenched asshole
+			<<else>>
+				messy pussy
+			<</if>>
+			$his aged partners particularly enjoyed filling $him with their still potent seed. Unsurprisingly, at a routine check up later that week, $activeSlave.slaveName joyfully discovers that $he was impregnated during $his excursion. It seems that being bred by a bunch of horny old men has eliminated $his prior worries about the importance of age and also caused $him to @@.lightcoral;fetishize impregnation.@@ @@.hotpink;$He has become more submissive to you@@ for giving $him the means to broaden $his sexual horizons.
+			<<set $activeSlave.devotion += 4, $activeSlave.preg = 1, $activeSlave.pregWeek = 1, $activeSlave.pregKnown = 1>>
+			<<set $activeSlave.pregType = setPregType($activeSlave)>>
+			<<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, 1)>>
+			<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 5>>
+			<<if $activeSlave.mpreg == 1>>
+				<<set $activeSlave.counter.anal += 10, $analTotal += 10>>
+				<<if $activeSlave.anus == 0>>
+					<<set $activeSlave.anus++>>
+				<</if>>
+			<<else>>
+				<<set $activeSlave.counter.vaginal += 10, $vaginalTotal += 10>>
+				<<if $activeSlave.vagina == 0>>
+					<<set $activeSlave.vagina++>>
+				<</if>>
+			<</if>>
+		<</replace>>
+	<</link>> //This option will render $activeSlave.slaveName pregnant//<<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> // and take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //and take $his anal virginity//<</if>>
 <</if>>
-<<if $arcologies[0].FSDegradationist !== "unset">>
-<br><<link "A public blowbang will show $him what a Degradationist arcology thinks about 'educated' slaves">>
+
+<<case "devoted educated slave">>
+
+<<link "Have a conversation with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him $he'll get fucked in the mouth until $he either gets over the idea of being special for $his education or until all $his learning is fucked out of $his head. You drag the protesting $activeSlave.slaveName out into a public plaza, restrain $him in stocks so that $his mouth is available, and inform the gathering crowd of citizens that this particular slave thinks $himself more than a fuckhole because of some fancy 'education'.
-	<br><br>
-	When you return later in the evening, it becomes abundantly clear that your citizenry taught $activeSlave.slaveName a harsh lesson about a slave's place in $arcologies[0].name. $activeSlave.slaveName has certainly @@.green;learned to keep any pretentious thoughts about $his education in $his head.@@ $He did, however, @@.red;have quite a rough time@@ sucking all those dicks<<if $activeSlave.skill.oral <= 30>>, though $he did learn about sucking dick, so $he can't claim enslavement isn't educational.<<= SkillIncrease.Oral($activeSlave, 10)>><<else>>.<</if>> And last of all, you and $activeSlave.slaveName did make @@.green;quite a good impression@@ today, though for widely differing reasons.
-	<<set $activeSlave.health -= 10>>
-	<<set _blowBang = random(65,80)>>
-	<<set $activeSlave.counter.oral += _blowBang, $activeSlave.counter.publicUse += _blowBang, $oralTotal += _blowBang>>
-	<<run repX(500, "event", $activeSlave)>>
+		You linger in the hallway a while with $activeSlave.slaveName and enjoy a brief but verbose discussion. It's clear $he hasn't had the chance to engage in any meaningful conversations in a while, so $he relishes the opportunity energetically.
+		<br><br>
+		Though the two of you only touch upon a handful of sophisticated topics, by the time you leave $him to tend to other matters, $activeSlave.slaveName is beaming happily as $he continues on to $his duties for the day. $He @@.mediumaquamarine;trusts you more@@ for taking the time to engage with $him intellectually.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
+<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
+	<br><<link "Stimulate $his mind and body">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You find a comfortable seat to sit on <<if $PC.dick == 0>>,don a strap-on,<</if>>as $he seats $his
+			<<if $activeSlave.butt < 2>>
+				narrow
+			<<elseif $activeSlave.butt < 5>>
+				average
+			<<elseif $activeSlave.butt < 8>>
+				plump
+			<<elseif $activeSlave.butt < 12>>
+				impressive
+			<<else>>
+				mind-blowing
+			<</if>>
+			ass on your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> and rides you. While your cock plumbs the depths of $his
+			<<if canDoVaginal($activeSlave)>>
+				pussy,
+			<<else>>
+				butt,
+			<</if>>
+			the two of you engage in a casual debate over a number of topics of sophistry.
+			<br><br>
+			At the crux of one of $his concluding arguments, the intense pleasure from the prolonged
+			<<if canDoVaginal($activeSlave)>>
+				fucking
+			<<else>>
+				buttfucking
+			<</if>>
+			pushes $him over the edge into orgasm, robbing the thrust of $his defense of any gravitas it once had. $He doesn't seem to mind however, choosing to instead wrap up $his remarks by @@.hotpink;blowing you a kiss.@@
+			<<set $activeSlave.devotion += 4>>
+			<<if canDoVaginal($activeSlave)>>
+				<<= VaginalVCheck()>>
+			<<else>>
+				<<= AnalVCheck()>>
+			<</if>>
+		<</replace>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
+<</if>>
+<<if $arcologies[0].FSDegradationist !== "unset">>
+	<br><<link "A public blowbang will show $him what a Degradationist arcology thinks about 'educated' slaves">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him $he'll get fucked in the mouth until $he either gets over the idea of being special for $his education or until all $his learning is fucked out of $his head. You drag the protesting $activeSlave.slaveName out into a public plaza, restrain $him in stocks so that $his mouth is available, and inform the gathering crowd of citizens that this particular slave thinks $himself more than a fuckhole because of some fancy 'education'.
+			<br><br>
+			When you return later in the evening, it becomes abundantly clear that your citizenry taught $activeSlave.slaveName a harsh lesson about a slave's place in $arcologies[0].name. $activeSlave.slaveName has certainly @@.green;learned to keep any pretentious thoughts about $his education in $his head.@@ $He did, however, @@.red;have quite a rough time@@ sucking all those dicks<<if $activeSlave.skill.oral <= 30>>, though $he did learn about sucking dick, so $he can't claim enslavement isn't educational.<<= SkillIncrease.Oral($activeSlave, 10)>><<else>>.<</if>> And last of all, you and $activeSlave.slaveName did make @@.green;quite a good impression@@ today, though for widely differing reasons.
+			<<set $activeSlave.health -= 10>>
+			<<set _blowBang = random(65,80)>>
+			<<set $activeSlave.counter.oral += _blowBang, $activeSlave.counter.publicUse += _blowBang, $oralTotal += _blowBang>>
+			<<run repX(500, "event", $activeSlave)>>
+		<</replace>>
+	<</link>>
 <<elseif $arcologies[0].FSPaternalist !== "unset">>
-<br><<link "Allow $him to audit some advanced classes at Paternalist slave schools">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him to take the day off for a trip to audit classes at $arcologies[0].name's most renowned Paternalist slave schools. $activeSlave.slaveName is shocked into a reverie by your words before running to wrap $his arms around you in a tight hug. When $he eventually untangles $himself from you, $he races off to get ready for $his day of intellectualism while you direct $assistantName to make the necessary arrangements.
-	<br><br>
-	When $activeSlave.slaveName returns, $he looks exhausted but happier than you've ever seen $him. It seems $he benefited greatly from $arcologies[0].name's Paternalist institutions, and has grown to @@.mediumaquamarine;trust you more@@ while also @@.hotpink;deepening $his acceptance of slavery.@@
-	<<set $activeSlave.trust += 4, $activeSlave.devotion += 4>>
-	<</replace>>
-<</link>>
+	<br><<link "Allow $him to audit some advanced classes at Paternalist slave schools">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him to take the day off for a trip to audit classes at $arcologies[0].name's most renowned Paternalist slave schools. $activeSlave.slaveName is shocked into a reverie by your words before running to wrap $his arms around you in a tight hug. When $he eventually untangles $himself from you, $he races off to get ready for $his day of intellectualism while you direct $assistantName to make the necessary arrangements.
+			<br><br>
+			When $activeSlave.slaveName returns, $he looks exhausted but happier than you've ever seen $him. It seems $he benefited greatly from $arcologies[0].name's Paternalist institutions, and has grown to @@.mediumaquamarine;trust you more@@ while also @@.hotpink;deepening $his acceptance of slavery.@@
+			<<set $activeSlave.trust += 4, $activeSlave.devotion += 4>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "nice guys">>
@@ -19742,109 +19748,109 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Let the boys be">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The circumstances are somewhat novel, but are ultimately not worthy of your time and attention. You do, however, direct $assistantName to deploy more public servants to the area in a bid to direct the tourists' attention away from $activeSlave.slaveName. In time, the boys lose interest and wander off to leer at the other slaves suddenly populating the area. $activeSlave.slaveName @@.mediumaquamarine;trusts@@ you more for disentangling $him from a potentially awkward situation.
-	<<set $activeSlave.trust += 5>>
+		The circumstances are somewhat novel, but are ultimately not worthy of your time and attention. You do, however, direct $assistantName to deploy more public servants to the area in a bid to direct the tourists' attention away from $activeSlave.slaveName. In time, the boys lose interest and wander off to leer at the other slaves suddenly populating the area. $activeSlave.slaveName @@.mediumaquamarine;trusts@@ you more for disentangling $him from a potentially awkward situation.
+		<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
 <br><<link "Educate them in the role of a public servant">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You instruct $assistantName to have $activeSlave.slaveName give the tourists a real Free Cities welcome, as befitting one of your public servants.
-	<br><br>
-	Some time later, you return to the video feed to see $activeSlave.slaveName giving each of the boys a hug goodbye. The boys reciprocate $his affection warmly, even as they try to ignore the fact that $his $activeSlave.skin face and chest are spattered with their cum. $activeSlave.slaveName has certainly given the tourists a crash course in Free Cities culture and @@.green;improved your reputation@@ at the same time.
-	<<set $activeSlave.counter.oral += 6, $oralTotal += 6>>
-	<<run repX(1250, "event", $activeSlave)>>
+		You instruct $assistantName to have $activeSlave.slaveName give the tourists a real Free Cities welcome, as befitting one of your public servants.
+		<br><br>
+		Some time later, you return to the video feed to see $activeSlave.slaveName giving each of the boys a hug goodbye. The boys reciprocate $his affection warmly, even as they try to ignore the fact that $his $activeSlave.skin face and chest are spattered with their cum. $activeSlave.slaveName has certainly given the tourists a crash course in Free Cities culture and @@.green;improved your reputation@@ at the same time.
+		<<set $activeSlave.counter.oral += 6, $oralTotal += 6>>
+		<<run repX(1250, "event", $activeSlave)>>
 	<</replace>>
 <</link>>
 <<if (canDoVaginal($activeSlave) && $activeSlave.vagina != 0) || (canDoAnal($activeSlave) && $activeSlave.anus != 0)>>
-<br><<link "Instruct the slave to offer sex to the highest bidder">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You instruct $assistantName to have $activeSlave.slaveName offer $his body to the highest bidder among the eager tourists. Though the boys are initially taken aback by $his forwardness, a rapid yet red-faced bidding war takes place. As soon as the winning bid is decided, $activeSlave.slaveName sinks to $his knees in front of the winner and unbuckles his pants, soon taking his hardening member deep into $his mouth.
-	<br><br>
-	Some time later, you return to the video feed to see
-	<<if $activeSlave.bellyPreg >= 750000>>
-		the lucky winner carefully taking $activeSlave.slaveName from behind as he gingerly caresses $his straining, squirming pregnancy.
-	<<elseif $activeSlave.belly >= 750000>>
-		the lucky winner taking $activeSlave.slaveName from behind with his arms wrapped as far around $his _belly middle as possible.
-	<<elseif $activeSlave.boobs > 25000>>
-		the lucky winner's head poking out from beneath pair of humongous breasts as $activeSlave.slaveName rides him.
-	<<elseif $activeSlave.bellyPreg >= 450000>>
-		the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his arms wrapped around $his _belly pregnant belly.
-	<<elseif $activeSlave.belly >= 450000>>
-		the lucky winner taking $activeSlave.slaveName roughly in missionary, his arms wrapped around $his massively distended belly.
-	<<elseif $activeSlave.weight > 190>>
-		the lucky winner's head poking out from beneath $activeSlave.slaveName's humongous belly as $he rides him.
-	<<elseif $activeSlave.butt > 10>>
-		the luck winner wrapping his arms around $activeSlave.slaveName's massive ass as he struggles to get deep enough into it to penetrate $him.
-	<<elseif $activeSlave.bellyFluid >= 5000>>
-		the lucky winner playfully jiggling $activeSlave.slaveName's <<print $activeSlave.inflationType>>-filled belly as $he rides him vigorously to give $his stomach that extra bounce for him.
-	<<elseif $activeSlave.clit >= 3>>
-		the lucky winner gazing down at the clit rubbing against his stomach as $activeSlave.slaveName rides him.
-	<<elseif $activeSlave.boobs > 5000>>
-		the lucky winner's head enveloped by a pair of massive breasts as $activeSlave.slaveName rides him.
-	<<elseif $activeSlave.belly >= 150000>>
-		<<if $activeSlave.bellyPreg > 0>>
-			the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands gently cradling $his _belly pregnant belly.
-		<<else>>
-			the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands massaging $his _belly swollen belly.
-		<</if>>
-	<<elseif $activeSlave.dick > 6>>
-		the lucky winner gazing down at the lengthy cock slapping against his stomach as $activeSlave.slaveName rides him.
-	<<elseif $activeSlave.weight > 130>>
-		the lucky winner groping $activeSlave.slaveName's jiggling body as $he gently rides him.
-	<<elseif $activeSlave.belly >= 1500>>
-		<<if $activeSlave.bellyPreg > 0>>
-			the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands cradling $his pregnant belly.
-		<<else>>
-			the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands massaging $his swollen belly.
-		<</if>>
-	<<elseif $activeSlave.dick > 3>>
-		the lucky winner gazing down at a cock slapping against his stomach as $activeSlave.slaveName rides him.
-	<<elseif $activeSlave.anus > 2>>
-		the lucky winner pounding ass like it's his last day in the Free Cities.
-	<<elseif $activeSlave.dick > 0>>
-		the lucky winner gingerly prodding the tiny cock slapping against his stomach as $activeSlave.slaveName rides him.
-	<<elseif $activeSlave.visualAge > 35>>
-		the lucky winner double checking with $activeSlave.slaveName that $he isn't his mother, even as $he rides his cock and gives him pointers on his lack of technique.
-	<<elseif $activeSlave.lips > 40>>
-		the lucky winner with a pair of plush lips wrapped around his cock, his hands gripping onto a $activeSlave.hColor-haired head for dear life as $activeSlave.slaveName sucks him dry.
-	<<elseif $activeSlave.face > 60>>
-		the lucky winner staring in awe at the beautiful face of $activeSlave.slaveName, as $he rides him tenderly.
-	<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
-		the lucky winner engaged in a lively debate with $activeSlave.slaveName as he takes $him from behind.
-	<<else>>
-		the lucky winner taking $activeSlave.slaveName in every position he can think of, which is amusingly not very many at all.
-	<</if>>
-	<br><br>
-	In the end, the boy sates his lust on $activeSlave.slaveName till he can't continue. His compatriots, having had their own voyeuristic fill, drag their overstimulated friend off and wander away in search of their accommodation.
-	<<if canDoVaginal($activeSlave)>>
-		<<set $activeSlave.counter.vaginal += 5, $vaginalTotal += 5, $activeSlave.counter.publicUse += 5>>
-		<<if canDoAnal($activeSlave)>>
-			<<set $activeSlave.counter.anal += 2, $analTotal += 2>>
-			<<set $activeSlave.counter.publicUse += 2>>
-			<<if $activeSlave.anus == 0>>
-				<<set $activeSlave.anus++>>
+	<br><<link "Instruct the slave to offer sex to the highest bidder">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You instruct $assistantName to have $activeSlave.slaveName offer $his body to the highest bidder among the eager tourists. Though the boys are initially taken aback by $his forwardness, a rapid yet red-faced bidding war takes place. As soon as the winning bid is decided, $activeSlave.slaveName sinks to $his knees in front of the winner and unbuckles his pants, soon taking his hardening member deep into $his mouth.
+			<br><br>
+			Some time later, you return to the video feed to see
+			<<if $activeSlave.bellyPreg >= 750000>>
+				the lucky winner carefully taking $activeSlave.slaveName from behind as he gingerly caresses $his straining, squirming pregnancy.
+			<<elseif $activeSlave.belly >= 750000>>
+				the lucky winner taking $activeSlave.slaveName from behind with his arms wrapped as far around $his _belly middle as possible.
+			<<elseif $activeSlave.boobs > 25000>>
+				the lucky winner's head poking out from beneath pair of humongous breasts as $activeSlave.slaveName rides him.
+			<<elseif $activeSlave.bellyPreg >= 450000>>
+				the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his arms wrapped around $his _belly pregnant belly.
+			<<elseif $activeSlave.belly >= 450000>>
+				the lucky winner taking $activeSlave.slaveName roughly in missionary, his arms wrapped around $his massively distended belly.
+			<<elseif $activeSlave.weight > 190>>
+				the lucky winner's head poking out from beneath $activeSlave.slaveName's humongous belly as $he rides him.
+			<<elseif $activeSlave.butt > 10>>
+				the luck winner wrapping his arms around $activeSlave.slaveName's massive ass as he struggles to get deep enough into it to penetrate $him.
+			<<elseif $activeSlave.bellyFluid >= 5000>>
+				the lucky winner playfully jiggling $activeSlave.slaveName's <<print $activeSlave.inflationType>>-filled belly as $he rides him vigorously to give $his stomach that extra bounce for him.
+			<<elseif $activeSlave.clit >= 3>>
+				the lucky winner gazing down at the clit rubbing against his stomach as $activeSlave.slaveName rides him.
+			<<elseif $activeSlave.boobs > 5000>>
+				the lucky winner's head enveloped by a pair of massive breasts as $activeSlave.slaveName rides him.
+			<<elseif $activeSlave.belly >= 150000>>
+				<<if $activeSlave.bellyPreg > 0>>
+					the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands gently cradling $his _belly pregnant belly.
+				<<else>>
+					the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands massaging $his _belly swollen belly.
+				<</if>>
+			<<elseif $activeSlave.dick > 6>>
+				the lucky winner gazing down at the lengthy cock slapping against his stomach as $activeSlave.slaveName rides him.
+			<<elseif $activeSlave.weight > 130>>
+				the lucky winner groping $activeSlave.slaveName's jiggling body as $he gently rides him.
+			<<elseif $activeSlave.belly >= 1500>>
+				<<if $activeSlave.bellyPreg > 0>>
+					the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands cradling $his pregnant belly.
+				<<else>>
+					the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands massaging $his swollen belly.
+				<</if>>
+			<<elseif $activeSlave.dick > 3>>
+				the lucky winner gazing down at a cock slapping against his stomach as $activeSlave.slaveName rides him.
+			<<elseif $activeSlave.anus > 2>>
+				the lucky winner pounding ass like it's his last day in the Free Cities.
+			<<elseif $activeSlave.dick > 0>>
+				the lucky winner gingerly prodding the tiny cock slapping against his stomach as $activeSlave.slaveName rides him.
+			<<elseif $activeSlave.visualAge > 35>>
+				the lucky winner double checking with $activeSlave.slaveName that $he isn't his mother, even as $he rides his cock and gives him pointers on his lack of technique.
+			<<elseif $activeSlave.lips > 40>>
+				the lucky winner with a pair of plush lips wrapped around his cock, his hands gripping onto a $activeSlave.hColor-haired head for dear life as $activeSlave.slaveName sucks him dry.
+			<<elseif $activeSlave.face > 60>>
+				the lucky winner staring in awe at the beautiful face of $activeSlave.slaveName, as $he rides him tenderly.
+			<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
+				the lucky winner engaged in a lively debate with $activeSlave.slaveName as he takes $him from behind.
+			<<else>>
+				the lucky winner taking $activeSlave.slaveName in every position he can think of, which is amusingly not very many at all.
 			<</if>>
-		<</if>>
-		<<if $activeSlave.vagina == 0>>
-			<<set $activeSlave.vagina++>>
-		<</if>>
-	<<else>>
-		<<set $activeSlave.counter.anal += 5, $analTotal += 5>>
-		<<set $activeSlave.counter.publicUse += 5>>
-		<<if $activeSlave.anus == 0>>
-			<<set $activeSlave.anus++>>
-		<</if>>
-	<</if>>
-	<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
-		<<= knockMeUp($activeSlave, 15, 2, 0, 1)>>
-	<</if>>
-	<<set $activeSlave.counter.oral += 2, $oralTotal += 2>>
-	<<run cashX(2000, "event", $activeSlave)>>
-	<<set $activeSlave.counter.publicUse += 2>>
-	<</replace>>
-<</link>>
+			<br><br>
+			In the end, the boy sates his lust on $activeSlave.slaveName till he can't continue. His compatriots, having had their own voyeuristic fill, drag their overstimulated friend off and wander away in search of their accommodation.
+			<<if canDoVaginal($activeSlave)>>
+				<<set $activeSlave.counter.vaginal += 5, $vaginalTotal += 5, $activeSlave.counter.publicUse += 5>>
+				<<if canDoAnal($activeSlave)>>
+					<<set $activeSlave.counter.anal += 2, $analTotal += 2>>
+					<<set $activeSlave.counter.publicUse += 2>>
+					<<if $activeSlave.anus == 0>>
+						<<set $activeSlave.anus++>>
+					<</if>>
+				<</if>>
+				<<if $activeSlave.vagina == 0>>
+					<<set $activeSlave.vagina++>>
+				<</if>>
+			<<else>>
+				<<set $activeSlave.counter.anal += 5, $analTotal += 5>>
+				<<set $activeSlave.counter.publicUse += 5>>
+				<<if $activeSlave.anus == 0>>
+					<<set $activeSlave.anus++>>
+				<</if>>
+			<</if>>
+			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
+				<<= knockMeUp($activeSlave, 15, 2, 0, 1)>>
+			<</if>>
+			<<set $activeSlave.counter.oral += 2, $oralTotal += 2>>
+			<<run cashX(2000, "event", $activeSlave)>>
+			<<set $activeSlave.counter.publicUse += 2>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "lazy evening">>
@@ -19852,63 +19858,63 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Enjoy some oral with an evening of wallscreen television">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	There are some things that never change, even after ascension to the high position of an arcology owner. One of these fixtures of life is the ability to enjoy a relaxing evening of wallscreen television and <<if $PC.dick == 1>>a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>some cunnilingus<</if>>. With $activeSlave.slaveName sequestered between your legs, you tune into your favorite Free Cities serial drama and <<if !canSee($activeSlave)>>audibly <</if>>widen your legs slightly as you sink back into the chair with a sigh of contentment. $He
-	<<if $activeSlave.belly >= 300000>>
-		gently leans onto $his _belly belly with $his arms steadying the mass
-	<<elseif $activeSlave.belly >= 5000>>
-		<<if $activeSlave.bellyPreg >= 3000>>
-			kneels carefully with an arm wrapped protectively around $his bump
+		There are some things that never change, even after ascension to the high position of an arcology owner. One of these fixtures of life is the ability to enjoy a relaxing evening of wallscreen television and <<if $PC.dick == 1>>a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>some cunnilingus<</if>>. With $activeSlave.slaveName sequestered between your legs, you tune into your favorite Free Cities serial drama and <<if !canSee($activeSlave)>>audibly <</if>>widen your legs slightly as you sink back into the chair with a sigh of contentment. $He
+		<<if $activeSlave.belly >= 300000>>
+			gently leans onto $his _belly belly with $his arms steadying the mass
+		<<elseif $activeSlave.belly >= 5000>>
+			<<if $activeSlave.bellyPreg >= 3000>>
+				kneels carefully with an arm wrapped protectively around $his bump
+			<<else>>
+				kneels carefully with an arm cradling $his _belly belly
+			<</if>>
 		<<else>>
-			kneels carefully with an arm cradling $his _belly belly
+			sinks to $his knees obediently with $his hands placed placidly on $his thighs
 		<</if>>
-	<<else>>
-		sinks to $his knees obediently with $his hands placed placidly on $his thighs
-	<</if>>
-	before putting $his mouth to work,
-	<<if $activeSlave.skill.oral >= 100>>
-		$his mastery at giving oral providing a wealth of pleasure.
-	<<elseif $activeSlave.skill.oral > 60>>
-		$his skills in oral providing ample pleasure.
-	<<else>>
-		$his mediocre oral skills providing some relief.
-	<</if>>
-	<<if $activeSlave.teeth == "pointy">>
-		Although most of your attention is focused on the intriguing drama unfolding on your wallscreen, you still feel the extreme care $he has to take to keep $his shark-like teeth clear of you.
-	<<elseif $activeSlave.lips > 40>>
-		$His huge lips are soft and pillowy against you.
-	<<elseif $activeSlave.teeth == "gapped">>
-		Although most of your attention is focused on the intriguing drama unfolding on your wallscreen, you can feel the slight hesitations as $he takes care to not pinch you between $his front teeth.
-	<<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>>
-		Although most of your attention is focused on the intriguing drama unfolding on your wallscreen, you can feel the slight hesitations as $he takes care to keep $his braces off you.
-	<</if>>
-	You have an enjoyable evening glued to your wallscreen, punctuated by the playful ruffling <<if $activeSlave.hLength > 1>>of $activeSlave.slaveName's $activeSlave.hColor hair<<else>>across $activeSlave.slaveName's scalp<</if>> and the occasional orgasm into $his waiting mouth. Though your experience was more stimulating than $hers, $activeSlave.slaveName enjoyed @@.hotpink;being used while you enjoyed yourself.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.oral += 1, $oralTotal += 1>>
+		before putting $his mouth to work,
+		<<if $activeSlave.skill.oral >= 100>>
+			$his mastery at giving oral providing a wealth of pleasure.
+		<<elseif $activeSlave.skill.oral > 60>>
+			$his skills in oral providing ample pleasure.
+		<<else>>
+			$his mediocre oral skills providing some relief.
+		<</if>>
+		<<if $activeSlave.teeth == "pointy">>
+			Although most of your attention is focused on the intriguing drama unfolding on your wallscreen, you still feel the extreme care $he has to take to keep $his shark-like teeth clear of you.
+		<<elseif $activeSlave.lips > 40>>
+			$His huge lips are soft and pillowy against you.
+		<<elseif $activeSlave.teeth == "gapped">>
+			Although most of your attention is focused on the intriguing drama unfolding on your wallscreen, you can feel the slight hesitations as $he takes care to not pinch you between $his front teeth.
+		<<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>>
+			Although most of your attention is focused on the intriguing drama unfolding on your wallscreen, you can feel the slight hesitations as $he takes care to keep $his braces off you.
+		<</if>>
+		You have an enjoyable evening glued to your wallscreen, punctuated by the playful ruffling <<if $activeSlave.hLength > 1>>of $activeSlave.slaveName's $activeSlave.hColor hair<<else>>across $activeSlave.slaveName's scalp<</if>> and the occasional orgasm into $his waiting mouth. Though your experience was more stimulating than $hers, $activeSlave.slaveName enjoyed @@.hotpink;being used while you enjoyed yourself.@@
+		<<set $activeSlave.devotion += 4, $activeSlave.counter.oral += 1, $oralTotal += 1>>
 	<</replace>>
 <</link>>
 <br><<link "Spend the night idly cuddling">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Though your evening could hardly be called eventful, there is something eminently comforting about having a warm
-	<<if $activeSlave.physicalAge > 30>>
-		$woman
-	<<elseif $activeSlave.physicalAge > 18>>
-		young lady
-	<<elseif $activeSlave.physicalAge > 12>>
-		teen
-	<<else>>
-		little $girl
-	<</if>>
-	cuddled up beside you to idly while away the hours<<if $activeSlave.bellyPreg >= 1500 && $activeSlave.pregSource == -1>>, especially when $he is <<if $activeSlave.belly >= 300000>>so massively swollen with your children<<else>>heavy with your child<<if $activeSlave.pregType > 1>>ren<</if>><</if>><</if>>.
-	$He @@.mediumaquamarine;trusts you more@@ for these few intimate hours amidst $his life of sexual servitude.
-	<<set $activeSlave.trust += 4>>
+		Though your evening could hardly be called eventful, there is something eminently comforting about having a warm
+		<<if $activeSlave.physicalAge > 30>>
+			$woman
+		<<elseif $activeSlave.physicalAge > 18>>
+			young lady
+		<<elseif $activeSlave.physicalAge > 12>>
+			teen
+		<<else>>
+			little $girl
+		<</if>>
+		cuddled up beside you to idly while away the hours<<if $activeSlave.bellyPreg >= 1500 && $activeSlave.pregSource == -1>>, especially when $he is <<if $activeSlave.belly >= 300000>>so massively swollen with your children<<else>>heavy with your child<<if $activeSlave.pregType > 1>>ren<</if>><</if>><</if>>.
+		$He @@.mediumaquamarine;trusts you more@@ for these few intimate hours amidst $his life of sexual servitude.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Unwind by tormenting $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Though there is no shortage of torments you inflict during the course of your day to day life as an arcology owner, there is something refreshing about torturing a slave out of idle boredom rather than corrective disciple or sexual domination. Your night is filled with <<if $activeSlave.voice == 0>>the horrible rasping that a mute throat substitutes for cries of agony<<else>>echoing shrieks of anguish<</if>>, though every vocal outburst is idly punished with electro shock or strike of the whip. Come the morning, $activeSlave.slaveName <<if $activeSlave.fetish == "masochist">> is mortified by the intensity of $his orgasms that night,@@.hotpink; and more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;scuttles away to tend to the bruises and marks that litter $his battered body.@@
-	<<set $activeSlave.trust -= 5>>
-	<<if $activeSlave.fetish == "masochist">><<set $activeSlave.devotion += 4>><</if>>
+		Though there is no shortage of torments you inflict during the course of your day to day life as an arcology owner, there is something refreshing about torturing a slave out of idle boredom rather than corrective disciple or sexual domination. Your night is filled with <<if $activeSlave.voice == 0>>the horrible rasping that a mute throat substitutes for cries of agony<<else>>echoing shrieks of anguish<</if>>, though every vocal outburst is idly punished with electro shock or strike of the whip. Come the morning, $activeSlave.slaveName <<if $activeSlave.fetish == "masochist">> is mortified by the intensity of $his orgasms that night,@@.hotpink; and more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;scuttles away to tend to the bruises and marks that litter $his battered body.@@
+		<<set $activeSlave.trust -= 5>>
+		<<if $activeSlave.fetish == "masochist">><<set $activeSlave.devotion += 4>><</if>>
 	<</replace>>
 <</link>>
 
@@ -19917,71 +19923,71 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Show $him why you like having short <<= $girl>>s around">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You hook your arms underneath $his own, pulling $him off of the ground in one swift yank upwards. Taken off guard by $his sudden vertical ascension, $he clings to your chest instinctively,
-	<<if $PC.boobs == 1 || $PC.title == 0>>
-		<<if $activeSlave.boobs > 25000>>$his immense udders doing their best to keep you apart<<elseif $activeSlave.boobs > 2000>>$his huge breasts squashing against yours<<elseif $activeSlave.boobs > 800>>$his breasts pressing heavily against yours<<else>>$his chest pressing against your breasts<</if>>.
-	<<else>>
-		<<if $activeSlave.boobs > 25000>>$his immense udders doing their best to keep you apart<<elseif $activeSlave.boobs > 2000>>$his huge breasts forming a soft cushion between your two bodies<<elseif $activeSlave.boobs > 800>>$his breasts pressing up against your hard chest pleasantly<<else>>$his chest pressing against yours<</if>>.
-	<</if>>
-	$His body is held aloft entirely by your crushing embrace and $his arms wrapped daintily about your shoulders, for as short as $he is, $his attempts to wrap $his legs around your waist leave them dangling awkwardly in the air. This unique position soon has $his
-	<<if $activeSlave.belly >= 10000>>
-		_belly belly
-		<<if $PC.dick == 1>>
-			trapping your dick against your own
-			<<if $PC.pregKnown == 1>>
-				pregnancy.
+		You hook your arms underneath $his own, pulling $him off of the ground in one swift yank upwards. Taken off guard by $his sudden vertical ascension, $he clings to your chest instinctively,
+		<<if $PC.boobs == 1 || $PC.title == 0>>
+			<<if $activeSlave.boobs > 25000>>$his immense udders doing their best to keep you apart<<elseif $activeSlave.boobs > 2000>>$his huge breasts squashing against yours<<elseif $activeSlave.boobs > 800>>$his breasts pressing heavily against yours<<else>>$his chest pressing against your breasts<</if>>.
+		<<else>>
+			<<if $activeSlave.boobs > 25000>>$his immense udders doing their best to keep you apart<<elseif $activeSlave.boobs > 2000>>$his huge breasts forming a soft cushion between your two bodies<<elseif $activeSlave.boobs > 800>>$his breasts pressing up against your hard chest pleasantly<<else>>$his chest pressing against yours<</if>>.
+		<</if>>
+		$His body is held aloft entirely by your crushing embrace and $his arms wrapped daintily about your shoulders, for as short as $he is, $his attempts to wrap $his legs around your waist leave them dangling awkwardly in the air. This unique position soon has $his
+		<<if $activeSlave.belly >= 10000>>
+			_belly belly
+			<<if $PC.dick == 1>>
+				trapping your dick against your own
+				<<if $PC.pregKnown == 1>>
+					pregnancy.
+				<<else>>
+					stomach.
+				<</if>>
+				You take advantage of the situation and thrust between your middles, grunting and panting as $his tiny body rubs up against your cock. You quickly coat your rounded stomachs in your cum.
 			<<else>>
-				stomach.
+				rubbing against your own
+				<<if $PC.pregKnown == 1>>
+					pregnancy.
+				<<else>>
+					stomach.
+				<</if>>
+				While it feels interesting, it isn't very satisfying.
 			<</if>>
-			You take advantage of the situation and thrust between your middles, grunting and panting as $his tiny body rubs up against your cock. You quickly coat your rounded stomachs in your cum.
 		<<else>>
-			rubbing against your own
-			<<if $PC.pregKnown == 1>>
-				pregnancy.
+			crotch rubbing up against your own<<if $PC.dick == 0>>, so you don a strap-on<</if>>. Lightly maneuvering $him in the air, you position $him
+			<<if canDoVaginal($activeSlave)>>
+				such that you press up against $his pussy.
 			<<else>>
-				stomach.
+				such that you press up against $his ass.
 			<</if>>
-			While it feels interesting, it isn't very satisfying.
+			$He moans softly in anticipation as you lift $him up by $his arms, before lowering $him slowly onto your <<if $PC.dick == 0>>phallus<<else>>cock<</if>>, $his knees desperately pressing against your hips in an attempt to steady $himself. Held aloft in your arms, $he arches $his back and cocks $his hips wildly to ride you in midair,<<if $activeSlave.belly >= 1500>> even as $he carefully keeps $his bulge from slamming into your hard body,<</if>> grunting and panting as $his tiny body rubs up against your own.
 		<</if>>
-	<<else>>
-		crotch rubbing up against your own<<if $PC.dick == 0>>, so you don a strap-on<</if>>. Lightly maneuvering $him in the air, you position $him
-		<<if canDoVaginal($activeSlave)>>
-			such that you press up against $his pussy.
+		<br><br>
+		When you grow bored of the position, you turn $him around to impale $his
+		<<if $activeSlave.butt > 12>>
+			bountiful
+		<<elseif $activeSlave.butt > 7>>
+			giant
+		<<elseif $activeSlave.butt > 5>>
+			huge
+		<<elseif $activeSlave.butt > 3>>
+			rounded
+		<<else>>
+			tight
+		<</if>>
+		butt as you pound $him standing from behind, $his
+		<<if $activeSlave.boobs > 2000>>
+			titanic
+		<<elseif $activeSlave.boobs > 800>>
+			big
 		<<else>>
-			such that you press up against $his ass.
+			small
+		<</if>>
+		breasts<<if $activeSlave.belly >= 1500>> and _belly belly<</if>> bouncing with every deep thrust upwards. $His small body spasms with the force of $his immense pleasure, and when $he orgasms, you have to wrap your arms beneath $his breasts and pull $him up against you to stop $his limp body from crashing to the ground. Eventually, you lower $him back down onto the ground level, watching with bemusement as $he curls up, breathing heavily from $his exertions. Eventually $he recovers $his composure somewhat, rising from $his stupor to @@.hotpink;blow you a kiss.@@
+		<<set $activeSlave.devotion += 4>>
+		<<if $activeSlave.belly >= 10000>>
+			<<= AnalVCheck()>>
+		<<else>>
+			<<= BothVCheck()>>
 		<</if>>
-		$He moans softly in anticipation as you lift $him up by $his arms, before lowering $him slowly onto your <<if $PC.dick == 0>>phallus<<else>>cock<</if>>, $his knees desperately pressing against your hips in an attempt to steady $himself. Held aloft in your arms, $he arches $his back and cocks $his hips wildly to ride you in midair,<<if $activeSlave.belly >= 1500>> even as $he carefully keeps $his bulge from slamming into your hard body,<</if>> grunting and panting as $his tiny body rubs up against your own.
-	<</if>>
-	<br><br>
-	When you grow bored of the position, you turn $him around to impale $his
-	<<if $activeSlave.butt > 12>>
-		bountiful
-	<<elseif $activeSlave.butt > 7>>
-		giant
-	<<elseif $activeSlave.butt > 5>>
-		huge
-	<<elseif $activeSlave.butt > 3>>
-		rounded
-	<<else>>
-		tight
-	<</if>>
-	butt as you pound $him standing from behind, $his
-	<<if $activeSlave.boobs > 2000>>
-		titanic
-	<<elseif $activeSlave.boobs > 800>>
-		big
-	<<else>>
-		small
-	<</if>>
-	breasts<<if $activeSlave.belly >= 1500>> and _belly belly<</if>> bouncing with every deep thrust upwards. $His small body spasms with the force of $his immense pleasure, and when $he orgasms, you have to wrap your arms beneath $his breasts and pull $him up against you to stop $his limp body from crashing to the ground. Eventually, you lower $him back down onto the ground level, watching with bemusement as $he curls up, breathing heavily from $his exertions. Eventually $he recovers $his composure somewhat, rising from $his stupor to @@.hotpink;blow you a kiss.@@
-	<<set $activeSlave.devotion += 4>>
-	<<if $activeSlave.belly >= 10000>>
-		<<= AnalVCheck()>>
-	<<else>>
-		<<= BothVCheck()>>
-	<</if>>
 	<</replace>>
-<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>>
+<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
 <br><<link "Show $him that short <<= $girl>>s can still serve">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
@@ -20012,24 +20018,24 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 	<<set $activeSlave.counter.oral += 1, $oralTotal += 1, $activeSlave.trust += 4>>
 <</link>>
 <<if canDoAnal($activeSlave)>>
-<br><<link "Show $him that short <<= $girl>>s are easier to abuse">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You inform $him that you find shorter slaves easier to abuse, smiling widely as an expression of horror spreads across $his face. This expression soon changes to one of shock and pain as you slap $him open-handed across the face, the sheer force of the strike sending $him reeling. A few slaps later and you have $activeSlave.slaveName on all fours begging for mercy as you punish the cheeks of $his ass with spank after spank. When you suddenly shove <<if $PC.dick == 0>>a dildo<<else>>your cock<</if>> up $his ass $he spasms so harshly from the pain that $he reflexively tries to get away, only to be subdued by the weight and strength of your larger, more powerful form. For the next ten minutes, $he gets beaten and choked if $he offers even token resistance to the brutal anal rape. Soon, tears run down the short length of $his body as $he shakes from the force of each excessive thrust into $his anus. The next time you decide to buttfuck $him, $he's @@.gold;terrified into compliance@@ by the knowledge of how little physical resistance $he can muster against you.
-	<<set $activeSlave.trust -= 5>>
-	<<= AnalVCheck()>>
-	<</replace>>
-<</link>><<if $activeSlave.anus == 0>>//This option will take anal virginity//<</if>>
+	<br><<link "Show $him that short <<= $girl>>s are easier to abuse">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You inform $him that you find shorter slaves easier to abuse, smiling widely as an expression of horror spreads across $his face. This expression soon changes to one of shock and pain as you slap $him open-handed across the face, the sheer force of the strike sending $him reeling. A few slaps later and you have $activeSlave.slaveName on all fours begging for mercy as you punish the cheeks of $his ass with spank after spank. When you suddenly shove <<if $PC.dick == 0>>a dildo<<else>>your cock<</if>> up $his ass $he spasms so harshly from the pain that $he reflexively tries to get away, only to be subdued by the weight and strength of your larger, more powerful form. For the next ten minutes, $he gets beaten and choked if $he offers even token resistance to the brutal anal rape. Soon, tears run down the short length of $his body as $he shakes from the force of each excessive thrust into $his anus. The next time you decide to buttfuck $him, $he's @@.gold;terrified into compliance@@ by the knowledge of how little physical resistance $he can muster against you.
+			<<set $activeSlave.trust -= 5>>
+			<<= AnalVCheck()>>
+		<</replace>>
+	<</link>><<if $activeSlave.anus == 0>>//This option will take $his anal virginity//<</if>>
 <</if>>
 <<if ($arcade > 0)>>
 	<br><<link "Show $him that short <<= $girl>>s are amusing in the arcade">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-		You inform $activeSlave.slaveName that short <<= $girl>>s like $him are delightfully amusing when immured in the arcade. Magnanimous as you are, you have two other slaves drag $him off to be installed in the arcade for a day, so that $he too may see the humor in having short <<= $girl>>s serve in the arcade. Though $arcadeName has arcade pens to match any height of slave, you have $activeSlave.slaveName confined in a pen built for a much taller slave. Although $his head and neck protrude from one side of the pen without issue, $he is too short for $his ass to fill the other opening. As a result, $he must use the tips of $his toes maintain an unsteady grip on the rear opening, forcing $him to maintain an extremely taxing stretch just to keep $his body held aloft within the pen. Customers are unable to fuck $his holes but readily delight in watching $him squirm to keep $his body extended and horizontal, even with hard cocks brutally fucking $his face. Somewhere in the grueling, 18-hour marathon of relentless throat fucking, $his precarious position slips and $his lower half tumbles into the interior of the pen proper. Until an attendant rescues $him, $his neck is held crooked at an unnatural angle by $his restraints, as the rest of $his body dangles beneath it. $His ordeal forces $him to accept that a short $girl's place is as an @@.hotpink;amusing arcade hole,@@ though $he can't find the humor@@.gold;in such a terrible plight.@@ Furthermore, $his intense exertions during $his stay @@.red;negatively effects $his health.@@ Your other slaves take note of what you do to short <<= $girl>>s who ask questions about their place in your penthouse.
-		<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.health -= 5, $activeSlave.counter.oral += 55, $oralTotal += 55>>
-		<<set $activeSlave.counter.publicUse += 55>>
-	<</replace>>
-<</link>>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You inform $activeSlave.slaveName that short <<= $girl>>s like $him are delightfully amusing when immured in the arcade. Magnanimous as you are, you have two other slaves drag $him off to be installed in the arcade for a day, so that $he too may see the humor in having short <<= $girl>>s serve in the arcade. Though $arcadeName has arcade pens to match any height of slave, you have $activeSlave.slaveName confined in a pen built for a much taller slave. Although $his head and neck protrude from one side of the pen without issue, $he is too short for $his ass to fill the other opening. As a result, $he must use the tips of $his toes maintain an unsteady grip on the rear opening, forcing $him to maintain an extremely taxing stretch just to keep $his body held aloft within the pen. Customers are unable to fuck $his holes but readily delight in watching $him squirm to keep $his body extended and horizontal, even with hard cocks brutally fucking $his face. Somewhere in the grueling, 18-hour marathon of relentless throat fucking, $his precarious position slips and $his lower half tumbles into the interior of the pen proper. Until an attendant rescues $him, $his neck is held crooked at an unnatural angle by $his restraints, as the rest of $his body dangles beneath it. $His ordeal forces $him to accept that a short $girl's place is as an @@.hotpink;amusing arcade hole,@@ though $he can't find the humor@@.gold;in such a terrible plight.@@ Furthermore, $his intense exertions during $his stay @@.red;negatively effects $his health.@@ Your other slaves take note of what you do to short <<= $girl>>s who ask questions about their place in your penthouse.
+			<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.health -= 5, $activeSlave.counter.oral += 55, $oralTotal += 55>>
+			<<set $activeSlave.counter.publicUse += 55>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "desperate null">>
@@ -20037,190 +20043,190 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Take pity">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Deciding to take pity, you stand up<<if $PC.dick == 0>>, pull on a strap-on,<</if>> and approach $his crumpled, weeping form. You reach down and take $his clasped hands in yours, pulling $him gently to $his feet and giving $him a quick cuddle. You make it just long enough to reassure $him that you care for $him, but not long enough to frustrate $him even further; $his extreme horniness is only sharpened by the hug and the way it traps $his arms between $his
-	<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
-		fake boobs
-	<<elseif $activeSlave.boobs > 4000>>
-		monstrous udders
-	<<elseif $activeSlave.boobs > 800>>
-		big soft breasts
-	<<elseif $activeSlave.boobs > 300>>
-		tits
-	<<else>>
-		flat chest
-	<</if>>
-	and your
-	<<if $PC.boobs == 1>>
-		bosom.
-	<<elseif $PC.title == 0>>
-		chest.
-	<<else>>
-		hard pectorals.
-	<</if>>
-	$He sniffles, trying to restrain $his hopes. You push $him backwards toward the couch, giving $him a kiss to really bring $him to the height of anticipation before laying $him down and sliding your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> <<if $activeSlave.anus > 1>>inside $his soft asshole<<else>>up $his tight little butt<</if>>.
-	<<if $activeSlave.prostate != 0>>
-		The instant <<if $PC.dick == 1>>your hard dickhead<<else>>the hard tip of your phallus<</if>> presses against $his prostate, $he orgasms, squirting <<if $activeSlave.balls == 0>>translucent fluid<<else>>cum<</if>>. $He looks like $he wants to say something, or maybe even apologize, so you shush $him with a gentle hand and pull out, letting the fluid run down <<if $activeSlave.scrotum > 0>>$his soft scrotum<<else>>the pretty skin between $his cumhole and $his anus<</if>> until it glazes $his asspussy. You use <<if $PC.dick == 1>>the tip of your cock<<else>>the head of the strap-on<</if>> to massage the fluid into the hole before penetrating it again with the extra lubrication.
-	<<else>>
-		Without a prostate or a strong anal fetish, $he'll have trouble climaxing to nothing but buttsex, so you make sure to tend to every erogenous zone $he has left. You guide one of $his hands down so $he can rub <<if $activeSlave.scrotum > 0>>$his scrotum<<else>>the skin between $his legs<</if>>, and make $his stimulate one of $his nipples with the other. You <<if $activeSlave.nipples != "fuckable">>pinch and rub<<else>>finger<</if>> $his other nipple, and push two fingers of your other hand into $his mouth, making $him suck them. So completely stimulated, $he finally manages to orgasm.
-	<</if>>
-	You make love to $him until $he's satisfied, and then carry $him to the shower to wash $him off. Under the warm water, $he @@.mediumaquamarine;stays trustingly close to your naked body,@@ without even thinking about it.
-	<<set $activeSlave.trust += 5>>
-	<<= AnalVCheck()>>
+		Deciding to take pity, you stand up<<if $PC.dick == 0>>, pull on a strap-on,<</if>> and approach $his crumpled, weeping form. You reach down and take $his clasped hands in yours, pulling $him gently to $his feet and giving $him a quick cuddle. You make it just long enough to reassure $him that you care for $him, but not long enough to frustrate $him even further; $his extreme horniness is only sharpened by the hug and the way it traps $his arms between $his
+		<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
+			fake boobs
+		<<elseif $activeSlave.boobs > 4000>>
+			monstrous udders
+		<<elseif $activeSlave.boobs > 800>>
+			big soft breasts
+		<<elseif $activeSlave.boobs > 300>>
+			tits
+		<<else>>
+			flat chest
+		<</if>>
+		and your
+		<<if $PC.boobs == 1>>
+			bosom.
+		<<elseif $PC.title == 0>>
+			chest.
+		<<else>>
+			hard pectorals.
+		<</if>>
+		$He sniffles, trying to restrain $his hopes. You push $him backwards toward the couch, giving $him a kiss to really bring $him to the height of anticipation before laying $him down and sliding your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> <<if $activeSlave.anus > 1>>inside $his soft asshole<<else>>up $his tight little butt<</if>>.
+		<<if $activeSlave.prostate != 0>>
+			The instant <<if $PC.dick == 1>>your hard dickhead<<else>>the hard tip of your phallus<</if>> presses against $his prostate, $he orgasms, squirting <<if $activeSlave.balls == 0>>translucent fluid<<else>>cum<</if>>. $He looks like $he wants to say something, or maybe even apologize, so you shush $him with a gentle hand and pull out, letting the fluid run down <<if $activeSlave.scrotum > 0>>$his soft scrotum<<else>>the pretty skin between $his cumhole and $his anus<</if>> until it glazes $his asspussy. You use <<if $PC.dick == 1>>the tip of your cock<<else>>the head of the strap-on<</if>> to massage the fluid into the hole before penetrating it again with the extra lubrication.
+		<<else>>
+			Without a prostate or a strong anal fetish, $he'll have trouble climaxing to nothing but buttsex, so you make sure to tend to every erogenous zone $he has left. You guide one of $his hands down so $he can rub <<if $activeSlave.scrotum > 0>>$his scrotum<<else>>the skin between $his legs<</if>>, and make $his stimulate one of $his nipples with the other. You <<if $activeSlave.nipples != "fuckable">>pinch and rub<<else>>finger<</if>> $his other nipple, and push two fingers of your other hand into $his mouth, making $him suck them. So completely stimulated, $he finally manages to orgasm.
+		<</if>>
+		You make love to $him until $he's satisfied, and then carry $him to the shower to wash $him off. Under the warm water, $he @@.mediumaquamarine;stays trustingly close to your naked body,@@ without even thinking about it.
+		<<set $activeSlave.trust += 5>>
+		<<= AnalVCheck()>>
 	<</replace>>
-<</link>><<if $activeSlave.anus == 0>>//This option will take anal virginity//<</if>>
+<</link>><<if $activeSlave.anus == 0>>//This option will take $his anal virginity//<</if>>
 <br><<link "Assrape $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He's an anal sex toy, and you decide to use $him like one. You walk over, reach down, and jerk $him to $his feet. You don't hurt $him, not yet, but the violence of the motion forces a sob out of $him. $He <<if canSee($activeSlave)>>sees the open lust in your eyes<<else>>feels the lust lingering about you<</if>> and is afraid. $He's not wrong to be so; you spin $him roughly around and use one arm to pin $his upper body mercilessly in place while you use your other hand to
-	<<if $activeSlave.anus > 2>>
-		manhandle your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up $his roomy ass. It's disappointingly easy, and $he takes it without a struggle, so you reach around $his front, down between $his legs, and jam a couple of fingers up there, too.
-	<<elseif $activeSlave.anus > 1>>
-		shove your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up $his anus. $He's taken hard anal before, but the angle isn't particularly comfortable, you didn't bother with lube, and you begin to rape $him vigorously without any warning.
-	<<else>>
-		force your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up $his spasming anus. $He'd struggle to take it in a position far more comfortable for anal than standing straight up, and you don't even bother to take it slow.
-	<</if>>
-	"<<Master>>, that hurt<<s>>!" $he screams, crying even harder. "Ow, it h-hurt<<s>>! Plea<<s>>e take it out, ow, ow," $he shrieks, and then degenerates into nonverbal caterwauling.
-	<<if $activeSlave.prostate != 0>>
-		Then, without any warning, $he orgasms. $He's so pent up that the prostate stimulation overpowers the pain. $He shudders, gasps, and then moans, "I'm <<s>>-<<s>>uch a whore, <<Master>>," in such a tone of utter @@.hotpink;submission@@ and dejection that you climax too. Then you drop $him, letting $his slide off you, and go back to your work, leaving $him to clean $himself and the floor.
-		<<set $activeSlave.devotion += 5>>
-	<<else>>
-		$He knows $he shouldn't wriggle, that fighting will make it even worse for $him, but you assrape $him so mercilessly that $his body revolts, trying to escape the invading phallus. You have $his arms pinioned securely, so all this struggling does is add to the fun. When you're done, you<<if $PC.dick == 1>> fill $his insides with your cum and<</if>> drop $him, ordering $him to clean $himself up. "Y-ye<<s>> <<Master>>," $he sniffles @@.gold;fearfully,@@ and hurries to obey, a little bent from $his burning backdoor. Only later does $he remember that $he still hasn't gotten off.
-		<<set $activeSlave.trust -= 5>>
-	<</if>>
-	<<= AnalVCheck()>>
+		$He's an anal sex toy, and you decide to use $him like one. You walk over, reach down, and jerk $him to $his feet. You don't hurt $him, not yet, but the violence of the motion forces a sob out of $him. $He <<if canSee($activeSlave)>>sees the open lust in your eyes<<else>>feels the lust lingering about you<</if>> and is afraid. $He's not wrong to be so; you spin $him roughly around and use one arm to pin $his upper body mercilessly in place while you use your other hand to
+		<<if $activeSlave.anus > 2>>
+			manhandle your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up $his roomy ass. It's disappointingly easy, and $he takes it without a struggle, so you reach around $his front, down between $his legs, and jam a couple of fingers up there, too.
+		<<elseif $activeSlave.anus > 1>>
+			shove your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up $his anus. $He's taken hard anal before, but the angle isn't particularly comfortable, you didn't bother with lube, and you begin to rape $him vigorously without any warning.
+		<<else>>
+			force your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up $his spasming anus. $He'd struggle to take it in a position far more comfortable for anal than standing straight up, and you don't even bother to take it slow.
+		<</if>>
+		"<<Master>>, that hurt<<s>>!" $he screams, crying even harder. "Ow, it h-hurt<<s>>! Plea<<s>>e take it out, ow, ow," $he shrieks, and then degenerates into nonverbal caterwauling.
+		<<if $activeSlave.prostate != 0>>
+			Then, without any warning, $he orgasms. $He's so pent up that the prostate stimulation overpowers the pain. $He shudders, gasps, and then moans, "I'm <<s>>-<<s>>uch a whore, <<Master>>," in such a tone of utter @@.hotpink;submission@@ and dejection that you climax too. Then you drop $him, letting $his slide off you, and go back to your work, leaving $him to clean $himself and the floor.
+			<<set $activeSlave.devotion += 5>>
+		<<else>>
+			$He knows $he shouldn't wriggle, that fighting will make it even worse for $him, but you assrape $him so mercilessly that $his body revolts, trying to escape the invading phallus. You have $his arms pinioned securely, so all this struggling does is add to the fun. When you're done, you<<if $PC.dick == 1>> fill $his insides with your cum and<</if>> drop $him, ordering $him to clean $himself up. "Y-ye<<s>> <<Master>>," $he sniffles @@.gold;fearfully,@@ and hurries to obey, a little bent from $his burning backdoor. Only later does $he remember that $he still hasn't gotten off.
+			<<set $activeSlave.trust -= 5>>
+		<</if>>
+		<<= AnalVCheck()>>
 	<</replace>>
-<</link>><<if $activeSlave.anus == 0>>//This option will take anal virginity//<</if>>
+<</link>><<if $activeSlave.anus == 0>>//This option will take $his anal virginity//<</if>>
 <br><<link "Ignore $his pleas">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You order $him to take the next pose in the inspection series, as though $he hadn't broken down at all. There's such understated menace in your voice that $he gets right back to $his feet, using the back of a $activeSlave.skin hand to cuff away $his tears. "Y-ye<<s>>, <<Master>>," $he sniffles, trying to get $himself under control, and then shudders.
-	<<if $dairy > 0 && $dairyStimulatorsSetting == 2>>
-		It's never hard to see the exact moment when your slaves remind themselves that you run an industrial Dairy, and that if they displease you, they may find themselves hydrated for milk production from fifty kilogram udders by constant machine rape down their throats and up their asses<<if isFertile($activeSlave) && $dairyPregSetting > 0>> as their wombs steadily fill with life<</if>>.
-	<<elseif $arcade > 0>>
-		It's never hard to see the exact moment when your slaves remind themselves that you own an Arcade, and that if they displease you, they may find themselves immured there and condemned to a universe in which the only sensory stimulation is penetration.
-	<<elseif $activeSlave.trust < -20>>
-		$He's no stranger to being punished, and obviously wants to avoid another round.
-	<<else>>
-		$He knows that there are slaves who are treated much more harshly than $he is, and doesn't want to become one of them.
-	<</if>>
-	$He staggers out of your office after $his inspection, doing $his best to ignore $his condition. Over the coming week, $he's continually tortured by $his libido, cruelly entombed as it is in a body which can no longer give it meaningful relief. $He manages to keep it together, mostly, and $his @@.red;sex drive diminishes noticeably.@@
-	<<set $activeSlave.energy -= 5>>
+		You order $him to take the next pose in the inspection series, as though $he hadn't broken down at all. There's such understated menace in your voice that $he gets right back to $his feet, using the back of a $activeSlave.skin hand to cuff away $his tears. "Y-ye<<s>>, <<Master>>," $he sniffles, trying to get $himself under control, and then shudders.
+		<<if $dairy > 0 && $dairyStimulatorsSetting == 2>>
+			It's never hard to see the exact moment when your slaves remind themselves that you run an industrial Dairy, and that if they displease you, they may find themselves hydrated for milk production from fifty kilogram udders by constant machine rape down their throats and up their asses<<if isFertile($activeSlave) && $dairyPregSetting > 0>> as their wombs steadily fill with life<</if>>.
+		<<elseif $arcade > 0>>
+			It's never hard to see the exact moment when your slaves remind themselves that you own an Arcade, and that if they displease you, they may find themselves immured there and condemned to a universe in which the only sensory stimulation is penetration.
+		<<elseif $activeSlave.trust < -20>>
+			$He's no stranger to being punished, and obviously wants to avoid another round.
+		<<else>>
+			$He knows that there are slaves who are treated much more harshly than $he is, and doesn't want to become one of them.
+		<</if>>
+		$He staggers out of your office after $his inspection, doing $his best to ignore $his condition. Over the coming week, $he's continually tortured by $his libido, cruelly entombed as it is in a body which can no longer give it meaningful relief. $He manages to keep it together, mostly, and $his @@.red;sex drive diminishes noticeably.@@
+		<<set $activeSlave.energy -= 5>>
 	<</replace>>
 <</link>>
 
 <<case "objectifying visit">>
 
-<<link "Use $him as a footrest">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	<<if $activeSlave.belly >= 300000>>
-		You order $him to get on $his _belly belly and steady $himself, a task that $he carries out quickly and obediently. Once as comfortable as $he can possibly get perched awkwardly atop $his straining stomach,
-	<<else>>
-		You order $him to get beneath your desk on all fours, a task that $he carries out quickly and obediently. Once as comfortable as $he can be perched awkwardly underneath your desk,
-	<</if>>
-	$he braces
-	<<if !canDoAnal($activeSlave)>>
-		$himself for the inevitable molestation
-	<<else>>
-		$his ass for the inevitable rough anal
-	<</if>>
-	$he assumes must be coming. Fortunately for $him, it never does. Instead, you kick your feet up and rest them on the small of $his back. After a few hours of objectifying degradation in this way, you rise from your chair to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't fuck $him, $his experience as a piece of furniture for your comfort @@.hotpink;has increased $his submissiveness.@@
-	<<set $activeSlave.devotion += 5>>
-	<</replace>>
-<</link>>
-<<if $activeSlave.boobs > 300>>
-<br><<link "Use $his breasts as stress balls">>
+<<link "Use $him as a footrest">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$He came to your office clearly expecting to get fucked, but takes it in stride when you order $him to kneel beside you and stick out $his breasts. $He is similarly unruffled when you first reach over to take one of $his
-	<<if $activeSlave.boobs > 2000>>
-		massive breasts
-	<<elseif $activeSlave.boobs > 1000>>
-		large breasts
-	<<elseif $activeSlave.boobs > 400>>
-		breasts
-	<<else>>
-		tiny breasts
-	<</if>>
-	in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the breast held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before silencing $himself. $He soon realizes $his time with you in the near future will be as an outlet for your frustrations, and $his tits will be taking the brunt of the punishment. When you dismiss $him hours later, $he scurries out of your office cradling $his bruised bosom and @@.gold;trembling from $his recent objectifying experience.@@
-	<<set $activeSlave.trust -= 5>>
+		<<if $activeSlave.belly >= 300000>>
+			You order $him to get on $his _belly belly and steady $himself, a task that $he carries out quickly and obediently. Once as comfortable as $he can possibly get perched awkwardly atop $his straining stomach,
+		<<else>>
+			You order $him to get beneath your desk on all fours, a task that $he carries out quickly and obediently. Once as comfortable as $he can be perched awkwardly underneath your desk,
+		<</if>>
+		$he braces
+		<<if !canDoAnal($activeSlave)>>
+			$himself for the inevitable molestation
+		<<else>>
+			$his ass for the inevitable rough anal
+		<</if>>
+		$he assumes must be coming. Fortunately for $him, it never does. Instead, you kick your feet up and rest them on the small of $his back. After a few hours of objectifying degradation in this way, you rise from your chair to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't fuck $him, $his experience as a piece of furniture for your comfort @@.hotpink;has increased $his submissiveness.@@
+		<<set $activeSlave.devotion += 5>>
 	<</replace>>
 <</link>>
+<<if $activeSlave.boobs > 300>>
+	<br><<link "Use $his breasts as stress balls">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$He came to your office clearly expecting to get fucked, but takes it in stride when you order $him to kneel beside you and stick out $his breasts. $He is similarly unruffled when you first reach over to take one of $his
+			<<if $activeSlave.boobs > 2000>>
+				massive breasts
+			<<elseif $activeSlave.boobs > 1000>>
+				large breasts
+			<<elseif $activeSlave.boobs > 400>>
+				breasts
+			<<else>>
+				tiny breasts
+			<</if>>
+			in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the breast held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before silencing $himself. $He soon realizes $his time with you in the near future will be as an outlet for your frustrations, and $his tits will be taking the brunt of the punishment. When you dismiss $him hours later, $he scurries out of your office cradling $his bruised bosom and @@.gold;trembling from $his recent objectifying experience.@@
+			<<set $activeSlave.trust -= 5>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if $activeSlave.balls > 2 && $activeSlave.balls < 20>>
-<br><<link "Relieve your stress with $his balls">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$He came to your office clearly expecting to get fucked, but takes it in stride when you order $him to get up on your desk with $his crotch to you. $He is shudders slightly when you first reach over to take one of $his
-	<<switch $activeSlave.balls>>
-		<<case 10>>inhuman
-		<<case 9>>titanic
-		<<case 8>>gigantic
-		<<case 7>>monstrous
-		<<case 6>>huge
-		<<case 5>>pendulous
-		<<case 4>>swinging
-		<<case 3>>big
-		<<case 2>>average
-		<<case 1>>pathetic
-		<<default>>hypertrophied
-	<</switch>>
-	balls in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the testicle held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before struggling silencing $himself. $He soon realizes $his time with you in the near future will be as an outlet for your frustrations, and you fully intend to use $his balls as literal stress balls. When you dismiss $him hours later, $he staggers out of your office trying $his best to not touch $his swollen testicles and @@.gold;trembling from $his recent objectifying experience.@@
-	<<set $activeSlave.trust -= 5>>
-	<</replace>>
-<</link>>
+	<br><<link "Relieve your stress with $his balls">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$He came to your office clearly expecting to get fucked, but takes it in stride when you order $him to get up on your desk with $his crotch to you. $He is shudders slightly when you first reach over to take one of $his
+			<<switch $activeSlave.balls>>
+				<<case 10>>inhuman
+				<<case 9>>titanic
+				<<case 8>>gigantic
+				<<case 7>>monstrous
+				<<case 6>>huge
+				<<case 5>>pendulous
+				<<case 4>>swinging
+				<<case 3>>big
+				<<case 2>>average
+				<<case 1>>pathetic
+				<<default>>hypertrophied
+			<</switch>>
+			balls in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the testicle held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before struggling silencing $himself. $He soon realizes $his time with you in the near future will be as an outlet for your frustrations, and you fully intend to use $his balls as literal stress balls. When you dismiss $him hours later, $he staggers out of your office trying $his best to not touch $his swollen testicles and @@.gold;trembling from $his recent objectifying experience.@@
+			<<set $activeSlave.trust -= 5>>
+		<</replace>>
+	<</link>>
 <</if>>
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave) || $activeSlave.belly >= 300000>>
-<br><<link "Use $him as an exercise ball">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	<<if $activeSlave.belly >= 3000000>>
-		You pull your chair back from your desk and order $him to lie on $his back with $his _belly belly to the ceiling. $He isn't sure what you are up to, but it quickly dawns on $him as you straddle $his stomach and take a seat. $He groans under the massive pressure increase inside $him, but does $his best to hold your weight.
-		<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/4>>
-			You manage to get very little work done. The sheer amount of motion
-			<<if $PC.dick == 1>>
-				beneath your balls
-				<<if $PC.vagina == 1>>
-					and across your pussy quickly have your cock at full attention and pussy leaking femcum.
+	<br><<link "Use $him as an exercise ball">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			<<if $activeSlave.belly >= 3000000>>
+				You pull your chair back from your desk and order $him to lie on $his back with $his _belly belly to the ceiling. $He isn't sure what you are up to, but it quickly dawns on $him as you straddle $his stomach and take a seat. $He groans under the massive pressure increase inside $him, but does $his best to hold your weight.
+				<<if $activeSlave.preg > ($activeSlave.pregData.normalBirth / 4)>>
+					You manage to get very little work done. The sheer amount of motion
+					<<if $PC.dick == 1>>
+						beneath your balls
+						<<if $PC.vagina == 1>>
+							and across your pussy quickly have your cock at full attention and pussy leaking femcum.
+						<<else>>
+							and between your legs quickly have your cock at full attention and dribbling precum.
+						<</if>>
+					<<else>>
+						on your pussy and asshole quickly have you hot and bothered.
+					<</if>>
+					You can't stop yourself from rubbing against the squirming mass, enjoying the unique undulations across your junk. It doesn't take long to coat $his stomach in a layer of fluids. After a few hours of objectifying degradation in this way, you rise from your enjoyable seat to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't penetrate $him, $his experience as a sex toy for your amusement @@.hotpink;has increased $his submissiveness.@@
 				<<else>>
-					and between your legs quickly have your cock at full attention and dribbling precum.
+					After a few hours of objectifying degradation in this way, you rise from your novel seat to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't fuck $him, $his experience as a piece of furniture for your comfort @@.hotpink;has increased $his submissiveness.@@
 				<</if>>
+				<<set $activeSlave.devotion += 2>>
 			<<else>>
-				on your pussy and asshole quickly have you hot and bothered.
+				You order $him to get down on all fours and stick $his butt up in the air, a position $he assumes with the practiced efficiency of a veteran sex slave. $He's expecting doggystyle and only lets out a perfunctory moan when you<<if $PC.dick == 0>> don a strap-on and<</if>> mount $his ass from behind.
+				<<if canDoVaginal($activeSlave)>>
+					<<= VaginalVCheck()>>
+				<<else>>
+					<<= AnalVCheck()>>
+				<</if>>
+				However, $he is caught off guard when you half sit on $his ass while fucking it, using it like an exercise ball as you bounce up and down. $His
+				<<if ($activeSlave.butt > 12)>>
+					immense ass fully absorbs your impacts as you pummel $him into the ground,
+				<<elseif ($activeSlave.butt > 5)>>
+					huge ass cushions your thighs as you pummel $him into the ground,
+				<<elseif ($activeSlave.butt > 2)>>
+					ass provides some cushioning as you pound $him into the ground,
+				<<else>>
+					ass does little to cushion you as you fuck $him into the ground,
+				<</if>>
+				but $activeSlave.slaveName fares much worse in $him role as living exercise equipment. By the end of your power workout you manage to work up quite a sweat, while your slave lays limp in the middle of your office with $his gaped
+				<<if canDoVaginal($activeSlave)>>
+					cunt comically held up in the air. Using $his pussy
+				<<else>>
+					butt comically held up in the air. Using $his ass
+				<</if>>
+				in such a way @@.hotpink;nearly fucked $him senseless,@@ but $he'll remember @@.gold;your objectifying treatment of $him.@@
+				<<set $activeSlave.devotion += 2, $activeSlave.trust -= 2>>
 			<</if>>
-			You can't stop yourself from rubbing against the squirming mass, enjoying the unique undulations across your junk. It doesn't take long to coat $his stomach in a layer of fluids. After a few hours of objectifying degradation in this way, you rise from your enjoyable seat to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't penetrate $him, $his experience as a sex toy for your amusement @@.hotpink;has increased $his submissiveness.@@
-		<<else>>
-			After a few hours of objectifying degradation in this way, you rise from your novel seat to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't fuck $him, $his experience as a piece of furniture for your comfort @@.hotpink;has increased $his submissiveness.@@
-		<</if>>
-		<<set $activeSlave.devotion += 2>>
-	<<else>>
-		You order $him to get down on all fours and stick $his butt up in the air, a position $he assumes with the practiced efficiency of a veteran sex slave. $He's expecting doggystyle and only lets out a perfunctory moan when you<<if $PC.dick == 0>> don a strap-on and<</if>> mount $his ass from behind.
-		<<if canDoVaginal($activeSlave)>>
-			<<= VaginalVCheck()>>
-		<<else>>
-			<<= AnalVCheck()>>
-		<</if>>
-		However, $he is caught off guard when you half sit on $his ass while fucking it, using it like an exercise ball as you bounce up and down. $His
-		<<if ($activeSlave.butt > 12)>>
-			immense ass fully absorbs your impacts as you pummel $him into the ground,
-		<<elseif ($activeSlave.butt > 5)>>
-			huge ass cushions your thighs as you pummel $him into the ground,
-		<<elseif ($activeSlave.butt > 2)>>
-			ass provides some cushioning as you pound $him into the ground,
-		<<else>>
-			ass does little to cushion you as you fuck $him into the ground,
-		<</if>>
-		but $activeSlave.slaveName fares much worse in $him role as living exercise equipment. By the end of your power workout you manage to work up quite a sweat, while your slave lays limp in the middle of your office with $his gaped
-		<<if canDoVaginal($activeSlave)>>
-			cunt comically held up in the air. Using $his pussy
-		<<else>>
-			butt comically held up in the air. Using $his ass
-		<</if>>
-		in such a way @@.hotpink;nearly fucked $him senseless,@@ but $he'll remember @@.gold;your objectifying treatment of $him.@@
-		<<set $activeSlave.devotion += 2, $activeSlave.trust -= 2>>
-	<</if>>
-	<</replace>>
-<</link>><<if $activeSlave.belly < 300000 && canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif $activeSlave.belly < 300000 && !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+		<</replace>>
+	<</link>><<if $activeSlave.belly < 300000 && canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif $activeSlave.belly < 300000 && !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 
 <<case "implant inspection">>
@@ -20228,157 +20234,157 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Give $him a nice massage">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You sit on the couch next to your desk and pat your thighs. $He smiles and comes over, lowering $himself <<if $PC.dick == 0>>into your lap<<else>>onto your member<<if $PC.vagina == 1>> and sliding a hand down to see to your pussy<</if>><</if>> without hesitation. You help $him get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap, gently massaging $his <<if $activeSlave.boobs < 900>>big <<else>>huge <</if>> tits. Despite their fine craftsmanship, implants are prone to rendering breasts sore, so $he's soon groaning with relief at the attention you lavish upon them. You finally manage to bring $him to orgasm with almost nothing but delicate stimulation of $his nipples, despite $his implants making them less sensitive than usual. @@.mediumaquamarine;$He has become more trusting of you.@@
-	<<set $activeSlave.trust += 4>>
+		You sit on the couch next to your desk and pat your thighs. $He smiles and comes over, lowering $himself <<if $PC.dick == 0>>into your lap<<else>>onto your member<<if $PC.vagina == 1>> and sliding a hand down to see to your pussy<</if>><</if>> without hesitation. You help $him get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap, gently massaging $his <<if $activeSlave.boobs < 900>>big <<else>>huge <</if>> tits. Despite their fine craftsmanship, implants are prone to rendering breasts sore, so $he's soon groaning with relief at the attention you lavish upon them. You finally manage to bring $him to orgasm with almost nothing but delicate stimulation of $his nipples, despite $his implants making them less sensitive than usual. @@.mediumaquamarine;$He has become more trusting of you.@@
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "See if they've got any bounce">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You tell $him to kneel on the smooth floor. $He knows this means doggy style, so $he compliantly
-	<<if $activeSlave.belly >= 300000>>
-		shifts onto $his _belly belly,
-	<</if>>
-	arches $his back and cocks $his hips to offer $himself to you. You<<if $PC.dick == 0>> don a strap-on and<</if>> enter
-	<<if canDoVaginal($activeSlave)>>
-		$his pussy
-	<<else>>
-		$his ass
-	<</if>>
-	without preamble and seize $his hips. $He braces $himself, knowing what's coming, but soon $he discovers a new disadvantage to $his augmented breasts: even as you pound $him hard and grope $his chest, $his tits barely move despite their rough treatment. $His unyielding breasts only encourage you to fuck $him harder, in an effort to garner any iota of movement from $his ample chest.
-	<<if $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
-		<<if canAchieveErection($activeSlave)>>
-			$His cock doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal.
-		<<elseif $activeSlave.dick > 20>>
-			$His cock doesn't help, either, flopping around on the floor as $he vacillates between pain and arousal.
-		<<else>>
-			$His cock doesn't help, either, flopping around feebly as $he vacillates between pain and arousal.
-		<</if>>
-	<<elseif $activeSlave.clit > 2>>
-		$His huge clit doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal.
-	<</if>>
-	<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
-		Even a switch to $his ass does little to slow your thrusts, and so $his breasts continue to rest impassively on $his chest as their owner is buttfucked senseless.
-	<</if>>
-	You finish with a particularly hard thrust <<if $PC.dick == 0>>and shake with climax<<else>>to spill your seed deep inside $him<</if>>, ramming forward hard enough to knock $him down to the floor. As you rise, $his discomfited form is a pretty sight, with $his perfectly rounded breasts
-	<<if $activeSlave.belly >= 300000>>
-		neatly stack on top each other
-	<<else>>
-		keeping $his body suspended off the ground
-	<</if>>
-	and $his well fucked butt lewdly relaxed. @@.hotpink;$He has become more submissive.@@
-	<<set $activeSlave.devotion += 4>>
-	<<= BothVCheck()>>
-	<</replace>>
-<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
+	<br><<link "See if they've got any bounce">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You tell $him to kneel on the smooth floor. $He knows this means doggy style, so $he compliantly
+			<<if $activeSlave.belly >= 300000>>
+				shifts onto $his _belly belly,
+			<</if>>
+			arches $his back and cocks $his hips to offer $himself to you. You<<if $PC.dick == 0>> don a strap-on and<</if>> enter
+			<<if canDoVaginal($activeSlave)>>
+				$his pussy
+			<<else>>
+				$his ass
+			<</if>>
+			without preamble and seize $his hips. $He braces $himself, knowing what's coming, but soon $he discovers a new disadvantage to $his augmented breasts: even as you pound $him hard and grope $his chest, $his tits barely move despite their rough treatment. $His unyielding breasts only encourage you to fuck $him harder, in an effort to garner any iota of movement from $his ample chest.
+			<<if $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
+				<<if canAchieveErection($activeSlave)>>
+					$His cock doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal.
+				<<elseif $activeSlave.dick > 20>>
+					$His cock doesn't help, either, flopping around on the floor as $he vacillates between pain and arousal.
+				<<else>>
+					$His cock doesn't help, either, flopping around feebly as $he vacillates between pain and arousal.
+				<</if>>
+			<<elseif $activeSlave.clit > 2>>
+				$His huge clit doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal.
+			<</if>>
+			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
+				Even a switch to $his ass does little to slow your thrusts, and so $his breasts continue to rest impassively on $his chest as their owner is buttfucked senseless.
+			<</if>>
+			You finish with a particularly hard thrust <<if $PC.dick == 0>>and shake with climax<<else>>to spill your seed deep inside $him<</if>>, ramming forward hard enough to knock $him down to the floor. As you rise, $his discomfited form is a pretty sight, with $his perfectly rounded breasts
+			<<if $activeSlave.belly >= 300000>>
+				neatly stack on top each other
+			<<else>>
+				keeping $his body suspended off the ground
+			<</if>>
+			and $his well fucked butt lewdly relaxed. @@.hotpink;$He has become more submissive.@@
+			<<set $activeSlave.devotion += 4>>
+			<<= BothVCheck()>>
+		<</replace>>
+	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
 <</if>>
 <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
-<br><<link "Show $him off in public">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	You bring $him out onto the promenade, still nude, $his impressively augmented breasts attracting open stares with their perfect roundness and perkiness.
-	<<if $activeSlave.sexualFlaw == "attention whore">>
-		The slut loves being the center of attention and wishes $his tits where even more eye catching.
-	<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "humiliation")>>
-		The slut loves being embarrassed, and $he blushes furiously as $his nipples <<if $activeSlave.nipples != "fuckable">>stiffen<<else>>swell shut<</if>> with arousal despite $his implants having sapped them off some of their sensitivity.
-	<<elseif ($activeSlave.energy > 95)>>
-		The nympho slut loves being shown off, and $he flaunts $his implanted boobs shamelessly.
-	<<elseif ($activeSlave.counter.anal > 100) && ($activeSlave.counter.oral > 100)>>
-		$He's such a veteran sex slave that $he takes the stares in stride.
-	<<else>>
-		$He blushes a little, but tips $his chin up and follows you obediently.
-	<</if>>
-	When you reach a good spot, you grab $his
-	<<if ($activeSlave.weight > 30)>>
-		fat ass
-	<<elseif ($activeSlave.weight > 10)>>
-		plush hips
-	<<elseif ($activeSlave.weight >= -10)>>
-		trim hips
-	<<elseif ($activeSlave.butt > 2)>>
-		big butt
-	<<else>>
-		skinny ass
-	<</if>>
-	and
-	<<if ($activeSlave.height >= 185)>>
-		pull $his tall body in
-	<<elseif ($activeSlave.height >= 160)>>
-		pull $him up on tiptoe
-	<<else>>
-		push $his petite form up onto a railing
-	<</if>>
-	for standing sex. $He cocks $his hips and takes your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> compliantly, and after a few thrusts you reach down, seize $him behind each knee, and
-	<<if $PC.belly >= 5000 && $activeSlave.belly >= 100000>>
-		collapse against a nearby bunch under the excessive weight between your pregnancy and $his _belly stomach. Appreciating the bench's sacrifice, you return to fucking $him.
-		<<if $activeSlave.bellyPreg >= 600000>>
-			Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine.
-		<</if>>
-	<<elseif $activeSlave.belly >= 100000>>
-		pull $him as close as you can with $his _belly belly between you. Struggling to support the immense weight, you back $him against a rail so that you can continue to fuck $him while holding $him.
-		<<if $activeSlave.bellyPreg >= 600000>>
-			Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine.
-		<</if>>
-	<<else>>
-		hoist $his legs up so $he's pinned against your
-		<<if $PC.belly >= 1500>>
-			pregnancy,
-		<<elseif ($PC.boobs == 0)>>
-			chest,
-		<<else>>
-			boobs,
-		<</if>>
-		helpless to do anything but let you hold $him in midair and fuck $him.
-	<</if>>
-	<<if canDoVaginal($activeSlave)>>
-		<<if ($activeSlave.vagina > 1)>>
-			$His pussy can take a hard pounding, so you give it to $him.
-		<<else>>
-			$His poor tight pussy can barely take the pounding you're administering.
-		<</if>>
-		<<= VaginalVCheck()>>
-	<<else>>
-		<<if ($activeSlave.anus > 1)>>
-			$His loose butthole can take a hard pounding, so you give it to $him.
-		<<else>>
-			$His poor tight butthole can barely take the pounding you're administering.
-		<</if>>
-		<<= AnalVCheck()>>
-	<</if>>
-	$He loses all composure, gasping and panting as the massive weight of $his augmented chest weighs $him down, causing $him to all but collapse against you. Despite this, or perhaps partly because of it, $he begins to orgasm,
-	<<if ($activeSlave.chastityPenis == 1)>>
-		the discomfort of being half-hard under $his chastity cage making $him squirm as cum rushes out of the hole at its tip.
-	<<elseif canAchieveErection($activeSlave)>>
-		<<if ($activeSlave.dick > 3)>>
-			$his monster of a cock releasing a jet of cum with each thrust into $him.
-		<<elseif ($activeSlave.dick > 3)>>
-			$his huge cock releasing a jet of cum with each thrust into $him.
-		<<elseif ($activeSlave.dick > 1)>>
-			$his cock releasing a spurt of cum with each thrust into $him.
-		<<else>>
-			$his tiny dick spurting cum with each thrust into $him.
-		<</if>>
-	<<elseif ($activeSlave.dick > 9)>>
-		$his huge, soft cock spurting cum as it wiggles to your motions.
-	<<elseif ($activeSlave.dick > 0)>>
-		$his soft cock scattering cum all over the place as it flops around.
-	<<elseif ($activeSlave.belly >= 1500)>>
-		$his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly adding to $his near-total discomfiture.
-	<<elseif $activeSlave.weight > 95>>
-		$his soft body jiggling as $he climaxes.
-	<<elseif ($activeSlave.muscles > 5)>>
-		$his abs convulsing deliciously as $he climaxes.
-	<<elseif canDoVaginal($activeSlave)>>
-		$his pussy tightening.
-	<<else>>
-		$his poor anal ring tightening.
-	<</if>>
-	The crowd that surrounds you during this noisy spectacle @@.green;is suitably impressed.@@
-	<<run repX(1250, "event", $activeSlave)>>
-	<<= BothVCheck()>>
-	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+	<br><<link "Show $him off in public">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			You bring $him out onto the promenade, still nude, $his impressively augmented breasts attracting open stares with their perfect roundness and perkiness.
+			<<if $activeSlave.sexualFlaw == "attention whore">>
+				The slut loves being the center of attention and wishes $his tits where even more eye catching.
+			<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "humiliation")>>
+				The slut loves being embarrassed, and $he blushes furiously as $his nipples <<if $activeSlave.nipples != "fuckable">>stiffen<<else>>swell shut<</if>> with arousal despite $his implants having sapped them off some of their sensitivity.
+			<<elseif ($activeSlave.energy > 95)>>
+				The nympho slut loves being shown off, and $he flaunts $his implanted boobs shamelessly.
+			<<elseif ($activeSlave.counter.anal > 100) && ($activeSlave.counter.oral > 100)>>
+				$He's such a veteran sex slave that $he takes the stares in stride.
+			<<else>>
+				$He blushes a little, but tips $his chin up and follows you obediently.
+			<</if>>
+			When you reach a good spot, you grab $his
+			<<if ($activeSlave.weight > 30)>>
+				fat ass
+			<<elseif ($activeSlave.weight > 10)>>
+				plush hips
+			<<elseif ($activeSlave.weight >= -10)>>
+				trim hips
+			<<elseif ($activeSlave.butt > 2)>>
+				big butt
+			<<else>>
+				skinny ass
+			<</if>>
+			and
+			<<if ($activeSlave.height >= 185)>>
+				pull $his tall body in
+			<<elseif ($activeSlave.height >= 160)>>
+				pull $him up on tiptoe
+			<<else>>
+				push $his petite form up onto a railing
+			<</if>>
+			for standing sex. $He cocks $his hips and takes your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> compliantly, and after a few thrusts you reach down, seize $him behind each knee, and
+			<<if $PC.belly >= 5000 && $activeSlave.belly >= 100000>>
+				collapse against a nearby bunch under the excessive weight between your pregnancy and $his _belly stomach. Appreciating the bench's sacrifice, you return to fucking $him.
+				<<if $activeSlave.bellyPreg >= 600000>>
+					Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine.
+				<</if>>
+			<<elseif $activeSlave.belly >= 100000>>
+				pull $him as close as you can with $his _belly belly between you. Struggling to support the immense weight, you back $him against a rail so that you can continue to fuck $him while holding $him.
+				<<if $activeSlave.bellyPreg >= 600000>>
+					Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine.
+				<</if>>
+			<<else>>
+				hoist $his legs up so $he's pinned against your
+				<<if $PC.belly >= 1500>>
+					pregnancy,
+				<<elseif ($PC.boobs == 0)>>
+					chest,
+				<<else>>
+					boobs,
+				<</if>>
+				helpless to do anything but let you hold $him in midair and fuck $him.
+			<</if>>
+			<<if canDoVaginal($activeSlave)>>
+				<<if ($activeSlave.vagina > 1)>>
+					$His pussy can take a hard pounding, so you give it to $him.
+				<<else>>
+					$His poor tight pussy can barely take the pounding you're administering.
+				<</if>>
+				<<= VaginalVCheck()>>
+			<<else>>
+				<<if ($activeSlave.anus > 1)>>
+					$His loose butthole can take a hard pounding, so you give it to $him.
+				<<else>>
+					$His poor tight butthole can barely take the pounding you're administering.
+				<</if>>
+				<<= AnalVCheck()>>
+			<</if>>
+			$He loses all composure, gasping and panting as the massive weight of $his augmented chest weighs $him down, causing $him to all but collapse against you. Despite this, or perhaps partly because of it, $he begins to orgasm,
+			<<if ($activeSlave.chastityPenis == 1)>>
+				the discomfort of being half-hard under $his chastity cage making $him squirm as cum rushes out of the hole at its tip.
+			<<elseif canAchieveErection($activeSlave)>>
+				<<if ($activeSlave.dick > 3)>>
+					$his monster of a cock releasing a jet of cum with each thrust into $him.
+				<<elseif ($activeSlave.dick > 3)>>
+					$his huge cock releasing a jet of cum with each thrust into $him.
+				<<elseif ($activeSlave.dick > 1)>>
+					$his cock releasing a spurt of cum with each thrust into $him.
+				<<else>>
+					$his tiny dick spurting cum with each thrust into $him.
+				<</if>>
+			<<elseif ($activeSlave.dick > 9)>>
+				$his huge, soft cock spurting cum as it wiggles to your motions.
+			<<elseif ($activeSlave.dick > 0)>>
+				$his soft cock scattering cum all over the place as it flops around.
+			<<elseif ($activeSlave.belly >= 1500)>>
+				$his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly adding to $his near-total discomfiture.
+			<<elseif $activeSlave.weight > 95>>
+				$his soft body jiggling as $he climaxes.
+			<<elseif ($activeSlave.muscles > 5)>>
+				$his abs convulsing deliciously as $he climaxes.
+			<<elseif canDoVaginal($activeSlave)>>
+				$his pussy tightening.
+			<<else>>
+				$his poor anal ring tightening.
+			<</if>>
+			The crowd that surrounds you during this noisy spectacle @@.green;is suitably impressed.@@
+			<<run repX(1250, "event", $activeSlave)>>
+			<<= BothVCheck()>>
+		<</replace>>
+	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <</if>>
 
 <<case "gagged slave">>
@@ -20386,56 +20392,56 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Give $him something else to gag on">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	As pleasant an image as $activeSlave.slaveName's mouth filled by a $activeSlave.collar is, one of $his mouth's primary purposes is still to provide you with ample <<if $PC.dick == 1>>blowjobs<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunnilingus<</if>>. With $activeSlave.slaveName already kneeling, it is merely a matter of undoing $his gag before you can put $his mouth to work.
-	<<if $activeSlave.skill.oral >= 100>>
-		Though $he has spent much time gagged, $his mastery at giving oral is unaffected.
-	<<elseif $activeSlave.skill.oral > 60>>
-		Though $he has spent much time gagged, $his oral skills still provide ample pleasure.
-	<<else>>
-		$His time spent gagged has limited the growth of $his mediocre oral skills, though $he is still able to provide some relief.
-	<</if>>
-	<<if $activeSlave.teeth == "pointy">>
-		Though your attention is largely sapped by $his tender oral ministrations, you note that $he takes care not to rake you with $his shark-like teeth.
-	<<elseif $activeSlave.lips > 40>>
-		Though your attention is largely sapped by $his tender oral ministrations, you note that $his huge lips are soft and pillowy against you.
-	<<elseif $activeSlave.teeth == "gapped">>
-		Though your attention is largely sapped by $his tender oral ministrations, you note that $he takes care to let you get snagged between $his front teeth.
-	<<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>>
-		Though your attention is largely sapped by $his tender oral ministrations, you note that $he takes care to keep $his braces off you.
-	<</if>>
-	When you eventually move on, it is with
-	<<if $activeSlave.hLength > 1>>
-		a ruffle of $activeSlave.slaveName's $activeSlave.hColor hair
-	<<else>>
-		a rub to $activeSlave.slaveName's scalp
-	<</if>>
-	and the return of the gag to $his mouth. Though $his continued gagging is an uncomfortable experience, $activeSlave.slaveName enjoyed @@.hotpink;being free of it for a moment, even if just to pleasure you.@@
-	<<set $activeSlave.devotion += 4, $activeSlave.counter.oral += 1, $oralTotal += 1>>
+		As pleasant an image as $activeSlave.slaveName's mouth filled by a $activeSlave.collar is, one of $his mouth's primary purposes is still to provide you with ample <<if $PC.dick == 1>>blowjobs<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunnilingus<</if>>. With $activeSlave.slaveName already kneeling, it is merely a matter of undoing $his gag before you can put $his mouth to work.
+		<<if $activeSlave.skill.oral >= 100>>
+			Though $he has spent much time gagged, $his mastery at giving oral is unaffected.
+		<<elseif $activeSlave.skill.oral > 60>>
+			Though $he has spent much time gagged, $his oral skills still provide ample pleasure.
+		<<else>>
+			$His time spent gagged has limited the growth of $his mediocre oral skills, though $he is still able to provide some relief.
+		<</if>>
+		<<if $activeSlave.teeth == "pointy">>
+			Though your attention is largely sapped by $his tender oral ministrations, you note that $he takes care not to rake you with $his shark-like teeth.
+		<<elseif $activeSlave.lips > 40>>
+			Though your attention is largely sapped by $his tender oral ministrations, you note that $his huge lips are soft and pillowy against you.
+		<<elseif $activeSlave.teeth == "gapped">>
+			Though your attention is largely sapped by $his tender oral ministrations, you note that $he takes care to let you get snagged between $his front teeth.
+		<<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>>
+			Though your attention is largely sapped by $his tender oral ministrations, you note that $he takes care to keep $his braces off you.
+		<</if>>
+		When you eventually move on, it is with
+		<<if $activeSlave.hLength > 1>>
+			a ruffle of $activeSlave.slaveName's $activeSlave.hColor hair
+		<<else>>
+			a rub to $activeSlave.slaveName's scalp
+		<</if>>
+		and the return of the gag to $his mouth. Though $his continued gagging is an uncomfortable experience, $activeSlave.slaveName enjoyed @@.hotpink;being free of it for a moment, even if just to pleasure you.@@
+		<<set $activeSlave.devotion += 4, $activeSlave.counter.oral += 1, $oralTotal += 1>>
 	<</replace>>
 <</link>>
 <br><<link "Remove the gag for a few minutes">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You wordlessly remove the $activeSlave.collar and watch as $activeSlave.slaveName opens and closes $his mouth testingly, as if $he has forgotten what it feels like to do so without obstruction. Though you eventually return to the gag to its rightful place in $his mouth, $he @@.mediumaquamarine;trusts you more@@ for granting $him a few moments respite from the gag.
-	<<set $activeSlave.trust += 4>>
+		You wordlessly remove the $activeSlave.collar and watch as $activeSlave.slaveName opens and closes $his mouth testingly, as if $he has forgotten what it feels like to do so without obstruction. Though you eventually return to the gag to its rightful place in $his mouth, $he @@.mediumaquamarine;trusts you more@@ for granting $him a few moments respite from the gag.
+		<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Torment $him with the gag">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Though having a $activeSlave.collar constrict $his mouth is torment enough, you take the time to linger and add to $his torturous existence. $activeSlave.slaveName soon discovers that the straps of a gag can always be made tighter, the
-	<<if ($activeSlave.collar == "ball gag")>>
-		ball can always be made larger,
-	<<elseif ($activeSlave.collar == "bit gag")>>
-		the bit can always be made thicker,
-	<<elseif ($activeSlave.collar == "dildo gag")>>
-		the dildo can always be made larger,
-	<<elseif ($activeSlave.collar == "massive dildo gag")>>
-		the dildo can always be made wider and longer,
-	<</if>>
-	and the punishments rendered for daring to show any discomfort can always be harsher and stricter. Come the end of your session with $him, $activeSlave.slaveName <<if $activeSlave.fetish == "masochist">> is mortified by the intensity of $his orgasms, @@.hotpink;and more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;scuttles away quickly, having learnt a harsh lesson about your power over $his body.@@
-	<<set $activeSlave.trust -= 5>>
-	<<if $activeSlave.fetish == "masochist">><<set $activeSlave.devotion += 4>><</if>>
+		Though having a $activeSlave.collar constrict $his mouth is torment enough, you take the time to linger and add to $his torturous existence. $activeSlave.slaveName soon discovers that the straps of a gag can always be made tighter, the
+		<<if ($activeSlave.collar == "ball gag")>>
+			ball can always be made larger,
+		<<elseif ($activeSlave.collar == "bit gag")>>
+			the bit can always be made thicker,
+		<<elseif ($activeSlave.collar == "dildo gag")>>
+			the dildo can always be made larger,
+		<<elseif ($activeSlave.collar == "massive dildo gag")>>
+			the dildo can always be made wider and longer,
+		<</if>>
+		and the punishments rendered for daring to show any discomfort can always be harsher and stricter. Come the end of your session with $him, $activeSlave.slaveName <<if $activeSlave.fetish == "masochist">> is mortified by the intensity of $his orgasms, @@.hotpink;and more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;scuttles away quickly, having learnt a harsh lesson about your power over $his body.@@
+		<<set $activeSlave.trust -= 5>>
+		<<if $activeSlave.fetish == "masochist">><<set $activeSlave.devotion += 4>><</if>>
 	<</replace>>
 <</link>>
 
@@ -20444,108 +20450,108 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "Fuck $his boobs">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	When $he <<if canSee($activeSlave)>>sees you <<if $PC.dick == 1>>get your dick out<<else>>approaching $him with sapphic lust in your eyes<</if>><<elseif canHear($activeSlave)>>hears you <<if $PC.dick == 1>>get your dick out<<else>>hungrily approach<</if>><<else>>feels your fingertips brush against $his nipples<</if>>, $he
-	<<if $activeSlave.energy > 80>>grins with anticipation,
-	<<elseif $activeSlave.trust > 20>>smiles appealingly,
-	<<else>>does $his best to look submissive,
-	<</if>>
-	and offers you $his chest.
-	<<if $PC.dick == 1>>
-		<<if $activeSlave.belly >= 300000>>You have to straddle $his _belly stomach to get close enough, but $his tantalizing breasts are worth the strain.<</if>>
-		You collect some lubrication for it by sticking your dick in $his mouth.
-		<<if $activeSlave.skill.oral >= 100>>
-			$He swallows you to your base, and is such a skilled cocksucker that $he salivates at will, doing $his best to get you
-		<<else>>
-			$He does $his best to swallow you as deeply as $he can manage, and get your cock
+		When $he <<if canSee($activeSlave)>>sees you <<if $PC.dick == 1>>get your dick out<<else>>approaching $him with sapphic lust in your eyes<</if>><<elseif canHear($activeSlave)>>hears you <<if $PC.dick == 1>>get your dick out<<else>>hungrily approach<</if>><<else>>feels your fingertips brush against $his nipples<</if>>, $he
+		<<if $activeSlave.energy > 80>>grins with anticipation,
+		<<elseif $activeSlave.trust > 20>>smiles appealingly,
+		<<else>>does $his best to look submissive,
 		<</if>>
-		nice and slick. You pull your member out of $his industriously sucking mouth with a pop, and slide it between $his warm breasts. $He promptly grabs them and squeezes them together, forming a nice channel for you to fuck. As you start pounding away, $he does $his best to crane $his head down and suckle your dickhead whenever it appears between $his boobs, adding more lubrication from $his lewdly wet mouth. $He knows when you're about to climax, and makes no attempt to avoid it, opening $his mouth wide to accept your load. $He catches most of it, but your generous ejaculation spatters $his face with pearly decoration.
-	<<else>>
-		Deciding to do something a little more intimate than fucking $his cleavage with a strap-on, you walk forward and into $his face, pressing $him inexorably backwards as $he nuzzles your pussy until $he's forced to collapse onto the ground. Then you scoot backwards a little, until you're
-		<<if $activeSlave.belly >= 10000>>
-			crammed between $his _belly middle and breasts.
+		and offers you $his chest.
+		<<if $PC.dick == 1>>
+			<<if $activeSlave.belly >= 300000>>You have to straddle $his _belly stomach to get close enough, but $his tantalizing breasts are worth the strain.<</if>>
+			You collect some lubrication for it by sticking your dick in $his mouth.
+			<<if $activeSlave.skill.oral >= 100>>
+				$He swallows you to your base, and is such a skilled cocksucker that $he salivates at will, doing $his best to get you
+			<<else>>
+				$He does $his best to swallow you as deeply as $he can manage, and get your cock
+			<</if>>
+			nice and slick. You pull your member out of $his industriously sucking mouth with a pop, and slide it between $his warm breasts. $He promptly grabs them and squeezes them together, forming a nice channel for you to fuck. As you start pounding away, $he does $his best to crane $his head down and suckle your dickhead whenever it appears between $his boobs, adding more lubrication from $his lewdly wet mouth. $He knows when you're about to climax, and makes no attempt to avoid it, opening $his mouth wide to accept your load. $He catches most of it, but your generous ejaculation spatters $his face with pearly decoration.
 		<<else>>
-			straddling $his ribcage just below $his breasts.
+			Deciding to do something a little more intimate than fucking $his cleavage with a strap-on, you walk forward and into $his face, pressing $him inexorably backwards as $he nuzzles your pussy until $he's forced to collapse onto the ground. Then you scoot backwards a little, until you're
+			<<if $activeSlave.belly >= 10000>>
+				crammed between $his _belly middle and breasts.
+			<<else>>
+				straddling $his ribcage just below $his breasts.
+			<</if>>
+			$His huge breasts rest atop your inner thighs,
+			<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
+				$his skin taut against yours, from the implants.
+			<<else>>
+				heavy and soft and female.
+			<</if>>
+			You ride $him gently like this for a little while, enjoying the feminine weight of $him and the effects of this intimacy on $his face. Once you're ready for some more stimulation, you pull one of $his hands down between $his breasts; $he gets $his thumb down into $his cleavage, all the way down until it can stimulate your button and bring you to a soft orgasm. Pleased, you slide down until you're face to face with $him, and give $him a kiss.
 		<</if>>
-		$His huge breasts rest atop your inner thighs,
-		<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
-			$his skin taut against yours, from the implants.
-		<<else>>
-			heavy and soft and female.
+		$He
+		<<if $activeSlave.energy > 80>>was looking after $himself with a hand the whole time, and $he @@.mediumaquamarine;smiles gratefully at you@@ with satisfaction.
+		<<elseif $activeSlave.trust > 20>>giggles a little, @@.mediumaquamarine;pleased with $himself.@@
+		<<else>>smiles hesitantly, clearly thinking that @@.mediumaquamarine;$he did well.@@
 		<</if>>
-		You ride $him gently like this for a little while, enjoying the feminine weight of $him and the effects of this intimacy on $his face. Once you're ready for some more stimulation, you pull one of $his hands down between $his breasts; $he gets $his thumb down into $his cleavage, all the way down until it can stimulate your button and bring you to a soft orgasm. Pleased, you slide down until you're face to face with $him, and give $him a kiss.
-	<</if>>
-	$He
-	<<if $activeSlave.energy > 80>>was looking after $himself with a hand the whole time, and $he @@.mediumaquamarine;smiles gratefully at you@@ with satisfaction.
-	<<elseif $activeSlave.trust > 20>>giggles a little, @@.mediumaquamarine;pleased with $himself.@@
-	<<else>>smiles hesitantly, clearly thinking that @@.mediumaquamarine;$he did well.@@
-	<</if>>
-	<<set $activeSlave.trust += 5>>
-	<<EventFetish $activeSlave "boobs">>
+		<<set $activeSlave.trust += 5>>
+		<<EventFetish $activeSlave "boobs">>
 	<</replace>>
 <</link>>
 <br><<link "Hurt $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You decide to exercise a little maliciousness. You take a step forward, producing a look of
-	<<if $activeSlave.energy > 80>>lustful anticipation<<elseif $activeSlave.trust > 20>>expectation<<else>>trepidation<</if>>,
-	but then you stop, <<if canSee($activeSlave)>>wordlessly<<else>>loudly<</if>> gesturing at $him to continue. $He does, bending $him back forward and backward, concave and convex, rolling $himself around on $his hips a little, and making $his <<if $activeSlave.belly >= 5000>>_belly belly and <</if>>breasts move mesmerizingly. Eventually, $he stretches deeply enough that<<if $activeSlave.trust <= 50>> $he lets $his guard down and<</if>> $his eyes close again.
-	<<switch $activeSlave.nipples>>
-	<<case "tiny">>
-		$His tiny little nipples are too small to grab and pull effectively, so you simply flick them, aiming a vicious high-velocity fingernail at each of them, using both hands.
-	<<case "puffy">>
-		$His puffy nipples provide shamefully easy targets. You grab them in a mercilessly tight grip and haul, jerking $his whole body forward until $he's about to topple over.
-	<<case "partially inverted">>
-		You grab each of $his nipples around the margins of $his areolae, and squeeze them with such force that, partially inverted as they are, they protrude instantly.
-	<<case "inverted">>
-		You seize each of $his inverted nipples, your thumbs uppermost, squeezing $his sensitive, hidden nipples inside their fleshy prisons with cruel force.
-	<<case "huge">>
-		$His huge nipples provide you an excellent grip as you grab them and haul on them, jerking $his whole body forward until $he's about to topple over.
-	<<case "fuckable">>
-		You cram a fist into each of $his nipples and spread your fingers wide, making sure that you don't come loose as you jerk $his body forward.
-	<<default>>
-		You grab each of $his nipples in a merciless grip and pinch them with abandon, adding a cruel twist as soon as you've got them held tightly enough.
-	<</switch>>
-	$His <<= App.Desc.eyeColor($activeSlave)>> eyes fly open and $he
-	<<if $activeSlave.voice == 1>>
-		bellows with pain, $his deep voice very loud.
-	<<elseif $activeSlave.voice == 2>>
-		screams at the tops of $his lungs.
-	<<elseif $activeSlave.voice == 3>>
-		shrieks, $his high, girlish voice very shrill.
-	<</if>>
-	The sudden agony discombobulates $him so badly that for a few moments, $he has no idea what's going on, and $his hands fly forward reflexively. $He manages to stop $himself at the last minute, realizing that trying to knock your hands away from $his poor nipples would be a very bad idea indeed. $He looks up at you with <<if canSee($activeSlave)>>huge eyes<<else>>terror splashed across $his face<</if>>, mewling helplessly, @@.gold;tears beginning to collect at the corners of $his eyes.@@ Pleased, you turn and go.
-	<<set $activeSlave.trust -= 5>>
-	<<EventFetish $activeSlave "masochist">>
+		You decide to exercise a little maliciousness. You take a step forward, producing a look of
+		<<if $activeSlave.energy > 80>>lustful anticipation<<elseif $activeSlave.trust > 20>>expectation<<else>>trepidation<</if>>,
+		but then you stop, <<if canSee($activeSlave)>>wordlessly<<else>>loudly<</if>> gesturing at $him to continue. $He does, bending $him back forward and backward, concave and convex, rolling $himself around on $his hips a little, and making $his <<if $activeSlave.belly >= 5000>>_belly belly and <</if>>breasts move mesmerizingly. Eventually, $he stretches deeply enough that<<if $activeSlave.trust <= 50>> $he lets $his guard down and<</if>> $his eyes close again.
+		<<switch $activeSlave.nipples>>
+		<<case "tiny">>
+			$His tiny little nipples are too small to grab and pull effectively, so you simply flick them, aiming a vicious high-velocity fingernail at each of them, using both hands.
+		<<case "puffy">>
+			$His puffy nipples provide shamefully easy targets. You grab them in a mercilessly tight grip and haul, jerking $his whole body forward until $he's about to topple over.
+		<<case "partially inverted">>
+			You grab each of $his nipples around the margins of $his areolae, and squeeze them with such force that, partially inverted as they are, they protrude instantly.
+		<<case "inverted">>
+			You seize each of $his inverted nipples, your thumbs uppermost, squeezing $his sensitive, hidden nipples inside their fleshy prisons with cruel force.
+		<<case "huge">>
+			$His huge nipples provide you an excellent grip as you grab them and haul on them, jerking $his whole body forward until $he's about to topple over.
+		<<case "fuckable">>
+			You cram a fist into each of $his nipples and spread your fingers wide, making sure that you don't come loose as you jerk $his body forward.
+		<<default>>
+			You grab each of $his nipples in a merciless grip and pinch them with abandon, adding a cruel twist as soon as you've got them held tightly enough.
+		<</switch>>
+		$His <<= App.Desc.eyeColor($activeSlave)>> eyes fly open and $he
+		<<if $activeSlave.voice == 1>>
+			bellows with pain, $his deep voice very loud.
+		<<elseif $activeSlave.voice == 2>>
+			screams at the tops of $his lungs.
+		<<elseif $activeSlave.voice == 3>>
+			shrieks, $his high, girlish voice very shrill.
+		<</if>>
+		The sudden agony discombobulates $him so badly that for a few moments, $he has no idea what's going on, and $his hands fly forward reflexively. $He manages to stop $himself at the last minute, realizing that trying to knock your hands away from $his poor nipples would be a very bad idea indeed. $He looks up at you with <<if canSee($activeSlave)>>huge eyes<<else>>terror splashed across $his face<</if>>, mewling helplessly, @@.gold;tears beginning to collect at the corners of $his eyes.@@ Pleased, you turn and go.
+		<<set $activeSlave.trust -= 5>>
+		<<EventFetish $activeSlave "masochist">>
 	<</replace>>
 <</link>>
 <<if $activeSlave.lactation > 0>>
-<br><<link "Drink from $him">>
-	<<EventNameDelink $activeSlave>>
-	<<replace "#result">>
-	$His <<if canSee($activeSlave)>>eyes widen<<else>>face light up<</if>> with surprise when you
-	<<if $activeSlave.belly >= 300000>>
-		lean against $his _belly stomach.
-	<<else>>
-		kneel down in front of $him.
-	<</if>>
-	$He begins to straighten, to face you, but you place a <<if $PC.title == 1>>strong<<else>>feminine<</if>> hand on $his chest, right between $his breasts, and keep $him leaning backward. Then, without any preamble, you take $his right breast in both of your hands, bend forward, and take $his nipple into your mouth. $He gasps<<if canTalk($activeSlave)>>, <<say>>s "Oh, <<Master>>"<</if>> quietly, and then begins to moan as you begin to suck powerfully,
-	<<switch $activeSlave.nipples>>
-	<<case "tiny">>drawing $his tiny nipple entirely into your mouth.
-	<<case "puffy">>engorging $his soft, puffy nipple until it fills your mouth.
-	<<case "partially inverted">>pulling $his partially inverted nipple straight out and into your mouth.
-	<<case "inverted">>gradually pulling at $his inverted nipple until it's finally forced to pop out and into your mouth.
-	<<case "huge">>$his huge nipple filling your mouth comfortably.
-	<<case "fuckable">>drawing an unreasonable amount of breast into your mouth just to keep a seal.
-	<<default>>pulling $his soft nipple and some of the areolae around it into your mouth.
-	<</switch>>
-	$His rich milk begins to flow across your tongue, creamy and with a hint of vanilla. $He breathes faster and faster as $he becomes aroused, but then the stimulation peaks. You keep drinking from $him, making no move to stop nursing and start fucking $him. $He sighs with sudden contentment, realizing that you're going to drink every drop $he has, and $his sudden relaxation sends a little extra gush of milk into your mouth. $He @@.hotpink;definitely enjoys the experience,@@ leaning back compliantly as you drain that breast and then $his left one, too.
-	<<if $activeSlave.boobs > 25000 || ($activeSlave.boobs > 10000 && $activeSlave.lactation > 1)>>Your clothes feel tight around your middle for the rest of the day, you may have indulged a little too much.<</if>>
-	<<set $activeSlave.devotion += 5>>
-	<<EventFetish $activeSlave "boobs">>
-	<<set $activeSlave.lactationDuration = 2>>
-	<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
-	<</replace>>
-<</link>>
+	<br><<link "Drink from $him">>
+		<<EventNameDelink $activeSlave>>
+		<<replace "#result">>
+			$His <<if canSee($activeSlave)>>eyes widen<<else>>face light up<</if>> with surprise when you
+			<<if $activeSlave.belly >= 300000>>
+				lean against $his _belly stomach.
+			<<else>>
+				kneel down in front of $him.
+			<</if>>
+			$He begins to straighten, to face you, but you place a <<if $PC.title == 1>>strong<<else>>feminine<</if>> hand on $his chest, right between $his breasts, and keep $him leaning backward. Then, without any preamble, you take $his right breast in both of your hands, bend forward, and take $his nipple into your mouth. $He gasps<<if canTalk($activeSlave)>>, <<say>>s "Oh, <<Master>>"<</if>> quietly, and then begins to moan as you begin to suck powerfully,
+			<<switch $activeSlave.nipples>>
+			<<case "tiny">>drawing $his tiny nipple entirely into your mouth.
+			<<case "puffy">>engorging $his soft, puffy nipple until it fills your mouth.
+			<<case "partially inverted">>pulling $his partially inverted nipple straight out and into your mouth.
+			<<case "inverted">>gradually pulling at $his inverted nipple until it's finally forced to pop out and into your mouth.
+			<<case "huge">>$his huge nipple filling your mouth comfortably.
+			<<case "fuckable">>drawing an unreasonable amount of breast into your mouth just to keep a seal.
+			<<default>>pulling $his soft nipple and some of the areolae around it into your mouth.
+			<</switch>>
+			$His rich milk begins to flow across your tongue, creamy and with a hint of vanilla. $He breathes faster and faster as $he becomes aroused, but then the stimulation peaks. You keep drinking from $him, making no move to stop nursing and start fucking $him. $He sighs with sudden contentment, realizing that you're going to drink every drop $he has, and $his sudden relaxation sends a little extra gush of milk into your mouth. $He @@.hotpink;definitely enjoys the experience,@@ leaning back compliantly as you drain that breast and then $his left one, too.
+			<<if $activeSlave.boobs > 25000 || ($activeSlave.boobs > 10000 && $activeSlave.lactation > 1)>>Your clothes feel tight around your middle for the rest of the day, you may have indulged a little too much.<</if>>
+			<<set $activeSlave.devotion += 5>>
+			<<EventFetish $activeSlave "boobs">>
+			<<set $activeSlave.lactationDuration = 2>>
+			<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
+		<</replace>>
+	<</link>>
 <</if>>
 
 <<case "modest clothes">>
@@ -20553,8 +20559,8 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 <<link "No">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him no. $He's a good enough slave that making a simple request and having you return a straightforward negative without punishment @@.mediumaquamarine;makes $him just slightly more trusting.@@ It's nice to be allowed to ask things.
-	<<set $activeSlave.trust += 2>>
+		You tell $him no. $He's a good enough slave that making a simple request and having you return a straightforward negative without punishment @@.mediumaquamarine;makes $him just slightly more trusting.@@ It's nice to be allowed to ask things.
+		<<set $activeSlave.trust += 2>>
 	<</replace>>
 <</link>>
 <br><<link "Show $him how much you like $his usual outfit">>
@@ -20568,176 +20574,176 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 				<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
 			<</if>>
 		<</if>>
-		/* 000-250-006 */
-	<</replace>>
-	<<replace "#result">>
-	You tell $him to go get dressed as usual. $His face falls a little, but there was no condemnation in your tone, and $he hurries off,
-	<<if $activeSlave.dick > 6>>
-		monstrous cock dangling.
-	<<elseif $activeSlave.balls > 4>>
-		big balls dangling.
-	<<elseif $activeSlave.bellyFluid >= 5000 || $activeSlave.weight > 95>>
-		big belly jiggling.
-	<<elseif $activeSlave.belly >= 5000>>
-		as fast as $his swollen belly will allow.
-	<<elseif ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
-		fake tits bouncing.
-	<<elseif $activeSlave.butt > 4>>
-		$his big booty jiggling.
-	<<elseif $activeSlave.boobs > 2000>>
-		udders jiggling.
-	<<else>>
-		giving you a nice view of $his naked rear.
-	<</if>>
-	$He returns quickly, in $his proper
-	<<switch $activeSlave.clothes>>
-	<<case "a toga">>
-		toga
-	<<case "a huipil">>
-		huipil
-	<<case "a long qipao" "a slutty qipao">>
-		qipao
-	<<case "a penitent nuns habit">>
-		habit
-	<<case "a slave gown" "a ball gown">>
-		gown
-	<<case "a comfortable bodysuit">>
-		bodysuit
-	<<case "a leotard">>
-		leotard
-	<<case "a bunny outfit">>
-		bunny outfit
-	<<case "a nice nurse outfit">>
-		nurse outfit
-	<<case "a slutty nurse outfit">>
-		slutty nurse outfit
-	<<case "a schoolgirl outfit">>
-		school clothes
-	<<case "a hijab and abaya">>
-		hijab and abaya
-	<<case "a kimono">>
-		kimono
-	<<case "a nice maid outfit">>
-		maid outfit
-	<<case "a slutty maid outfit">>
-		skimpy maid outfit
-	<<case "a biyelgee costume" "a dirndl" "a halter top dress" "a mini dress" "a maternity dress">>
-		dress
-	<<case "a latex catsuit">>
-		latex catsuit
-	<<case "a military uniform" "a mounty outfit" "a red army uniform" "a schutzstaffel uniform" "a slutty schutzstaffel uniform">>
-		uniform
-	<<case "battlearmor">>
-		battlearmor
-	<<case "lederhosen">>
-		lederhosen
-	<<case "spats and a tank top">>
-		spats
-	<<case "a burkini" "a monokini">>
-		swimsuit
-	<<case "a chattel habit" "a fallen nuns habit">>
-		slutty habit
-	<<case "a cheerleader outfit">>
-		cheerleader outfit
-	<<case "a cybersuit">>
-		cybersuit
-	<<case "an apron">>
-		apron
-	<<case "a scalemail bikini">>
-		scalemail bikini
-	<<case "a slutty outfit">>
-		slutty outfit
-	<<case "a string bikini">>
-		string bikini
-	<<case "a succubus outfit">>
-		succubus getup
-	<<case "a hijab and blouse" "conservative clothing">>
-		conservative clothes
-	<<default>>
-		$activeSlave.clothes
-	<</switch>>
-	You tell $him that you like how $he looks, and that $he's pretty. $He wasn't expecting such a blunt compliment, and <<if canSee($activeSlave)>>$his <<= App.Desc.eyeColor($activeSlave)>> eyes flick down to<<else>>$he faces<</if>> the ground for a moment as $he blushes. "T-thank you, <<Master>>," $he stutters.
-	<br><br>
-	You add that $he looks so good that $he had better take $his nice clean
-	<<switch $activeSlave.clothes>>
-	<<case "a toga">>
-		toga
-	<<case "a huipil">>
-		huipil
-	<<case "a long qipao" "a slutty qipao">>
-		qipao
-	<<case "a penitent nuns habit">>
-		habit
-	<<case "a slave gown" "a ball gown">>
-		gown
-	<<case "a comfortable bodysuit">>
-		bodysuit
-	<<case "a leotard">>
-		leotard
-	<<case "a bunny outfit">>
-		bunny outfit
-	<<case "a nice nurse outfit">>
-		nurse outfit
-	<<case "a slutty nurse outfit">>
-		slutty nurse outfit
-	<<case "a schoolgirl outfit">>
-		school clothes
-	<<case "a hijab and abaya">>
-		hijab and abaya
-	<<case "a kimono">>
-		kimono
-	<<case "a nice maid outfit">>
-		maid outfit
-	<<case "a slutty maid outfit">>
-		skimpy maid outfit
-	<<case "a biyelgee costume" "a dirndl" "a halter top dress" "a mini dress" "a maternity dress">>
-		dress
-	<<case "a latex catsuit">>
-		latex catsuit
-	<<case "a military uniform" "a mounty outfit" "a red army uniform" "a schutzstaffel uniform" "a slutty schutzstaffel uniform">>
-		uniform
-	<<case "battlearmor">>
-		battlearmor
-	<<case "lederhosen">>
-		lederhosen
-	<<case "spats and a tank top">>
-		spats
-	<<case "a burkini" "a monokini">>
-		swimsuit
-	<<case "a chattel habit" "a fallen nuns habit">>
-		slutty habit
-	<<case "a cheerleader outfit">>
-		cheerleader outfit
-	<<case "a cybersuit">>
-		cybersuit
-	<<case "an apron">>
-		apron
-	<<case "a scalemail bikini">>
-		scalemail bikini
-	<<case "a slutty outfit">>
-		slutty outfit
-	<<case "a string bikini">>
-		string bikini
-	<<case "a succubus outfit">>
-		succubus getup
-	<<case "a hijab and blouse" "conservative clothing">>
-		conservative clothes
-	<<default>>
-		$activeSlave.clothes
-	<</switch>>
-	off again, because
-	<<if canDoVaginal($activeSlave) && $activeSlave.vagina != 0>>
-		you're going to <<if $PC.dick>>fuck<<else>>trib<</if>> $his senseless.
-		<<= VaginalVCheck()>>
-	<<elseif canDoAnal($activeSlave) && $activeSlave.anus != 0>>
-		you're going to fuck $his butt<<if $activeSlave.balls>> until $he cums<</if>>.
-		<<= AnalVCheck()>>
-	<<else>>
-		$he's going to <<if $PC.dick>>suck your dick until you cover $him in cum<<else>>eat you out until $he's got your pussyjuice running down $his chin<</if>>.
-		<<set $activeSlave.counter.oral += 1, $oralTotal += 1>>
-	<</if>>
-	$He giggles at the sudden lewdness, and quickly strips naked again, complimented and @@.hotpink;eager to be used.@@
-	<<set $activeSlave.devotion += 5>>
+		/* 000-250-006 */
+	<</replace>>
+	<<replace "#result">>
+		You tell $him to go get dressed as usual. $His face falls a little, but there was no condemnation in your tone, and $he hurries off,
+		<<if $activeSlave.dick > 6>>
+			monstrous cock dangling.
+		<<elseif $activeSlave.balls > 4>>
+			big balls dangling.
+		<<elseif $activeSlave.bellyFluid >= 5000 || $activeSlave.weight > 95>>
+			big belly jiggling.
+		<<elseif $activeSlave.belly >= 5000>>
+			as fast as $his swollen belly will allow.
+		<<elseif ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
+			fake tits bouncing.
+		<<elseif $activeSlave.butt > 4>>
+			$his big booty jiggling.
+		<<elseif $activeSlave.boobs > 2000>>
+			udders jiggling.
+		<<else>>
+			giving you a nice view of $his naked rear.
+		<</if>>
+		$He returns quickly, in $his proper
+		<<switch $activeSlave.clothes>>
+		<<case "a toga">>
+			toga
+		<<case "a huipil">>
+			huipil
+		<<case "a long qipao" "a slutty qipao">>
+			qipao
+		<<case "a penitent nuns habit">>
+			habit
+		<<case "a slave gown" "a ball gown">>
+			gown
+		<<case "a comfortable bodysuit">>
+			bodysuit
+		<<case "a leotard">>
+			leotard
+		<<case "a bunny outfit">>
+			bunny outfit
+		<<case "a nice nurse outfit">>
+			nurse outfit
+		<<case "a slutty nurse outfit">>
+			slutty nurse outfit
+		<<case "a schoolgirl outfit">>
+			school clothes
+		<<case "a hijab and abaya">>
+			hijab and abaya
+		<<case "a kimono">>
+			kimono
+		<<case "a nice maid outfit">>
+			maid outfit
+		<<case "a slutty maid outfit">>
+			skimpy maid outfit
+		<<case "a biyelgee costume" "a dirndl" "a halter top dress" "a mini dress" "a maternity dress">>
+			dress
+		<<case "a latex catsuit">>
+			latex catsuit
+		<<case "a military uniform" "a mounty outfit" "a red army uniform" "a schutzstaffel uniform" "a slutty schutzstaffel uniform">>
+			uniform
+		<<case "battlearmor">>
+			battlearmor
+		<<case "lederhosen">>
+			lederhosen
+		<<case "spats and a tank top">>
+			spats
+		<<case "a burkini" "a monokini">>
+			swimsuit
+		<<case "a chattel habit" "a fallen nuns habit">>
+			slutty habit
+		<<case "a cheerleader outfit">>
+			cheerleader outfit
+		<<case "a cybersuit">>
+			cybersuit
+		<<case "an apron">>
+			apron
+		<<case "a scalemail bikini">>
+			scalemail bikini
+		<<case "a slutty outfit">>
+			slutty outfit
+		<<case "a string bikini">>
+			string bikini
+		<<case "a succubus outfit">>
+			succubus getup
+		<<case "a hijab and blouse" "conservative clothing">>
+			conservative clothes
+		<<default>>
+			$activeSlave.clothes
+		<</switch>>
+		You tell $him that you like how $he looks, and that $he's pretty. $He wasn't expecting such a blunt compliment, and <<if canSee($activeSlave)>>$his <<= App.Desc.eyeColor($activeSlave)>> eyes flick down to<<else>>$he faces<</if>> the ground for a moment as $he blushes. "T-thank you, <<Master>>," $he stutters.
+		<br><br>
+		You add that $he looks so good that $he had better take $his nice clean
+		<<switch $activeSlave.clothes>>
+		<<case "a toga">>
+			toga
+		<<case "a huipil">>
+			huipil
+		<<case "a long qipao" "a slutty qipao">>
+			qipao
+		<<case "a penitent nuns habit">>
+			habit
+		<<case "a slave gown" "a ball gown">>
+			gown
+		<<case "a comfortable bodysuit">>
+			bodysuit
+		<<case "a leotard">>
+			leotard
+		<<case "a bunny outfit">>
+			bunny outfit
+		<<case "a nice nurse outfit">>
+			nurse outfit
+		<<case "a slutty nurse outfit">>
+			slutty nurse outfit
+		<<case "a schoolgirl outfit">>
+			school clothes
+		<<case "a hijab and abaya">>
+			hijab and abaya
+		<<case "a kimono">>
+			kimono
+		<<case "a nice maid outfit">>
+			maid outfit
+		<<case "a slutty maid outfit">>
+			skimpy maid outfit
+		<<case "a biyelgee costume" "a dirndl" "a halter top dress" "a mini dress" "a maternity dress">>
+			dress
+		<<case "a latex catsuit">>
+			latex catsuit
+		<<case "a military uniform" "a mounty outfit" "a red army uniform" "a schutzstaffel uniform" "a slutty schutzstaffel uniform">>
+			uniform
+		<<case "battlearmor">>
+			battlearmor
+		<<case "lederhosen">>
+			lederhosen
+		<<case "spats and a tank top">>
+			spats
+		<<case "a burkini" "a monokini">>
+			swimsuit
+		<<case "a chattel habit" "a fallen nuns habit">>
+			slutty habit
+		<<case "a cheerleader outfit">>
+			cheerleader outfit
+		<<case "a cybersuit">>
+			cybersuit
+		<<case "an apron">>
+			apron
+		<<case "a scalemail bikini">>
+			scalemail bikini
+		<<case "a slutty outfit">>
+			slutty outfit
+		<<case "a string bikini">>
+			string bikini
+		<<case "a succubus outfit">>
+			succubus getup
+		<<case "a hijab and blouse" "conservative clothing">>
+			conservative clothes
+		<<default>>
+			$activeSlave.clothes
+		<</switch>>
+		off again, because
+		<<if canDoVaginal($activeSlave) && $activeSlave.vagina != 0>>
+			you're going to <<if $PC.dick>>fuck<<else>>trib<</if>> $his senseless.
+			<<= VaginalVCheck()>>
+		<<elseif canDoAnal($activeSlave) && $activeSlave.anus != 0>>
+			you're going to fuck $his butt<<if $activeSlave.balls>> until $he cums<</if>>.
+			<<= AnalVCheck()>>
+		<<else>>
+			$he's going to <<if $PC.dick>>suck your dick until you cover $him in cum<<else>>eat you out until $he's got your pussyjuice running down $his chin<</if>>.
+			<<set $activeSlave.counter.oral += 1, $oralTotal += 1>>
+		<</if>>
+		$He giggles at the sudden lewdness, and quickly strips naked again, complimented and @@.hotpink;eager to be used.@@
+		<<set $activeSlave.devotion += 5>>
 	<</replace>>
 <</link>>
 <br><<link "Put $him in a string bikini">>
@@ -20756,34 +20762,34 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 	<</replace>>
 	<<set $activeSlave.clothes = _clothesTemp>>
 	<<replace "#result">>
-	You tell $him that the wardrobe's sorting system will present $him with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thank<<s>>, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but girls everywhere love trying on new clothes. $He makes an entrance when $he comes back, spinning around to show off. $He's wearing the briefest possible string bikini. The top, rather than having patches of material to cover $his nipples, forms a string triangle around them, framing them but not covering them. The bottom is a single string in front, <<if $activeSlave.dick>>which looks rather sad and alone, pushed aside by $his dick as it is<<elseif $activeSlave.labia>>and it's embraced completely by $his generous pussylips<<else>>and it threatens to disappear inside $his pussylips<</if>>. "Thi<<s>> feel<<s>> <<s>>o hot, <<Master>>," $he <<say>>s, and
-	<<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">>
-		blushes cutely. $He looks up at you, <<if canSee($activeSlave)>>sees<<else>>feels<</if>> the way you're staring at $him, and hangs $his head, blushing even harder.
-	<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">>
-		turns around again, bending a little and cocking $his hips to show off the way the string between $his buttocks totally fails to conceal $his <<if $activeSlave.anus > 2>>huge soft asspussy<<elseif $activeSlave.anus > 1>>nice butthole<<else>>tight little anus<</if>>.
-	<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">>
-		bounces $his
-		<<if $activeSlave.boobsImplant>>
-			fake tits.
-		<<elseif $activeSlave.boobs > 8000>>
-			earth-shattering tits.
-		<<elseif $activeSlave.boobs > 2000>>
-			huge boobs.
-		<<elseif $activeSlave.boobs > 400>>
-			boobs.
+		You tell $him that the wardrobe's sorting system will present $him with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thank<<s>>, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but girls everywhere love trying on new clothes. $He makes an entrance when $he comes back, spinning around to show off. $He's wearing the briefest possible string bikini. The top, rather than having patches of material to cover $his nipples, forms a string triangle around them, framing them but not covering them. The bottom is a single string in front, <<if $activeSlave.dick>>which looks rather sad and alone, pushed aside by $his dick as it is<<elseif $activeSlave.labia>>and it's embraced completely by $his generous pussylips<<else>>and it threatens to disappear inside $his pussylips<</if>>. "Thi<<s>> feel<<s>> <<s>>o hot, <<Master>>," $he <<say>>s, and
+		<<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">>
+			blushes cutely. $He looks up at you, <<if canSee($activeSlave)>>sees<<else>>feels<</if>> the way you're staring at $him, and hangs $his head, blushing even harder.
+		<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">>
+			turns around again, bending a little and cocking $his hips to show off the way the string between $his buttocks totally fails to conceal $his <<if $activeSlave.anus > 2>>huge soft asspussy<<elseif $activeSlave.anus > 1>>nice butthole<<else>>tight little anus<</if>>.
+		<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">>
+			bounces $his
+			<<if $activeSlave.boobsImplant>>
+				fake tits.
+			<<elseif $activeSlave.boobs > 8000>>
+				earth-shattering tits.
+			<<elseif $activeSlave.boobs > 2000>>
+				huge boobs.
+			<<elseif $activeSlave.boobs > 400>>
+				boobs.
+			<<else>>
+				petite chest.
+			<</if>>
+			Giggling, $he bounces harder, and $his nipples escape from $his top, such as it is.
+		<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && $activeSlave.bellyPreg >= 1500>>
+			and attempts to pull the strings over the front of $his belly. Without delay, they slide right back to the sides of the _belly dome, eliciting a giggle from the preggo slut.
+		<<elseif $activeSlave.assignment == "whore" || $activeSlave.assignment == "serve the public">>
+			sneaks a hand under the string around $his waist, tugging $his bottom up <<if $activeSlave.vagina != -1>>until the string between $his legs is pulled up into the entrance of $his womanhood<<else>>and turning sideways to suggest $his ass<</if>>. "Guy<<s>>'ll <<if $activeSlave.assignment == "whore">>pay money for<<else>>line up to fuck<</if>> thi<<s>>," $he giggles.
 		<<else>>
-			petite chest.
+			bounces a little, smiling. "I'm ba<<s>>ically naked," $he giggles. "Today i<<s>> going to be fun. The other girl<<s>>'ll be jealou<<s>> you wanted me to look <<s>>o <<s>>lutty. Love you, <<Master>>."
 		<</if>>
-		Giggling, $he bounces harder, and $his nipples escape from $his top, such as it is.
-	<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && $activeSlave.bellyPreg >= 1500>>
-		and attempts to pull the strings over the front of $his belly. Without delay, they slide right back to the sides of the _belly dome, eliciting a giggle from the preggo slut.
-	<<elseif $activeSlave.assignment == "whore" || $activeSlave.assignment == "serve the public">>
-		sneaks a hand under the string around $his waist, tugging $his bottom up <<if $activeSlave.vagina != -1>>until the string between $his legs is pulled up into the entrance of $his womanhood<<else>>and turning sideways to suggest $his ass<</if>>. "Guy<<s>>'ll <<if $activeSlave.assignment == "whore">>pay money for<<else>>line up to fuck<</if>> thi<<s>>," $he giggles.
-	<<else>>
-		bounces a little, smiling. "I'm ba<<s>>ically naked," $he giggles. "Today i<<s>> going to be fun. The other girl<<s>>'ll be jealou<<s>> you wanted me to look <<s>>o <<s>>lutty. Love you, <<Master>>."
-	<</if>>
-	$He's happy you indulged $him, and @@.mediumaquamarine;satisfied that you think $he's cute@@ enough to have around (practically) nude.
-	<<set $activeSlave.trust += 5>>
+		$He's happy you indulged $him, and @@.mediumaquamarine;satisfied that you think $he's cute@@ enough to have around (practically) nude.
+		<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
 <br><<link "Force uncomfortable straps on $him">>
@@ -20802,204 +20808,203 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 	<</replace>>
 	<<set $activeSlave.clothes = _clothesTemp>>
 	<<replace "#result">>
-	You tell $him that the wardrobe's sorting system will present $him with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thanks, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but girls everywhere love trying on new clothes. $He's wrong to be so enthusiastic. $He comes obediently back, wearing a set of cruelly uncomfortable leather straps in the general shape of a bikini, but much tighter and more restrictive. It isn't at all what $he was expecting, but $he did $his best to obey. $He's @@.gold;tightened $his own straps down@@ until they're just short of cutting off circulation, in an obvious effort to please you. You ask $him how $he likes $his outfit. "It'<<s>> ni<<c>>e, <<Master>>," $he <<say>>s, but $he sounds a little sad.
-	<<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">>
-		"I'm ju<<s>>t a worthle<<ss>> humiliation <<s>>lut. I love having <<s>>teel ring<<s>> around my hole<<s>> like thi<<s>>," $he adds.
-	<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">>
-		$He turns to show you $his asshole, framed by a steel ring that spreads $his buttocks to keep it nice and defenseless. "I know my backpu<<ss>>y'<<s>> the be<<s>>t thing about me," $he adds.
-	<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">>
-		$He does $his best to thrust out $his chest, making the straps creak. "I know I'm, I'm ju<<s>>t, ju<<s>>t a pair of boob<<s>>," $he adds.
-	<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && $activeSlave.bellyPreg >= 1500>>
-		$He does $his best to thrust out $his _belly belly, making the straps creak ominously. "I know I'm, I'm ju<<s>>t, ju<<s>>t a baby maker," $he adds.
-	<<elseif $activeSlave.assignment == "whore" || $activeSlave.assignment == "serve the public">>
-		$He hangs $his head. "I feel like a worthle<<ss>> <<if $activeSlave.assignment == "whore">>whore<<else>>bitch<</if>>," $he adds. "Gue<<ss>> I am."
-	<<else>>
-		$He indicates the steel rings that frame $his holes and keep them defenseless. "I know I'm ju<<s>>t a collection of fuckhole<<s>>," $he adds.
-	<</if>>
-	$He sounds like $he's trying to convince $himself, but $his @@.hotpink;abasement us not feigned.@@
-	<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5>>
+		You tell $him that the wardrobe's sorting system will present $him with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thanks, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but girls everywhere love trying on new clothes. $He's wrong to be so enthusiastic. $He comes obediently back, wearing a set of cruelly uncomfortable leather straps in the general shape of a bikini, but much tighter and more restrictive. It isn't at all what $he was expecting, but $he did $his best to obey. $He's @@.gold;tightened $his own straps down@@ until they're just short of cutting off circulation, in an obvious effort to please you. You ask $him how $he likes $his outfit. "It'<<s>> ni<<c>>e, <<Master>>," $he <<say>>s, but $he sounds a little sad.
+		<<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">>
+			"I'm ju<<s>>t a worthle<<ss>> humiliation <<s>>lut. I love having <<s>>teel ring<<s>> around my hole<<s>> like thi<<s>>," $he adds.
+		<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">>
+			$He turns to show you $his asshole, framed by a steel ring that spreads $his buttocks to keep it nice and defenseless. "I know my backpu<<ss>>y'<<s>> the be<<s>>t thing about me," $he adds.
+		<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">>
+			$He does $his best to thrust out $his chest, making the straps creak. "I know I'm, I'm ju<<s>>t, ju<<s>>t a pair of boob<<s>>," $he adds.
+		<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && $activeSlave.bellyPreg >= 1500>>
+			$He does $his best to thrust out $his _belly belly, making the straps creak ominously. "I know I'm, I'm ju<<s>>t, ju<<s>>t a baby maker," $he adds.
+		<<elseif $activeSlave.assignment == "whore" || $activeSlave.assignment == "serve the public">>
+			$He hangs $his head. "I feel like a worthle<<ss>> <<if $activeSlave.assignment == "whore">>whore<<else>>bitch<</if>>," $he adds. "Gue<<ss>> I am."
+		<<else>>
+			$He indicates the steel rings that frame $his holes and keep them defenseless. "I know I'm ju<<s>>t a collection of fuckhole<<s>>," $he adds.
+		<</if>>
+		$He sounds like $he's trying to convince $himself, but $his @@.hotpink;abasement us not feigned.@@
+		<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5>>
 	<</replace>>
 <</link>>
 
-
 <<case "hyperpreg stuck">>
 
 <<link "Abuse $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You lean against a wall and take a moment to enjoy your slave's discomfort. Realizing that $his <<= WrittenMaster($activeSlave)>> is intending to do nothing, $he blushes and begins pulling on $his belly, attempting to free $himself.
-	<<if ($activeSlave.broodmother === 2) && ($activeSlave.preg >= 30)>>
-		$His innumerable brood are awakened by $his exertions and begin to move, testing the thin walls of the womb constraining them and causing $his belly to throb ominously. You count the number of infants distinctly outlined against your poor hyperbroodmother's straining body.
-	<<elseif ($activeSlave.broodmother == 1) && ($activeSlave.preg >= 30)>>
-		With a groan of effort, the broodmother manages to pull $his belly slightly further out through the doorway, but, in the effort, only really manages to wedge it more firmly. It bulges ominously from the added pressure.
-	<<else>>
-		The massively pregnant slave's belly clutches in a false contraction and $he pulls several <<if $showInches == 2>>inches<<else>>centimeters<</if>> further out through the door frame before it expands again, leaving $his even more hopelessly stuck
-	<</if>>
-	<br><br>
-	<<if !canTalk($activeSlave)>>
-		$He moans and rubs up and down what little $he can reach of $his belly while looking back at you with more urgency. It's clear $he is in severe distress.
-	<<else>>
-		"<<Master>>," $he says through clenched teeth. "Plea<<s>>e."
-	<</if>>
-	<br><br>
-	You judge that you've seen enough and move forward.
-	<<if $activeSlave.butt > 10>>
-		Wading in between $his huge ass cheeks
-	<<elseif $activeSlave.butt > 4>>
-		Grabbing a handful of one generous ass cheek,
-	<<else>>
-		Slapping a pert ass cheek,
-	<</if>>
-	<<if canDoVaginal($activeSlave)>>
-		you hilt yourself in $his pregnant pussy and begin pounding.
-		<<= VaginalVCheck()>>
-	<<elseif canDoAnal($activeSlave)>>
-		you hilt yourself in $his butthole and begin pounding.
-		<<= AnalVCheck()>>
-	<<else>>
-		you push them together around your cock and begin pounding.
-	<</if>>
-	$His stomach distorts back and forth under your vigorous ministrations before, with a "pop," belly, slave, and owner come tumbling through the threshold. $He yelps in @@.gold;shock@@ and @@.red;pain@@ as $his belly impacts the ground as the sound of $his voice, coupled with the feeling of jolting up and down on top of your slave's abused gut, sends you over the edge. You ejaculate
-	<<if canDoVaginal($activeSlave)>>
-		into $his fertile, wanting hole
-	<<elseif canDoAnal($activeSlave)>>
-		into $his needy hole
-	<<else>>
-		across $his back
-	<</if>>
-	and then slide off of $him to instruct your servants to fix the door frame before they carry $him to $his duties for the day.
-	<<set $activeSlave.health -= 20, $activeSlave.trust -= 20>>
+		You lean against a wall and take a moment to enjoy your slave's discomfort. Realizing that $his <<= WrittenMaster($activeSlave)>> is intending to do nothing, $he blushes and begins pulling on $his belly, attempting to free $himself.
+		<<if ($activeSlave.broodmother === 2) && ($activeSlave.preg >= 30)>>
+			$His innumerable brood are awakened by $his exertions and begin to move, testing the thin walls of the womb constraining them and causing $his belly to throb ominously. You count the number of infants distinctly outlined against your poor hyperbroodmother's straining body.
+		<<elseif ($activeSlave.broodmother == 1) && ($activeSlave.preg >= 30)>>
+			With a groan of effort, the broodmother manages to pull $his belly slightly further out through the doorway, but, in the effort, only really manages to wedge it more firmly. It bulges ominously from the added pressure.
+		<<else>>
+			The massively pregnant slave's belly clutches in a false contraction and $he pulls several <<if $showInches == 2>>inches<<else>>centimeters<</if>> further out through the door frame before it expands again, leaving $his even more hopelessly stuck
+		<</if>>
+		<br><br>
+		<<if !canTalk($activeSlave)>>
+			$He moans and rubs up and down what little $he can reach of $his belly while looking back at you with more urgency. It's clear $he is in severe distress.
+		<<else>>
+			"<<Master>>," $he says through clenched teeth. "Plea<<s>>e."
+		<</if>>
+		<br><br>
+		You judge that you've seen enough and move forward.
+		<<if $activeSlave.butt > 10>>
+			Wading in between $his huge ass cheeks
+		<<elseif $activeSlave.butt > 4>>
+			Grabbing a handful of one generous ass cheek,
+		<<else>>
+			Slapping a pert ass cheek,
+		<</if>>
+		<<if canDoVaginal($activeSlave)>>
+			you hilt yourself in $his pregnant pussy and begin pounding.
+			<<= VaginalVCheck()>>
+		<<elseif canDoAnal($activeSlave)>>
+			you hilt yourself in $his butthole and begin pounding.
+			<<= AnalVCheck()>>
+		<<else>>
+			you push them together around your cock and begin pounding.
+		<</if>>
+		$His stomach distorts back and forth under your vigorous ministrations before, with a "pop," belly, slave, and owner come tumbling through the threshold. $He yelps in @@.gold;shock@@ and @@.red;pain@@ as $his belly impacts the ground as the sound of $his voice, coupled with the feeling of jolting up and down on top of your slave's abused gut, sends you over the edge. You ejaculate
+		<<if canDoVaginal($activeSlave)>>
+			into $his fertile, wanting hole
+		<<elseif canDoAnal($activeSlave)>>
+			into $his needy hole
+		<<else>>
+			across $his back
+		<</if>>
+		and then slide off of $him to instruct your servants to fix the door frame before they carry $him to $his duties for the day.
+		<<set $activeSlave.health -= 20, $activeSlave.trust -= 20>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <br><<link "Fuck $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You can't help but be aroused by the sight of your swollen, helpless slave, and you take off your pants, revealing your erection. The slave's <<if canSee($activeSlave)>>backward glance falls on your dick<<else>>ears perk up<</if>> and $he
-	<<if $activeSlave.devotion > 95>>
-		licks $his lips,
-		<<if $activeSlave.amp == 1>>
-			wiggling the stumps of $his legs and swiveling $his hips to give you a clear angle at $his hungry <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>.
-		<<else>>
-			spreading $his legs and revealing more of $his massive underbelly while angling $his wanting <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>> at the perfect angle for fucking.
-		<</if>>
-	<<elseif $activeSlave.devotion > 50>>
-		blushes, swiveling $his hips to give you easy access to $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>.
-	<<elseif $activeSlave.devotion > 20>>
-		blushes and leans into $his belly, knowing what to expect.
-	<<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>>
-		moans nervously.
-	<<elseif ($activeSlave.trust < -50)>>
-		yelps, turning away from you and clenching $his eyes shut as $his
-		<<if $activeSlave.amp == 1>>
-			stumps push toward each other, clearly trying (and failing) to conceal $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>.
+		You can't help but be aroused by the sight of your swollen, helpless slave, and you take off your pants, revealing your erection. The slave's <<if canSee($activeSlave)>>backward glance falls on your dick<<else>>ears perk up<</if>> and $he
+		<<if $activeSlave.devotion > 95>>
+			licks $his lips,
+			<<if $activeSlave.amp == 1>>
+				wiggling the stumps of $his legs and swiveling $his hips to give you a clear angle at $his hungry <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>.
+			<<else>>
+				spreading $his legs and revealing more of $his massive underbelly while angling $his wanting <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>> at the perfect angle for fucking.
+			<</if>>
+		<<elseif $activeSlave.devotion > 50>>
+			blushes, swiveling $his hips to give you easy access to $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>.
+		<<elseif $activeSlave.devotion > 20>>
+			blushes and leans into $his belly, knowing what to expect.
+		<<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>>
+			moans nervously.
+		<<elseif ($activeSlave.trust < -50)>>
+			yelps, turning away from you and clenching $his eyes shut as $his
+			<<if $activeSlave.amp == 1>>
+				stumps push toward each other, clearly trying (and failing) to conceal $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>.
+			<<else>>
+				legs instinctively clench together to hide $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>.
+			<</if>>
 		<<else>>
-			legs instinctively clench together to hide $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>.
+			snorts derisively despite $his vulnerability.
 		<</if>>
-	<<else>>
-		snorts derisively despite $his vulnerability.
-	<</if>>
-	<br><br>
-	You step forward and run an appreciative hand over the surface of $his belly. $His womb is packed so full that the outline of $his squirming children is obvious under $his stretched-thin flesh. $He groans at your touch, clearly in some distress, and you promise $him that you'll free $him once you've finished up.
-	<<if $activeSlave.devotion > 95>>
-		The slave is clearly too aroused by your fondling to <<if canHear($activeSlave)>>hear what you're saying<<else>>interpret your body language<</if>> and leans back into you, stretching against $his tortured belly to nibble at your ear.
-	<<elseif $activeSlave.devotion > 50>>
-		The slave says nothing, but wiggles $his ass against your hips, making it clear $he's ready.
-	<<elseif $activeSlave.devotion > 20>>
-		You can see tears streaming down the slave's face from the discomfort $he's experiencing, but $he nods that $he's ready.
-	<<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>>
-		The slave cries and begs you to finish quickly and help $him before $he bursts.
-	<<elseif ($activeSlave.trust < -50)>>
-		The shock of contact with your body causes the terrified slave's skin to contract, as if $he's trying to pull away despite $his current reality, and $his only response to your promise is sobbing.
-	<<else>>
-		The slave
-		<<if !canTalk($activeSlave)>>
-			motions for you to
+		<br><br>
+		You step forward and run an appreciative hand over the surface of $his belly. $His womb is packed so full that the outline of $his squirming children is obvious under $his stretched-thin flesh. $He groans at your touch, clearly in some distress, and you promise $him that you'll free $him once you've finished up.
+		<<if $activeSlave.devotion > 95>>
+			The slave is clearly too aroused by your fondling to <<if canHear($activeSlave)>>hear what you're saying<<else>>interpret your body language<</if>> and leans back into you, stretching against $his tortured belly to nibble at your ear.
+		<<elseif $activeSlave.devotion > 50>>
+			The slave says nothing, but wiggles $his ass against your hips, making it clear $he's ready.
+		<<elseif $activeSlave.devotion > 20>>
+			You can see tears streaming down the slave's face from the discomfort $he's experiencing, but $he nods that $he's ready.
+		<<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>>
+			The slave cries and begs you to finish quickly and help $him before $he bursts.
+		<<elseif ($activeSlave.trust < -50)>>
+			The shock of contact with your body causes the terrified slave's skin to contract, as if $he's trying to pull away despite $his current reality, and $his only response to your promise is sobbing.
 		<<else>>
-			responds by telling you to
+			The slave
+			<<if !canTalk($activeSlave)>>
+				motions for you to
+			<<else>>
+				responds by telling you to
+			<</if>>
+			just fuck $him already and let $him move on with $his day.
 		<</if>>
-		just fuck $him already and let $him move on with $his day.
-	<</if>>
-	You let your hand wander downward
-	<<if canDoVaginal($activeSlave)>>
-		and then push down on the base of $his clit with finger and thumb, making $him whimper, before removing your hand and burying your cock inside $him.
-		<<= VaginalVCheck()>>
-	<<elseif canDoAnal($activeSlave)>>
-		and circle $his anus with a finger, making $him whimper, before removing your hand and burying your cock inside $him.
-		<<= AnalVCheck()>>
-	<<else>>
-		and trace the edge of $his chastity with a finger, making $him whimper, before removing your hand and squeezing $his rear around your cock.
-	<</if>>
-	As you fuck $him, $his poor, tortured belly wobbles against the constraining door frame and the frame itself groans in protest. $He grinds in rhythm to your pistoning until the back and forth movement of $his sloshing tummy overpowers $his efforts and sends $him careening back and forth between its oceanic movements and your less than tender ministrations. The sensation of fucking a $woman who is literally a slave to the motion of $his own womb drives you over the edge and you pull out, ejaculating all over $his
-	<<if $activeSlave.butt > 10>>
-		enveloping ass cleavage.
-	<<elseif $activeSlave.butt > 4>>
-		fat, waiting ass cheeks.
-	<<else>>
-		pert ass.
-	<</if>>
-	<br><br>
-	You step back, taking one last appreciative look at your trapped slave, then call a team of menials to remove the door from its foundation to free $him. Though your slave is extricated uninjured, your decision to use $him before saving $him leaves the $girl @@.gold;trusting you less.@@ You could pay to have the door widened, but then you wouldn't get this opportunity again, would you?
-	<br>
-	<<set $activeSlave.health -= 10, $activeSlave.trust -= 10>>
+		You let your hand wander downward
+		<<if canDoVaginal($activeSlave)>>
+			and then push down on the base of $his clit with finger and thumb, making $him whimper, before removing your hand and burying your cock inside $him.
+			<<= VaginalVCheck()>>
+		<<elseif canDoAnal($activeSlave)>>
+			and circle $his anus with a finger, making $him whimper, before removing your hand and burying your cock inside $him.
+			<<= AnalVCheck()>>
+		<<else>>
+			and trace the edge of $his chastity with a finger, making $him whimper, before removing your hand and squeezing $his rear around your cock.
+		<</if>>
+		As you fuck $him, $his poor, tortured belly wobbles against the constraining door frame and the frame itself groans in protest. $He grinds in rhythm to your pistoning until the back and forth movement of $his sloshing tummy overpowers $his efforts and sends $him careening back and forth between its oceanic movements and your less than tender ministrations. The sensation of fucking a $woman who is literally a slave to the motion of $his own womb drives you over the edge and you pull out, ejaculating all over $his
+		<<if $activeSlave.butt > 10>>
+			enveloping ass cleavage.
+		<<elseif $activeSlave.butt > 4>>
+			fat, waiting ass cheeks.
+		<<else>>
+			pert ass.
+		<</if>>
+		<br><br>
+		You step back, taking one last appreciative look at your trapped slave, then call a team of menials to remove the door from its foundation to free $him. Though your slave is extricated uninjured, your decision to use $him before saving $him leaves the $girl @@.gold;trusting you less.@@ You could pay to have the door widened, but then you wouldn't get this opportunity again, would you?
+		<br>
+		<<set $activeSlave.health -= 10, $activeSlave.trust -= 10>>
 	<</replace>>
-<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
 <br><<link "Try the 'Butter Strategy'">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You ponder $his predicament for a moment before settling on a solution. You procure an industrial sized jar of curative laced moisturizing butter — specially formulated to ease the strain of hypermassive pregnancy — and explain to your slave that, to free $him, you're going to need to completely cover $him in it so that $he can squeeze through.
-	<<if $activeSlave.devotion > 95>>
-		$He grins at you and then huffs, pretending to be put off by the idea.
-	<<elseif $activeSlave.devotion > 50>>
-		$He quirks an eyebrow, then smiles, clearly intrigued.
-	<<elseif $activeSlave.devotion > 20>>
-		$He nods, happy to <<if canHear($activeSlave)>>hear<<else>>know<</if>> you've considered a way to free $him without causing $him undue harm.
-	<<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>>
-		$He had seemed uneasy when you first described your idea, but seems to resign $himself to it once you finish your description.
-	<<elseif ($activeSlave.trust < -50)>>
-		The wide eyed slave nods as you describe your idea, clearly hoping you'll free $him as quickly as possible so that $he can get away from you.
-	<<else>>
-		$He laughs derisively at you after you describe your idea, then motions for you to get on with it.
-	<</if>>
-	You move toward $him and slather a generous helping of the stuff over $his back and
-	<<if $activeSlave.butt > 10>>
-		couch-smothering ass,
-	<<elseif $activeSlave.butt > 4>>
-		fat ass cheeks,
-	<<else>>
-		petite ass,
-	<</if>>
-	for the sake of "being thorough." You then move forward, covering the parts of $his belly you can reach from behind and taking special care to
-	<<if ($activeSlave.boobs >= 20000)>>
-		massage the soft butter into every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of $his colossal tits, noting with satisfaction $his distant nipples, stuck on the other side of the doorway with the bulk of $his room filling breasts, harden with arousal.
-	<<elseif ($activeSlave.boobs >= 12000)>>
-		massage the soft butter into $his massive tits as they push up between the arch of the doorway and $his bulging belly. You note with satisfaction $his nipples harden with arousal.
-	<<elseif ($activeSlave.boobs >= 7000)>>
-		massage the soft butter into $his monstrous tits, enjoying the struggle it takes to heft each butter-slick, glistening melon with both hands. You note with satisfaction $his nipples harden with arousal.
-	<<elseif ($activeSlave.boobs >= 3000)>>
-		massage the soft butter into each of $his huge tits. Your slave cranes $his head back a bit to avoid being smothered by $his own breasts as you work the butter into them, but you can tell $he's aroused by what you're doing — $his nipples have turned hard as rocks.
-	<<elseif ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
-		massage the soft butter into $his fat, fake titties, noting with satisfaction $his nipples harden with arousal.
-	<<elseif ($activeSlave.boobs >= 650)>>
-		massage the soft butter into $his big tits, noting with satisfaction $his nipples harden with arousal.
-	<<elseif ($activeSlave.boobs >= 300)>>
-		massage the soft butter into $his small, girlish chest, noting with satisfaction $his nipples harden with arousal.
-	<<else>>
-		massage the soft butter into $his flat chest, noting with satisfaction $his nipples harden with arousal.
-	<</if>>
-	<br><br>
-	Satisfied with your covering of your slave's back half, you then resolve to work on $his front. Getting down on your hands and knees, you crawl through the narrow triangle of space between the base of your slave's massive belly, the floor, and the doorway. It's a tight squeeze, and you take longer than you need to in order to enjoy the sound of your slave groaning as you rub up against $his sweaty, buttered up belly, but you eventually make it through. Taking generous handfuls of butter, you slick up the front half of your slave's stomach, starting at the flattened nub of $his pressure-obliterated belly button and slowly working your way up to the round oval of baby-packed flesh being constricted by the doorway.
-	<br><br>
-	With your slave's body dripping with the thick moisturizer, you call out to $him to start pulling $his belly through the doorway, pushing your body up against $his stomach to help push. You didn't bother to strip your clothes while buttering $his gravid figure and, as you crush up against $him and heave, again and again, against the sheer mass of $his abdomen, you can't help but get aroused by the way your greasy clothes rub between your body and $hers with each motion. At first, $his belly is so firmly lodged that it doesn't move, but momentum eventually builds up and, with an audible "pop," the poor baby-laden breeder finally breaks free from $his containment, falling onto $his back and pulling you with $him into an absurd, buttery mass of flailing limbs and giggles. You take some time to flip $him into a position where $he won't be crushed by the weight of $his own womb, and then take some more time to enjoy the fruits of your labors.
-	<br><br>
-	Once finished, you allow your servants to carry your @@.hotpink;thoroughly satisfied slave@@ to the baths for a needed cleaning. You could pay to have the door widened, but then you wouldn't have such a perfect excuse to lather $him in cream, would you?
-	<<set $activeSlave.devotion += 5>>
+		You ponder $his predicament for a moment before settling on a solution. You procure an industrial sized jar of curative laced moisturizing butter — specially formulated to ease the strain of hypermassive pregnancy — and explain to your slave that, to free $him, you're going to need to completely cover $him in it so that $he can squeeze through.
+		<<if $activeSlave.devotion > 95>>
+			$He grins at you and then huffs, pretending to be put off by the idea.
+		<<elseif $activeSlave.devotion > 50>>
+			$He quirks an eyebrow, then smiles, clearly intrigued.
+		<<elseif $activeSlave.devotion > 20>>
+			$He nods, happy to <<if canHear($activeSlave)>>hear<<else>>know<</if>> you've considered a way to free $him without causing $him undue harm.
+		<<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>>
+			$He had seemed uneasy when you first described your idea, but seems to resign $himself to it once you finish your description.
+		<<elseif ($activeSlave.trust < -50)>>
+			The wide eyed slave nods as you describe your idea, clearly hoping you'll free $him as quickly as possible so that $he can get away from you.
+		<<else>>
+			$He laughs derisively at you after you describe your idea, then motions for you to get on with it.
+		<</if>>
+		You move toward $him and slather a generous helping of the stuff over $his back and
+		<<if $activeSlave.butt > 10>>
+			couch-smothering ass,
+		<<elseif $activeSlave.butt > 4>>
+			fat ass cheeks,
+		<<else>>
+			petite ass,
+		<</if>>
+		for the sake of "being thorough." You then move forward, covering the parts of $his belly you can reach from behind and taking special care to
+		<<if ($activeSlave.boobs >= 20000)>>
+			massage the soft butter into every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of $his colossal tits, noting with satisfaction $his distant nipples, stuck on the other side of the doorway with the bulk of $his room filling breasts, harden with arousal.
+		<<elseif ($activeSlave.boobs >= 12000)>>
+			massage the soft butter into $his massive tits as they push up between the arch of the doorway and $his bulging belly. You note with satisfaction $his nipples harden with arousal.
+		<<elseif ($activeSlave.boobs >= 7000)>>
+			massage the soft butter into $his monstrous tits, enjoying the struggle it takes to heft each butter-slick, glistening melon with both hands. You note with satisfaction $his nipples harden with arousal.
+		<<elseif ($activeSlave.boobs >= 3000)>>
+			massage the soft butter into each of $his huge tits. Your slave cranes $his head back a bit to avoid being smothered by $his own breasts as you work the butter into them, but you can tell $he's aroused by what you're doing — $his nipples have turned hard as rocks.
+		<<elseif ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
+			massage the soft butter into $his fat, fake titties, noting with satisfaction $his nipples harden with arousal.
+		<<elseif ($activeSlave.boobs >= 650)>>
+			massage the soft butter into $his big tits, noting with satisfaction $his nipples harden with arousal.
+		<<elseif ($activeSlave.boobs >= 300)>>
+			massage the soft butter into $his small, girlish chest, noting with satisfaction $his nipples harden with arousal.
+		<<else>>
+			massage the soft butter into $his flat chest, noting with satisfaction $his nipples harden with arousal.
+		<</if>>
+		<br><br>
+		Satisfied with your covering of your slave's back half, you then resolve to work on $his front. Getting down on your hands and knees, you crawl through the narrow triangle of space between the base of your slave's massive belly, the floor, and the doorway. It's a tight squeeze, and you take longer than you need to in order to enjoy the sound of your slave groaning as you rub up against $his sweaty, buttered up belly, but you eventually make it through. Taking generous handfuls of butter, you slick up the front half of your slave's stomach, starting at the flattened nub of $his pressure-obliterated belly button and slowly working your way up to the round oval of baby-packed flesh being constricted by the doorway.
+		<br><br>
+		With your slave's body dripping with the thick moisturizer, you call out to $him to start pulling $his belly through the doorway, pushing your body up against $his stomach to help push. You didn't bother to strip your clothes while buttering $his gravid figure and, as you crush up against $him and heave, again and again, against the sheer mass of $his abdomen, you can't help but get aroused by the way your greasy clothes rub between your body and $hers with each motion. At first, $his belly is so firmly lodged that it doesn't move, but momentum eventually builds up and, with an audible "pop," the poor baby-laden breeder finally breaks free from $his containment, falling onto $his back and pulling you with $him into an absurd, buttery mass of flailing limbs and giggles. You take some time to flip $him into a position where $he won't be crushed by the weight of $his own womb, and then take some more time to enjoy the fruits of your labors.
+		<br><br>
+		Once finished, you allow your servants to carry your @@.hotpink;thoroughly satisfied slave@@ to the baths for a needed cleaning. You could pay to have the door widened, but then you wouldn't have such a perfect excuse to lather $him in cream, would you?
+		<<set $activeSlave.devotion += 5>>
 	<</replace>>
 <</link>>
 <br><<link "Leave $him to figure it out">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You leave $him to get $himself out of this situation and return to your daily affairs, though not without focusing a camera on the distraught breeder first. For several hours, you enjoy the sight of $his backside struggling to squeeze through the doorway before $he finally manages to figure it out. $He @@.mediumorchid;blames you@@ for this indignity and @@.gold;worries@@ about what else you have waiting to torment $him.
-	<<set $activeSlave.devotion -= 2, $activeSlave.trust -= 2>>
+		You leave $him to get $himself out of this situation and return to your daily affairs, though not without focusing a camera on the distraught breeder first. For several hours, you enjoy the sight of $his backside struggling to squeeze through the doorway before $he finally manages to figure it out. $He @@.mediumorchid;blames you@@ for this indignity and @@.gold;worries@@ about what else you have waiting to torment $him.
+		<<set $activeSlave.devotion -= 2, $activeSlave.trust -= 2>>
 	<</replace>>
 <</link>>
 
diff --git a/src/uncategorized/RESSTR.tw b/src/uncategorized/RESSTR.tw
index 73e7c03246eaf5bfa069f15413a18048f651587a..e506e8024681131786e7666134a1289a29f3d2aa 100644
--- a/src/uncategorized/RESSTR.tw
+++ b/src/uncategorized/RESSTR.tw
@@ -41,15 +41,15 @@
 
 	<<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Next Week">>
 
-/* 000-250-006 */
-<<if $seeImages == 1>>
-	<<if $imageChoice == 1>>
-		<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
-	<<else>>
-		<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+	/* 000-250-006 */
+	<<if $seeImages == 1>>
+		<<if $imageChoice == 1>>
+			<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+		<<else>>
+			<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<SlaveArt $activeSlave 2 0>></div>
+		<</if>>
 	<</if>>
-<</if>>
-/* 000-250-006 */
+	/* 000-250-006 */
 
 	<<set $desc = SlaveTitle($activeSlave)>>
 	<<run Enunciate($activeSlave)>>
diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw
index 62dafe5ded392b4f226ac8ecd5a203155199e07e..38715d714503893ee688db3988e5fbea1bf07941 100644
--- a/src/uncategorized/RETS.tw
+++ b/src/uncategorized/RETS.tw
@@ -415,7 +415,7 @@ $He clearly held off on climaxing in case you wanted $his libido undiminished fo
 		<<set _headGirlPresent = 0>>
 	<</if>>
 <</if>>
-You pass by the slave quarters during a busy time. Girls are hurrying back and forth, rushing to bathe, eat, and get dressed. <<EventNameLink>> is in a particular hurry, $his <<if $activeSlave.belly >= 10000>><<if $activeSlave.bellyPreg >= 8000>>heavy pregnancy<<else>>heavy belly<</if>> and <</if>><<if $activeSlave.boobs > 8000>>gargantuan tits hampering $him badly<<else>>huge boobs getting in the way<</if>> as $he rushes around. Returning from the shower to the sleeping area, $he turns a corner and runs hard into $subSlave.slaveName. Both slaves are nude, and the collision of their massive breasts makes an audibly painful smack. $activeSlave.slaveName has enough momentum that $he overbears the top-heavy $subSlave.slaveName entirely. The poor <<if $subSlave.physicalAge > 30>>_woman2<<else>>_girl2<</if>> crashes backwards, _his2 <<if $subSlave.butt > 8>>monstrous bottom<<elseif $subSlave.butt > 4>>big behind<<else>>hind end<</if>> hitting the floor with a slap. $activeSlave.slaveName lands on top of _him2, the fall and the sudden weight of $activeSlave.slaveName on top of _him2 driving the wind out of $subSlave.slaveName with a whoosh.
+You pass by the slave quarters during a busy time. Slaves are hurrying back and forth, rushing to bathe, eat, and get dressed. <<EventNameLink>> is in a particular hurry, $his <<if $activeSlave.belly >= 10000>><<if $activeSlave.bellyPreg >= 8000>>heavy pregnancy<<else>>heavy belly<</if>> and <</if>><<if $activeSlave.boobs > 8000>>gargantuan tits hampering $him badly<<else>>huge boobs getting in the way<</if>> as $he rushes around. Returning from the shower to the sleeping area, $he turns a corner and runs hard into $subSlave.slaveName. Both slaves are nude, and the collision of their massive breasts makes an audibly painful smack. $activeSlave.slaveName has enough momentum that $he overbears the top-heavy $subSlave.slaveName entirely. The poor <<if $subSlave.physicalAge > 30>>_woman2<<else>>_girl2<</if>> crashes backwards, _his2 <<if $subSlave.butt > 8>>monstrous bottom<<elseif $subSlave.butt > 4>>big behind<<else>>hind end<</if>> hitting the floor with a slap. $activeSlave.slaveName lands on top of _him2, the fall and the sudden weight of $activeSlave.slaveName on top of _him2 driving the wind out of $subSlave.slaveName with a whoosh.
 <br><br>
 "<<S>>orry! I'm <<s>>o <<s>>orry," apologizes $activeSlave.slaveName. $He starts to try to disentangle $himself as $subSlave.slaveName struggles to get _his2 breath back, but you see $activeSlave.slaveName's back stiffen. $He stops trying to get up. As the discomfort of the collision fades, $he notices the warmth of $subSlave.slaveName underneath $him, and the way their nipples are pressed against one another. Impulsively, $he kisses $subSlave.slaveName full on the lips,
 <<if $activeSlave.boobs+$subSlave.boobs > 20000>>
@@ -1199,7 +1199,7 @@ $he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your p
 	<<set $subSlave.clothes = _clothesTemp2>>
 
 	<<replace "#result">>
-	Rather than answering $him directly, you tell $assistantName to clear $activeSlave.slaveName's and $subSlave.slaveName's schedules for the evening. $He looks at you with happy anticipation, but this is nothing to $his gratitude when you tell $him that you'll arrange a date night for them. Trusted slaves are often seen unchaperoned in your arcology, and there are several establishments that cater to slaveowners who wish to bring their girls out or even send them out alone. You tell $him you've made a reservation for $him and $his <<if $activeSlave.relationship >= 5>>wife<<else>>girlfriend<</if>> at one of the less formal places, an ethnic restaurant that manages to add spice to liquid slave nutrition without ruining its good qualities. They're to spend the night out, and can wear what they like. $He hurries off to collect $his _girl2 and get dressed, but also tries to keep thanking you on $his way out, and almost runs into the door frame as $he goes.
+	Rather than answering $him directly, you tell $assistantName to clear $activeSlave.slaveName's and $subSlave.slaveName's schedules for the evening. $He looks at you with happy anticipation, but this is nothing to $his gratitude when you tell $him that you'll arrange a date night for them. Trusted slaves are often seen unchaperoned in your arcology, and there are several establishments that cater to slaveowners who wish to bring their chattel out or even send them out alone. You tell $him you've made a reservation for $him and $his <<if $activeSlave.relationship >= 5>>wife<<else>>girlfriend<</if>> at one of the less formal places, an ethnic restaurant that manages to add spice to liquid slave nutrition without ruining its good qualities. They're to spend the night out, and can wear what they like. $He hurries off to collect $his _girl2 and get dressed, but also tries to keep thanking you on $his way out, and almost runs into the door frame as $he goes.
 	<br><br>
 	Since $he trusts you, they dress very daringly for slaves. That is, they dress about as conservatively as slaves can dress, in comfortable pants and soft sweaters whose high collars they roll down to keep their collars visible. Any hesitations citizens who see them might have are banished by their obvious love for each other, and their total lack of shame about having it seen. Indeed, as the night wears on they attract more than a few @@.green;admiring glances@@ from citizens who envy you the favors of the pair of <<if $girl == _girl2>>$girl<<else>>slave<</if>>s occupying one side of the corner booth. After all, they'd rather lean against each other than look at each other from across a table. The next day, they both come to you individually and @@.mediumaquamarine;thank you almost gravely,@@ quite aware of the trust you've placed in them.
 	<<run cashX(-1000, "event", $activeSlave)>>
diff --git a/src/uncategorized/REroyalblood.tw b/src/uncategorized/REroyalblood.tw
index 8061f8cac1e2a3de5eeaaeab412a2ca9d8d60865..bd8abf6a63d49b5e504a7d9fbcb92ff1b68d06cb 100644
--- a/src/uncategorized/REroyalblood.tw
+++ b/src/uncategorized/REroyalblood.tw
@@ -197,7 +197,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad
 <<if $SF.Toggle && $SF.Active >= 1>>
 <br><<link "Dispatch a $SF.Lower on a night time raid to acquire a pretty princess.">>
 	<<replace "#result">>
-		Seizing a tablet, you quickly send a message to <<print SFC()>>. After dark, a flight of VTOLs land in the new arcology laden with troops. When they take off again they have the princess aboard clad in chains and make a direct course towards your waiting penthouse.
+		Seizing a tablet, you quickly send a message to <<print App.SF.SFC()>>. After dark, a flight of VTOLs land in the new arcology laden with troops. When they take off again they have the princess aboard clad in chains and make a direct course towards your waiting penthouse.
 		<br><br>
 		Eventually $he arrives in your penthouse, the perfect image of a demure yet composed princess. $His clearly practiced façade of poise and grace fades under scrutiny, however. The slightest trembling of $his balled up fists, the minute tremors that mar $his immaculate posture, $his inability to meet your eyes with $his own — all signs that $he is still a scared $girl despite all $his royal trappings. Nonetheless, though the princess's court training is unlikely to be very beneficial to $him in $his new life in the penthouse, it does stand in stark contrast to $his more common slave peers.
 		<br><br>
diff --git a/src/uncategorized/arcade.tw b/src/uncategorized/arcade.tw
index d9ac9c962fae24160f16acdf35bc416b43d80f5f..4ee0db0fa1c8b791bf0b4fa3fc77c25a96072c0a 100644
--- a/src/uncategorized/arcade.tw
+++ b/src/uncategorized/arcade.tw
@@ -89,7 +89,7 @@ $arcadeNameCaps
 
 <br>It can support $arcade inmates. There <<if $arcadeSlaves == 1>>is<<else>>are<</if>> currently $arcadeSlaves slaves<<if $arcadeSlaves != 1>>s<</if>> incarcerated in $arcadeName.
 <<if $arcadeUpgradeFuckdolls == 1 && $arcadeSlaves > 1>>
-	<br>The arcade has automatic fuckdolification functions and you can decide to convert your least popular slave at the end of the week. [[Activate|Arcade][$arcadeUpgradeFuckdolls == 2]]
+	<br>The arcade has automatic Fuckdollification functions, and you can decide to convert your least popular slave at the end of the week. [[Activate|Arcade][$arcadeUpgradeFuckdolls == 2]]
 <<elseif $arcadeUpgradeFuckdolls == 2>>
 	<br>You have decided that the least popular inmate will be converted to a standard Fuckdoll this week. [[Deactivate|Arcade][$arcadeUpgradeFuckdolls == 1]]
 <</if>>
diff --git a/src/uncategorized/brothelAdvertisement.tw b/src/uncategorized/brothelAdvertisement.tw
index 6109977c692935bb3b8a448e6cd7f182afa82731..60847bbaa291fc518e2e14ec8d5a2a11857b57c4 100644
--- a/src/uncategorized/brothelAdvertisement.tw
+++ b/src/uncategorized/brothelAdvertisement.tw
@@ -48,36 +48,36 @@
 <<case "Pastoralist">>
 	$brothelNameCaps is decorated to look like a dairy. Though it isn't one, there is an intense sexual focus on boobs and lactation, and all the whores have their sizes proudly posted.
 <<case "Hedonistic">>
-	$brothelNameCaps is comfortable and full of soft couches and chairs for its' overweight whores to lounge upon between clients <<if $arcologies[0].FSHedonisticDecadenceResearch == 1>>and enjoy a plate of snacks<<else>>and enjoy a big cup of slave food<</if>>. The smells of fresh baked goods are pumped into the facility to mask the smell of sweat. It's not unusual for a client to fuck a whore right on her chosen couch, since the effort of moving is often too much.
+	$brothelNameCaps is comfortable and full of soft couches and chairs for its overweight whores to lounge upon between clients <<if $arcologies[0].FSHedonisticDecadenceResearch == 1>>and enjoy a plate of snacks<<else>>and enjoy a big cup of slave food<</if>>. The smells of fresh baked goods are pumped into the facility to mask the smell of sweat. It's not unusual for a client to fuck a whore right on her chosen couch, since the effort of moving is often too much.
 <</switch>>
 
 <<if $brothelAdsSpending > 0>>
 	Screens outside the entrance are showing porn to advertise the brothel.
 	<<if $brothelAdsOld == 1>>
-	The featured slave actresses are all MILFs.
+		The featured slave actresses are all MILFs.
 	<<elseif $brothelAdsOld == -1>>
-	The featured slave actresses are all nice and young.
+		The featured slave actresses are all nice and young.
 	<<elseif $brothelAdsOld == -2>>
-	The featured slave actresses are all teenagers.
+		The featured slave actresses are all teenagers.
 	<<elseif $brothelAdsOld == -3>>
-	The featured slave actresses are all lolis.
+		The featured slave actresses are all lolis.
 	<<else>>
-	The featured slave actresses vary in age.
+		The featured slave actresses vary in age.
 	<</if>>
 	<<if $brothelAdsStacked == 1>>
-	Lots of bouncing breasts and butts
+		Lots of bouncing breasts and butts
 	<<elseif $brothelAdsStacked == -1>>
-	Lots of trim breasts and shapely butts
+		Lots of trim breasts and shapely butts
 	<<else>>
-	A variety of breast and butt sizes and shapes
+		A variety of breast and butt sizes and shapes
 	<</if>>
 	are on display, and
 	<<if $brothelAdsImplanted == 1>>
-	most of these are augmented by implants.
+		most of these are augmented by implants.
 	<<elseif $brothelAdsImplanted == -1>>
-	they're all natural.
+		they're all natural.
 	<<else>>
-	some are augmented by implants.
+		some are augmented by implants.
 	<</if>>
 	<<if $seePreg == 1>>
 		<<if $brothelAdsPreg == 1>>
@@ -89,19 +89,19 @@
 		<</if>>
 	<</if>>
 	<<if $brothelAdsModded == 1>>
-	Everything is heavily pierced and tattooed.
+		Everything is heavily pierced and tattooed.
 	<<elseif $brothelAdsModded == -1>>
-	Everything is free of tattoos and piercings.
+		Everything is free of tattoos and piercings.
 	<<else>>
-	Some of these assets are tattooed and pierced, and some aren't.
+		Some of these assets are tattooed and pierced, and some aren't.
 	<</if>>
 	The slaves in the ads are
 	<<if $brothelAdsXX == 1>>
-	sucking dick and taking cock in their pussies and asses.
+		sucking dick and taking cock in their pussies and asses.
 	<<elseif $brothelAdsXX == -1>>
-	sucking cock and being assfucked while their dicks flop around.
+		sucking cock and being assfucked while their dicks flop around.
 	<<else>>
-	sucking dick and taking anal, and the ones that have pussies are being fucked there, too.
+		sucking dick and taking anal, and the ones that have pussies are being fucked there, too.
 	<</if>>
 <</if>>
 
@@ -162,21 +162,21 @@ Body mods:
 <br>
 
 <<if $seePreg != 0>>
-Pregnancy:
-<<if $brothelAdsPreg != 1>><<link "Gravid">><<set $brothelAdsPreg = 1>><<goto "Brothel Advertisement">><</link>> | <<else>>Gravid | <</if>>
-<<if $brothelAdsPreg != -1>><<link "None">><<set $brothelAdsPreg = -1>><<goto "Brothel Advertisement">><</link>> | <<else>>None | <</if>>
-<<if $brothelAdsPreg != 0>><<link "Variety">><<set $brothelAdsPreg = 0>><<goto "Brothel Advertisement">><</link>><<else>>Variety<</if>>
-<br>
+	Pregnancy:
+	<<if $brothelAdsPreg != 1>><<link "Gravid">><<set $brothelAdsPreg = 1>><<goto "Brothel Advertisement">><</link>> | <<else>>Gravid | <</if>>
+	<<if $brothelAdsPreg != -1>><<link "None">><<set $brothelAdsPreg = -1>><<goto "Brothel Advertisement">><</link>> | <<else>>None | <</if>>
+	<<if $brothelAdsPreg != 0>><<link "Variety">><<set $brothelAdsPreg = 0>><<goto "Brothel Advertisement">><</link>><<else>>Variety<</if>>
+	<br>
 <</if>>
 
 Age:
 <<if $brothelAdsOld != 1>><<link "MILF">><<set $brothelAdsOld = 1>><<goto "Brothel Advertisement">><</link>> | <<else>>MILF | <</if>>
 <<if $brothelAdsOld != -1>><<link "Young">><<set $brothelAdsOld = -1>><<goto "Brothel Advertisement">><</link>> | <<else>>Young | <</if>>
 <<if $minimumSlaveAge < 18>>
-<<if $brothelAdsOld != -2>><<link "Teen">><<set $brothelAdsOld = -2>><<goto "Brothel Advertisement">><</link>> | <<else>>Teen | <</if>>
+	<<if $brothelAdsOld != -2>><<link "Teen">><<set $brothelAdsOld = -2>><<goto "Brothel Advertisement">><</link>> | <<else>>Teen | <</if>>
 <</if>>
 <<if $minimumSlaveAge < 13>>
-<<if $brothelAdsOld != -3>><<link "Loli">><<set $brothelAdsOld = -3>><<goto "Brothel Advertisement">><</link>> | <<else>>Loli | <</if>>
+	<<if $brothelAdsOld != -3>><<link "Loli">><<set $brothelAdsOld = -3>><<goto "Brothel Advertisement">><</link>> | <<else>>Loli | <</if>>
 <</if>>
 <<if $brothelAdsOld != 0>><<link "Variety">><<set $brothelAdsOld = 0>><<goto "Brothel Advertisement">><</link>> <<else>>Variety<</if>>
 <br>
diff --git a/src/uncategorized/costsReport.tw b/src/uncategorized/costsReport.tw
index 1e64c24c10066258524043c2707bf2c210879ddb..332815098ae69436e3fbbd837fc6ea20a87a1e20 100644
--- a/src/uncategorized/costsReport.tw
+++ b/src/uncategorized/costsReport.tw
@@ -81,7 +81,7 @@ your personal living expenses are @@.yellowgreen;<<print cashFormat(Math.trunc($
 	<<set _arcologyCosts += $peacekeepers.undermining>>
 <</if>>
 
-<<if $SF.Toggle && $SF.Active >= 1 && def $SF.Subsidy>> <<= Count()>>
+<<if $SF.Toggle && $SF.Active >= 1 && def $SF.Subsidy>> <<= App.SF.Count()>>
 	<br>__Financially supporting $SF.Lower until self sufficiency:__ <<print cashFormat(Math.ceil(_SFSubsidy))>>
 	<<set _arcologyCosts += Math.ceil(_SFSubsidy)>>
 <</if>>
diff --git a/src/uncategorized/dairyReport.tw b/src/uncategorized/dairyReport.tw
index a33099f30a0cfb7caa0fe106d62f723ee8027a7e..28960919bd6b8490ce2745ec84c1a407e6d973ea 100644
--- a/src/uncategorized/dairyReport.tw
+++ b/src/uncategorized/dairyReport.tw
@@ -196,7 +196,7 @@
 		$His skilled tongue helps $him keep $his cattle happy.
 	<</if>>
 	<<if ($Milkmaid.skill.oral < 90)>>
-		<<= SkillIncrease.Oral($slaves[_FLs], 3)>> 
+		<<= SkillIncrease.Oral($slaves[_FLs], 3)>>
 	<</if>>
 	<<if ($Milkmaid.sexualQuirk == "caring")>>
 		<<set $milkmaidTrustBonus++>>
diff --git a/src/uncategorized/hgApplication.tw b/src/uncategorized/hgApplication.tw
index ca84ef0b93fb21ac2c28b0e2e6a86170e69f9a53..214dc7d7507f7e5634ce9c8e64c23f79ed6072ba 100644
--- a/src/uncategorized/hgApplication.tw
+++ b/src/uncategorized/hgApplication.tw
@@ -414,7 +414,7 @@ In spare moments $he teaches $activeSlave.slaveName how to prostitute _himself2.
 				<<set _piercingForbidden = 1, $activeSlave.navelPiercing = 0>>
 			<<else>>
 				<<if $arcologies[0].FSDegradationist != "unset">>
-					$HeadGirl.slaveName knows that $activeSlave.slaveName needs help adjusting to life as a slave _girl2, so $he has the slave's navel pierced with a big ring. Whatever _he2 thinks in _his2 mind, $HeadGirl.slaveName makes clear to _him that _his2 body belongs to you.
+					$HeadGirl.slaveName knows that $activeSlave.slaveName needs help adjusting to life as a slave _girl2, so $he has the slave's navel pierced with a big ring. Whatever _he2 thinks in _his2 mind, $HeadGirl.slaveName makes clear to _him2 that _his2 body belongs to you.
 				<<else>>
 					$HeadGirl.slaveName knows that $activeSlave.slaveName needs help adjusting to life as a slave _girl2, so $he has the slave's navel pierced. The prettier _his2 lower half looks, the less reluctant _he2 should feel to take it up the butt.
 				<</if>>
diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw
index b5b3711602f30708a69baf4c8bf22487b4842b92..965985ddbff6ebcee20532f60265f5d91a32770f 100644
--- a/src/uncategorized/longSlaveDescription.tw
+++ b/src/uncategorized/longSlaveDescription.tw
@@ -1978,51 +1978,51 @@ $He is
 
 /*
 <<if $activeSlave.fuckdoll == 0>>
-	<<if ($activeSlave.scars == 0) && ($activeSlave.clothes isnot "no clothes")>>
+	<<if ($activeSlave.scars == 0) && ($activeSlave.clothes != "no clothes")>>
 		$activeSlave.slaveName has no apparent scars, at least none that aren't hidden by $his clothes.
-	<<elseif ($activeSlave.scars == 0) && ($activeSlave.clothes is "no clothes")>>
+	<<elseif ($activeSlave.scars == 0) && ($activeSlave.clothes == "no clothes")>>
 		$activeSlave.slaveName's body has no scars.
-	<<elseif ($activeSlave.scars == 0) && ($activeSlave.clothes is "body oil")>>
+	<<elseif ($activeSlave.scars == 0) && ($activeSlave.clothes == "body oil")>>
 		$activeSlave.slaveName's oiled body has no scars.
 
-	<<elseif ($activeSlave.scars == 1) && ($activeSlave.clothes isnot "no clothes")>>
+	<<elseif ($activeSlave.scars == 1) && ($activeSlave.clothes != "no clothes")>>
 		$activeSlave.slaveName's light scars are fully covered by $his clothes.
-	<<elseif ($activeSlave.scars == 1) && ($activeSlave.clothes is "no clothes")>>
+	<<elseif ($activeSlave.scars == 1) && ($activeSlave.clothes == "no clothes")>>
 		$activeSlave.slaveName's light scars aren't really ugly just yet.
-	<<elseif ($activeSlave.scars == 1) && ($activeSlave.clothes is "body oil")>>
+	<<elseif ($activeSlave.scars == 1) && ($activeSlave.clothes == "body oil")>>
 		$activeSlave.slaveName's light scars are somewhat showing because of the oil.
 
-	<<elseif ($activeSlave.scars == 2) and ($activeSlave.clothes isnot "no clothes")>>
+	<<elseif ($activeSlave.scars == 2) and ($activeSlave.clothes != "no clothes")>>
 		$activeSlave.slaveName's big scars are showing even with $his clothes.
-	<<elseif ($activeSlave.scars == 2) and ($activeSlave.clothes is "no clothes")>>
+	<<elseif ($activeSlave.scars == 2) and ($activeSlave.clothes == "no clothes")>>
 		$activeSlave.slaveName's big scars are quite repulsive on $his nude body.
-	<<elseif ($activeSlave.scars == 2) and ($activeSlave.clothes is "body oil")>>
+	<<elseif ($activeSlave.scars == 2) and ($activeSlave.clothes == "body oil")>>
 		$activeSlave.slaveName's big scars are really put into view because of the oil.
 
-	<<elseif ($activeSlave.scars == 3) and ($activeSlave.clothes isnot "no clothes")>>
+	<<elseif ($activeSlave.scars == 3) and ($activeSlave.clothes != "no clothes")>>
 		$activeSlave.slaveName's red scars are mostly hidden behind $his clothes
-	<<elseif ($activeSlave.scars == 3) and ($activeSlave.clothes is "no clothes")>>;
+	<<elseif ($activeSlave.scars == 3) and ($activeSlave.clothes == "no clothes")>>;
 		$activeSlave.slaveName's red scars really show on $his naked body.
-	<<elseif ($activeSlave.scars == 3) and ($activeSlave.clothes is "body oil")>>
+	<<elseif ($activeSlave.scars == 3) and ($activeSlave.clothes == "body oil")>>
 		$activeSlave.slaveName's red scars are even redder from the oil.
 
-	<<elseif ($activeSlave.scars == 4) and ($activeSlave.clothes isnot "no clothes")>>
+	<<elseif ($activeSlave.scars == 4) and ($activeSlave.clothes != "no clothes")>>
 		$activeSlave.slaveName's face shows burn scars.
-	<<elseif ($activeSlave.scars == 4) and ($activeSlave.clothes is "no clothes")>>
+	<<elseif ($activeSlave.scars == 4) and ($activeSlave.clothes == "no clothes")>>
 		$activeSlave.slaveName's face and body show some burn scars.
-	<<elseif ($activeSlave.scars == 4) and ($activeSlave.clothes is "body oil")>>
+	<<elseif ($activeSlave.scars == 4) and ($activeSlave.clothes == "body oil")>>
 		The oil glistens strangely on $activeSlave.slaveName's burn scars.
 
 	<<elseif ($activeSlave.scars == 5)>>
 		$activeSlave.slaveName has a big, menacing scar across $his face.
-	<<elseif ($activeSlave.scars == 5) and ($activeSlave.clothes is "body oil")>>
+	<<elseif ($activeSlave.scars == 5) and ($activeSlave.clothes == "body oil")>>
 		$activeSlave.slaveName has a big, menacing scar that is gleaming with the oil.
 
-	<<elseif ($activeSlave.scars == 6) and ($activeSlave.clothes isnot "no clothes")>>
+	<<elseif ($activeSlave.scars == 6) and ($activeSlave.clothes != "no clothes")>>
 		$He has an easily visible scar on $his face that gives it an exotic, yet appealing look.
-	<<elseif ($activeSlave.scars == 6) and ($activeSlave.clothes is "no clothes")>>
+	<<elseif ($activeSlave.scars == 6) and ($activeSlave.clothes == "no clothes")>>
 		$He has an easily visible scar on $his face that makes it stand out from the rest of $his naked body.
-	<<elseif ($activeSlave.scars == 6) and ($activeSlave.clothes is "body oil")>>
+	<<elseif ($activeSlave.scars == 6) and ($activeSlave.clothes == "body oil")>>
 		$He has an easily visible scar on $his face that stands out thanks to the oil.
 	<</if>>
 <</if>>
diff --git a/src/uncategorized/managePenthouse.tw b/src/uncategorized/managePenthouse.tw
index 897242f560b7303a8d4b35f53d514a6aa3e3d9ec..6474694e04707479d7bc0fc143b90212835bb028 100644
--- a/src/uncategorized/managePenthouse.tw
+++ b/src/uncategorized/managePenthouse.tw
@@ -18,8 +18,8 @@
 <<if $SF.Toggle && $SF.Active >= 1>>
 	<<link "Take your express elevator down to $SF.Lower""Firebase">> <</link>>
 	<br><br>
-<<elseif $SF.BadOutcome === "lockdown">>
-	The thick wall of rubble in front of the entrance to $SF.Lower's firebase would make the trip worthless.
+<<elseif $SF.FS.Tension > 100>>
+	<<= App.SF.fsIntegration('BadOutcome_Firebase')>>
 <</if>>
 
 __Penthouse Capacity__
@@ -80,15 +80,15 @@ __Penthouse Facilities__
 <</if>>
 
 <<if $cheatMode == 1>>
-<<if $familyTesting == 1 && $seePreg != 0>>
-<br>
-<<if $nursery == 0>>
-	[[Build a nursery to raise children from birth|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $nursery = 5, $nurseryNannies = 1, $PC.engineering += 1]]
-		//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
-<<else>>
-		The penthouse has a nursery built where infants can be brought up.
-<</if>>
-<</if>>
+	<<if $familyTesting == 1 && $seePreg != 0>>
+		<br>
+		<<if $nursery == 0>>
+			[[Build a nursery to raise children from birth|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $nursery = 5, $nurseryNannies = 1, $PC.engineering += 1]]
+				//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
+		<<else>>
+				The penthouse has a nursery built where infants can be brought up.
+		<</if>>
+	<</if>>
 <</if>>
 
 <br>
@@ -112,17 +112,17 @@ __Penthouse Facilities__
 <br>
 
 <<if $familyTesting == 1 && $seePreg != 0>>
-<<if $arcologyUpgrade.grid == 1>>
-<<if $incubator == 0>>
-	[[Install an incubation chamber to rapidly age children|Manage Penthouse][cashX(forceNeg(Math.trunc(100000*$upgradeMultiplierArcology)), "capEx"), $incubator = 1, $PC.engineering += 1]]
-	//Costs <<print cashFormat(Math.trunc(100000*$upgradeMultiplierArcology))>>//
-<<else>>
-	The penthouse has a specialized facility dedicated to rapidly aging children.
-<</if>>
-<<elseif $arcologyUpgrade.hydro == 1 || $arcologyUpgrade.apron == 1>>
-	//Installation of a child aging facility will require the arcology's electrical infrastructure to be overhauled.//
-<</if>>
-<br>
+	<<if $arcologyUpgrade.grid == 1>>
+		<<if $incubator == 0>>
+			[[Install an incubation chamber to rapidly age children|Manage Penthouse][cashX(forceNeg(Math.trunc(100000*$upgradeMultiplierArcology)), "capEx"), $incubator = 1, $PC.engineering += 1]]
+			//Costs <<print cashFormat(Math.trunc(100000*$upgradeMultiplierArcology))>>//
+		<<else>>
+			The penthouse has a specialized facility dedicated to rapidly aging children.
+		<</if>>
+	<<elseif $arcologyUpgrade.hydro == 1 || $arcologyUpgrade.apron == 1>>
+		//Installation of a child aging facility will require the arcology's electrical infrastructure to be overhauled.//
+	<</if>>
+	<br>
 <</if>>
 
 <<if $HGSuite != 1>>
@@ -148,13 +148,13 @@ __Penthouse Upgrades__
 <br>
 
 <<if $boobAccessibility != 1>>
-<<if $pregAccessibility == 1 || $ballsAccessibility || $buttAccessibility>>
-	Your penthouse has already been widened for overly wide slaves but there are no special accommodations for slaves with enormous breasts. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $boobAccessibility = 1, $PC.engineering += .5]]
-	//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
-<<else>>
-	Your penthouse has no special accessibility provisions for slaves with enormous breasts. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $boobAccessibility = 1, $PC.engineering += 1]]
-	//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>//
-<</if>>
+	<<if $pregAccessibility == 1 || $ballsAccessibility || $buttAccessibility>>
+		Your penthouse has already been widened for overly wide slaves but there are no special accommodations for slaves with enormous breasts. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $boobAccessibility = 1, $PC.engineering += .5]]
+		//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
+	<<else>>
+		Your penthouse has no special accessibility provisions for slaves with enormous breasts. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $boobAccessibility = 1, $PC.engineering += 1]]
+		//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>//
+	<</if>>
 <<else>>
 	The entire penthouse has been remodeled to make life with enormous breasts easier. The doorways have been widened, and tables, sinks and other items now have two levels: one at shoulder height for slaves to use, and another at waist height for them to rest their tits on while they do.
 <</if>>
@@ -175,46 +175,46 @@ __Penthouse Upgrades__
 <</if>>
 
 <<if $arcologies[0].FSAssetExpansionistResearch == 1>>
-<br>
+	<br>
 
-<<if $dickAccessibility != 1>>
-	Your penthouse has no special accessibility provisions for slaves with enormous dicks. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $dickAccessibility = 1, $PC.engineering += .5]]
-	//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
-<<else>>
-	The entire penthouse has been remodeled to make life with enormous dicks easier. Carts, slings and harnesses are available to keep things from dragging and there is now plenty of room for huge genitals to occupy when a slave must use appliances, tables and seats.
-<</if>>
+	<<if $dickAccessibility != 1>>
+		Your penthouse has no special accessibility provisions for slaves with enormous dicks. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $dickAccessibility = 1, $PC.engineering += .5]]
+		//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
+	<<else>>
+		The entire penthouse has been remodeled to make life with enormous dicks easier. Carts, slings and harnesses are available to keep things from dragging and there is now plenty of room for huge genitals to occupy when a slave must use appliances, tables and seats.
+	<</if>>
 
-<br>
-<<if $ballsAccessibility != 1>>
-<<if $boobAccessibility == 1 || $buttAccessibility || $pregAccessibility>>
-	Your penthouse has already been widened to make life for overly wide slaves easier but there are no special accommodations for slaves with enormous testicles. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $ballsAccessibility = 1, $PC.engineering += .5]]
-	//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
-<<else>>
-	Your penthouse has no special accessibility provisions for slaves with enormous testicles. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $ballsAccessibility = 1, $PC.engineering += 1]]
-	//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>//
-<</if>>
-<<else>>
-	The entire penthouse has been remodeled to make life with enormous testicles easier. The doorways have been widened, tables, sinks and other items are now designed to fit over giant balls, drains have been widened to allow excessive cum to flow easier, and seats have been specially altered to allow plenty of ball room for seated slaves.
-<</if>>
+	<br>
+	<<if $ballsAccessibility != 1>>
+		<<if $boobAccessibility == 1 || $buttAccessibility || $pregAccessibility>>
+			Your penthouse has already been widened to make life for overly wide slaves easier but there are no special accommodations for slaves with enormous testicles. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $ballsAccessibility = 1, $PC.engineering += .5]]
+			//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
+		<<else>>
+			Your penthouse has no special accessibility provisions for slaves with enormous testicles. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $ballsAccessibility = 1, $PC.engineering += 1]]
+			//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>//
+		<</if>>
+	<<else>>
+		The entire penthouse has been remodeled to make life with enormous testicles easier. The doorways have been widened, tables, sinks and other items are now designed to fit over giant balls, drains have been widened to allow excessive cum to flow easier, and seats have been specially altered to allow plenty of ball room for seated slaves.
+	<</if>>
 
-<br>
-<<if $buttAccessibility != 1>>
-<<if $boobAccessibility == 1 || $dickAccessibility || $ballsAccessibility>>
-	Your penthouse has already been widened to make life for overly wide slaves easier but there are no special accommodations for slaves with gigantic posteriors. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $buttAccessibility = 1, $PC.engineering += .5]]
-	//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
-<<else>>
-	Your penthouse has no special accessibility provisions for slaves with enormous posteriors. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $buttAccessibility = 1, $PC.engineering += 1]]
-	//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>//
-<</if>>
-<<else>>
-	The entire penthouse has been remodeled to make life with enormous rears easier. The doorways have been widened, and anything that can be sat on is now extra, extra wide and reinforced to allow even the heaviest, biggest asses to comfortably rest upon it.
-<</if>>
+	<br>
+	<<if $buttAccessibility != 1>>
+		<<if $boobAccessibility == 1 || $dickAccessibility || $ballsAccessibility>>
+			Your penthouse has already been widened to make life for overly wide slaves easier but there are no special accommodations for slaves with gigantic posteriors. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $buttAccessibility = 1, $PC.engineering += .5]]
+			//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
+		<<else>>
+			Your penthouse has no special accessibility provisions for slaves with enormous posteriors. [[Remodel for accessibility|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $buttAccessibility = 1, $PC.engineering += 1]]
+			//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>//
+		<</if>>
+	<<else>>
+		The entire penthouse has been remodeled to make life with enormous rears easier. The doorways have been widened, and anything that can be sat on is now extra, extra wide and reinforced to allow even the heaviest, biggest asses to comfortably rest upon it.
+	<</if>>
 
-<<if $boobAccessibility > 0 || $pregAccessibility > 0 || $dickAccessibility > 0 || $ballsAccessibility > 0 || $buttAccessibility > 0>>
-<<set _removeCost = Math.trunc(((5000*($boobAccessibility+$pregAccessibility+$dickAccessibility+$ballsAccessibility+$buttAccessibility)))*$upgradeMultiplierArcology)>>
-<br>
-//[[Remove the accessibility renovations|Manage Penthouse][cashX(forceNeg(_removeCost), "capEx"), $boobAccessibility = 0, $pregAccessibility = 0, $dickAccessibility = 0, $ballsAccessibility = 0, $buttAccessibility = 0]] Will cost <<print cashFormat(_removeCost)>>//
-<</if>>
+	<<if $boobAccessibility > 0 || $pregAccessibility > 0 || $dickAccessibility > 0 || $ballsAccessibility > 0 || $buttAccessibility > 0>>
+		<<set _removeCost = Math.trunc(((5000*($boobAccessibility+$pregAccessibility+$dickAccessibility+$ballsAccessibility+$buttAccessibility)))*$upgradeMultiplierArcology)>>
+		<br>
+		//[[Remove the accessibility renovations|Manage Penthouse][cashX(forceNeg(_removeCost), "capEx"), $boobAccessibility = 0, $pregAccessibility = 0, $dickAccessibility = 0, $ballsAccessibility = 0, $buttAccessibility = 0]] Will cost <<print cashFormat(_removeCost)>>//
+	<</if>>
 
 <</if>>
 
@@ -248,12 +248,12 @@ __Penthouse Upgrades__
 <br>
 
 <<if $dairy != 0>>
-<<if $dairyPiping == 0>>
-	[[Install pipes connecting the Dairy to the rest of your penthouse for use in enema play|Manage Penthouse][cashX(forceNeg(Math.trunc(15000*$upgradeMultiplierArcology)), "capEx"), $dairyPiping = 1, $PC.engineering += .5]]
-	//Costs <<print cashFormat(Math.trunc(15000*$upgradeMultiplierArcology))>>//
-<<else>>
-	Various taps around the penthouse supply product from $dairyName for use in enema play and force-feeding.
-<</if>>
+	<<if $dairyPiping == 0>>
+		[[Install pipes connecting the Dairy to the rest of your penthouse for use in enema play|Manage Penthouse][cashX(forceNeg(Math.trunc(15000*$upgradeMultiplierArcology)), "capEx"), $dairyPiping = 1, $PC.engineering += .5]]
+		//Costs <<print cashFormat(Math.trunc(15000*$upgradeMultiplierArcology))>>//
+	<<else>>
+		Various taps around the penthouse supply product from $dairyName for use in enema play and force-feeding.
+	<</if>>
 <<elseif $dairyPiping == 1>>
 	Various taps around the penthouse supply product from $dairyName for use in enema play and force-feeding. With no dairy to draw from, they are currently unused.
 <</if>>
@@ -282,18 +282,18 @@ __Penthouse Upgrades__
 	There is a small armory next to your office that can support a bodyguard. [[Upgrade the armory with a private room for the bodyguard|Manage Penthouse][cashX(forceNeg(Math.trunc(5000*$upgradeMultiplierArcology)), "capEx"), $dojo = 2, $PC.engineering += .5]]
 	//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>//
 <<else>>
-	There is a small armory next to your office that can support a bodyguard, with a little room for her to rest in when off duty.
+	There is a small armory next to your office that can support a bodyguard, with a little room for them to rest in when off duty.
 <</if>>
 
 <br>
 
 <<if $dispensary == 0>>
-<<if $rep > 2000>>
-	[[Install a pharmaceutical fabricator|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $dispensary = 1, $drugsCost = $drugsCost*.75, $PC.engineering += .1]]
-	//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
-<<else>>
-	//You lack the reputation to obtain cutting-edge pharmaceutical technology//
-<</if>>
+	<<if $rep > 2000>>
+		[[Install a pharmaceutical fabricator|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $dispensary = 1, $drugsCost = $drugsCost*.75, $PC.engineering += .1]]
+		//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
+	<<else>>
+		//You lack the reputation to obtain cutting-edge pharmaceutical technology//
+	<</if>>
 <<else>>
 	There is a [[pharmaceutical fabricator|Dispensary]] attached to the surgery.
 <</if>>
@@ -301,12 +301,12 @@ __Penthouse Upgrades__
 <br>
 
 <<if $ImplantProductionUpgrade == 0>>
-<<if $rep > 2000>>
-	[[Install an implant manufactory|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $ImplantProductionUpgrade = 1, $PC.engineering += .1]]
-	//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
-<<else>>
-	//You lack the reputation to obtain cutting-edge implant fabrication technology//
-<</if>>
+	<<if $rep > 2000>>
+		[[Install an implant manufactory|Manage Penthouse][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $ImplantProductionUpgrade = 1, $PC.engineering += .1]]
+		//Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>>//
+	<<else>>
+		//You lack the reputation to obtain cutting-edge implant fabrication technology//
+	<</if>>
 <<else>>
 	There is a [[implant manufactory|Implant Manufactory]] attached to the surgery.
 <</if>>
@@ -314,12 +314,12 @@ __Penthouse Upgrades__
 <br>
 
 <<if $organFarmUpgrade == 0>>
-<<if $rep > 10000>>
-	[[Install an experimental organ farm|Manage Penthouse][cashX(forceNeg(Math.trunc(70000*$upgradeMultiplierArcology)), "capEx"), $organFarmUpgrade = 1, $PC.engineering += .1]]
-	//Costs <<print cashFormat(Math.trunc(70000*$upgradeMultiplierArcology))>>//
-<<else>>
-	//You lack the reputation to obtain an experimental organ fabricator//
-<</if>>
+	<<if $rep > 10000>>
+		[[Install an experimental organ farm|Manage Penthouse][cashX(forceNeg(Math.trunc(70000*$upgradeMultiplierArcology)), "capEx"), $organFarmUpgrade = 1, $PC.engineering += .1]]
+		//Costs <<print cashFormat(Math.trunc(70000*$upgradeMultiplierArcology))>>//
+	<<else>>
+		//You lack the reputation to obtain an experimental organ fabricator//
+	<</if>>
 <<else>>
 	There is an [[organ farm|Organ Farm]] attached to the surgery.
 <</if>>
@@ -327,12 +327,12 @@ __Penthouse Upgrades__
 <br>
 
 <<if $geneticMappingUpgrade == 0>>
-<<if $rep > 14000>>
-	[[Install a genetic sequencer|Manage Penthouse][cashX(-120000, "capEx"), $geneticMappingUpgrade = 1, $PC.engineering += .1]]
-	//Costs <<print cashFormat(120000)>>//
-<<else>>
-	//You lack the reputation to purchase a cutting-edge genetic sequencer//
-<</if>>
+	<<if $rep > 14000>>
+		[[Install a genetic sequencer|Manage Penthouse][cashX(-120000, "capEx"), $geneticMappingUpgrade = 1, $PC.engineering += .1]]
+		//Costs <<print cashFormat(120000)>>//
+	<<else>>
+		//You lack the reputation to purchase a cutting-edge genetic sequencer//
+	<</if>>
 <<else>>
 	There is a [[genetic sequencer|Gene Lab]] attached to the surgery.
 <</if>>
@@ -342,13 +342,13 @@ __Penthouse Upgrades__
 <<switch $prostheticsUpgrade>>
 <<case 0>>
 	<<if ($rep > 8000)>>
-		[[Install basic equipment for attaching and maintaince of prosthetics|Manage Penthouse][cashX(forceNeg(Math.trunc(100000*$upgradeMultiplierArcology)), "capEx"), $prostheticsUpgrade = 1, $PC.engineering += 1]]
+		[[Install basic equipment for attaching and maintenance of prosthetics|Manage Penthouse][cashX(forceNeg(Math.trunc(100000*$upgradeMultiplierArcology)), "capEx"), $prostheticsUpgrade = 1, $PC.engineering += 1]]
 		//Costs <<print cashFormat(Math.trunc(100000*$upgradeMultiplierArcology))>>//
 	<<else>>
-		//You lack the reputation to buy basic equipment for attaching and maintaince of prosthetics.//
+		//You lack the reputation to buy basic equipment for attaching and maintenance of prosthetics.//
 	<</if>>
 <<case 1>>
-	You have basic equipment for attaching and maintaince of prosthetics.
+	You have basic equipment for attaching and maintenance of prosthetics.
 	<<if ($rep > 12000)>>
 		[[Buy a contract for advanced prosthetics|Manage Penthouse][cashX(forceNeg(Math.trunc(100000*$upgradeMultiplierArcology)), "capEx"), $prostheticsUpgrade = 2]]
 		//Costs <<print cashFormat(Math.trunc(100000*$upgradeMultiplierArcology))>>//
@@ -356,7 +356,7 @@ __Penthouse Upgrades__
 		//You lack the reputation to get a contract for advanced prosthetics.//
 	<</if>>
 <<case 2>>
-	You have basic equipment for attaching and maintaince of prosthetics and a contract to guarantee the availability of advanced prosthetics.
+	You have basic equipment for attaching and maintenance of prosthetics and a contract to guarantee the availability of advanced prosthetics.
 	<<if ($rep > 16000)>>
 		[[Buy a contract for high-tech prosthetics|Manage Penthouse][cashX(forceNeg(Math.trunc(100000*$upgradeMultiplierArcology)), "capEx"), $prostheticsUpgrade = 3]]
 		//Costs <<print cashFormat(Math.trunc(100000*$upgradeMultiplierArcology))>>//
@@ -364,7 +364,7 @@ __Penthouse Upgrades__
 		//You lack the reputation to get a contract for high-tech prosthetics.//
 	<</if>>
 <<case 3>>
-	You have basic equipment for attaching and maintaince of prosthetics and a contract to guarantee the availability of high-tech prosthetics.
+	You have basic equipment for attaching and maintenance of prosthetics and a contract to guarantee the availability of high-tech prosthetics.
 <</switch>>
 <br>
 <<if $prostheticsUpgrade > 0>>
@@ -380,12 +380,12 @@ __Penthouse Upgrades__
 <br><br>
 
 <<if $surgeryUpgrade == 0>>
-<<if $rep > 10000>>
-	[[Upgrade the remote surgery|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $surgeryUpgrade = 1, $PC.engineering += 1]]
-	//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>//
-<<else>>
-	//You lack the reputation to secure rare surgery upgrades//
-<</if>>
+	<<if $rep > 10000>>
+		[[Upgrade the remote surgery|Manage Penthouse][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $surgeryUpgrade = 1, $PC.engineering += 1]]
+		//Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>>//
+	<<else>>
+		//You lack the reputation to secure rare surgery upgrades//
+	<</if>>
 <<else>>
 	Your remote surgery has been heavily upgraded and customized.
 <</if>>
@@ -393,12 +393,12 @@ __Penthouse Upgrades__
 <<if $seePreg == 1>>
 	<br>
 	<<if $pregnancyMonitoringUpgrade == 0>>
-	<<if $rep > 10000>>
-		[[Upgrade the pregnancy monitoring systems|Manage Penthouse][cashX(forceNeg(Math.trunc(30000*$upgradeMultiplierArcology)), "capEx"), $pregnancyMonitoringUpgrade = 1, $PC.engineering += 1]]
-		//Costs <<print cashFormat(Math.trunc(30000*$upgradeMultiplierArcology))>>//
-	<<else>>
-		//You lack the reputation to purchase improved pregnancy monitoring systems//
-	<</if>>
+		<<if $rep > 10000>>
+			[[Upgrade the pregnancy monitoring systems|Manage Penthouse][cashX(forceNeg(Math.trunc(30000*$upgradeMultiplierArcology)), "capEx"), $pregnancyMonitoringUpgrade = 1, $PC.engineering += 1]]
+			//Costs <<print cashFormat(Math.trunc(30000*$upgradeMultiplierArcology))>>//
+		<<else>>
+			//You lack the reputation to purchase improved pregnancy monitoring systems//
+		<</if>>
 	<<else>>
 		Your pregnancy monitoring systems have been heavily upgraded.
 	<</if>>
diff --git a/src/uncategorized/multiImplant.tw b/src/uncategorized/multiImplant.tw
index 56b4ec893a0cfd9a151f254adcdefd077fdfdeb7..07ca451dc4c48ff43a00b3463f07818207687ed4 100644
--- a/src/uncategorized/multiImplant.tw
+++ b/src/uncategorized/multiImplant.tw
@@ -1038,7 +1038,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized
 			<</if>>
 		<<case "basicL" "sexL" "beautyL" "combatL" "cyberneticL">>
 			<<if $activeSlave.fuckdoll != 0>>
-				//Since a fuckdoll can't use prosthetic limbs the <<= setup.prosthetics[_p.id].name>> will be put into storage.//
+				//Since a Fuckdoll can't use prosthetic limbs the <<= setup.prosthetics[_p.id].name>> will be put into storage.//
 			<<elseif $activeSlave.amp == 0>>
 				//Since $he must be an amputee to attach prosthetic limbs the <<= setup.prosthetics[_p.id].name>> will be put into storage.//
 			<<elseif $activeSlave.PLimb == 0>>
diff --git a/src/uncategorized/nextWeek.tw b/src/uncategorized/nextWeek.tw
index 8d5bb88f95fa1ea0373e3dc6e3125c300431f273..a023a753f4517d88fbf2cf64fdb612cfa8ee55ea 100644
--- a/src/uncategorized/nextWeek.tw
+++ b/src/uncategorized/nextWeek.tw
@@ -443,6 +443,10 @@
 	<<script>>Save.autosave.save("Week Start Autosave")<</script>>
 <</if>>
 
-<<if $SF.Toggle && $SF.Active >= 1>> <<= Count()>> <</if>>
+<<if $SF.Toggle && $SF.Active >= 1>>
+	<<= App.SF.Count()>>
+<<elseif $SF.Toggle && $SF.FS.Tension > 100>>
+	<<if ($rep > 17500)>> <<set $rep = 17500>> <</if>>
+<</if>>
 <<set $NaNArray = findNaN()>>
 <<goto "Main">>
diff --git a/src/uncategorized/persBusiness.tw b/src/uncategorized/persBusiness.tw
index e4b0c14a9bb8c58b9eb696ec4d2a3ac55f7ea48e..000c82f214c65e1117403177fb516afbf5a3ee19 100644
--- a/src/uncategorized/persBusiness.tw
+++ b/src/uncategorized/persBusiness.tw
@@ -1074,5 +1074,5 @@ The RomanFS may need further tweaking (it probably got weaker). Could increase t
 <</if>>
 <</if>>
 
-<<if $SF.Toggle && $SF.Active >= 1>> <<= SFReport()>> <</if>>
+<<if $SF.Toggle && $SF.Active >= 1>> <<= App.SF.AAR()>> <</if>>
 <br>
diff --git a/src/uncategorized/personalAssistantAppearance.tw b/src/uncategorized/personalAssistantAppearance.tw
index e6d1e57057d0110770944a39ab6bbed633abfa2a..2020edd02481d8fc68d3b6ed377f55967f9a6b81 100644
--- a/src/uncategorized/personalAssistantAppearance.tw
+++ b/src/uncategorized/personalAssistantAppearance.tw
@@ -516,7 +516,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF
 	<<case "repopulation focus">>
 		_HeA rests atop _hisA newly modified belly. It bulges greatly from all sides and holds _himA far off the ground.
 	<<case "eugenics">>
-		_HeA appears as an ugly and unkempt slavegirl, massively pregnant with hundreds of subhuman spawn. _HisA immense belly is coated in bulges and moving ominously. A malformed, impish child claws its way out of _hisA ruined cunt periodically.
+		_HeA appears as an ugly and unkempt slave<<= _girlA>>, massively pregnant with hundreds of subhuman spawn. _HisA immense belly is coated in bulges and moving ominously. A malformed, impish child claws its way out of _hisA ruined cunt periodically.
 	<<case "degradationist">>
 		_HeA's made _himselfA up to look almost comically evil: _heA's wearing black lipstick and black eyeliner. Numerous studs cover _hisA bulging belly and a large, heavy ring is driven through _hisA popped navel. Liquid constantly oozes from _hisA gaping vagina where a baby is held mid-birth by several criss-crossing chains.
 	<<case "supremacist">>
@@ -607,7 +607,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF
 	<<case "supremacist">>
 		_girlA wearing shorts and a pink t-shirt with the words '<<= properMaster()>>'s little $arcologies[0].FSSupremacistRace princess' on the front.
 	<<case "subjugationist">>
-		slavegirl wearing nothing but a leather collar and trying _hisA best to do master proud.
+		slave<<= _girlA>> wearing nothing but a leather collar and trying _hisA best to do master proud.
 	<<case "roman revivalist">>
 		_girlA wearing a girl's stola.
 	<<case "aztec revivalist">>
@@ -625,7 +625,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF
 	<<case "repopulation focus">>
 		_girlA wearing a loose dress, its middle bulges considerably from _hisA pregnancy.
 	<<case "eugenics">>
-		slavegirl wearing nothing but an overly complex chastity belt and trying _hisA best to do master proud.
+		slave<<= _girlA>> wearing nothing but an overly complex chastity belt and trying _hisA best to do master proud.
 	<<case "degradationist">>
 		_girlA wearing an oversized v-neck t-shirt. The neck hole hangs low enough to show off _hisA perky A-cup tits and the piercings through them.
 	<<case "physical idealist">>
diff --git a/src/uncategorized/randomEventSelect.tw b/src/uncategorized/randomEventSelect.tw
index 899f34a00045eb4931ce25d38dd1677b2d148700..e935ed03b6885381b890ed563e61898712c546fb 100644
--- a/src/uncategorized/randomEventSelect.tw
+++ b/src/uncategorized/randomEventSelect.tw
@@ -16,8 +16,8 @@
 <<for $i = 0; $i < $events.length; $i++>>
 	<br>[[$events[$i]]]
 	<<if $events[$i] == "RESS">>
-	&ndash; $RESSevent[$RESSeventIndex]
-	<<set $RESSeventIndex += 1>>
+		&ndash; $RESSevent[$RESSeventIndex]
+		<<set $RESSeventIndex += 1>>
 	<</if>>
 <</for>>
 <br><br>
diff --git a/src/uncategorized/reAWOL.tw b/src/uncategorized/reAWOL.tw
index 62391c396ffaffbc99d6ef762865479b8c10ff36..5ec9498f63d9dfc46279af917fe1f7dee3df6e87 100644
--- a/src/uncategorized/reAWOL.tw
+++ b/src/uncategorized/reAWOL.tw
@@ -109,7 +109,7 @@ Your window of opportunity to act is closing. If you have plans for punishing th
 <<if $SF.Toggle && $SF.Active >= 1>>
 	<<link "Let your $SF.Lower handle $him">>
 		<<replace "#result">>
-				You take a tablet and send <<print SFC()>> a notice about the mutinous mercenary. When you have the majority of the pertinent details committed to text, all that remains is to decide the fate of your quarry.
+				You take a tablet and send <<print App.SF.SFC()>> a notice about the mutinous mercenary. When you have the majority of the pertinent details committed to text, all that remains is to decide the fate of your quarry.
 				<br><br>
 				<span id="SFresult">
 
diff --git a/src/uncategorized/reShippingContainer.tw b/src/uncategorized/reShippingContainer.tw
index 74c8fcf268a432d4bbb65669c6032db962b34de3..5080f8ec3094e202ff96ea510abc027ed0573817 100644
--- a/src/uncategorized/reShippingContainer.tw
+++ b/src/uncategorized/reShippingContainer.tw
@@ -37,51 +37,66 @@ For now, the crowd around you is looking at the helpless human cargo with
 <br><br>
 
 <span id="result">
-<<link "Conduct an impromptu auction">>
-	<<replace "#result">>
-	<<for _reShip = 0; _reShip < _newSlaves.length; _reShip++>>
-		<<set $slaveCost = slaveCost(_newSlaves[_reShip])>>
-		<<run cashX($slaveCost, "slaveTransfer")>>
-	<</for>>
-	Allowing humor into your voice, you announce an auction, to be held immediately. The crowd appreciates the wit, and @@.green;appreciates it even more@@ when you conduct the auction yourself. It's always good to take an opportunity to show off your understanding of the slave market in public. You @@.yellowgreen;sell them all,@@ sex slaves and menials alike. Welcome to the Free Cities.
-	<<set $menials -= 25>>
-	<<run cashX((25*_bonusCash), "slaveTransfer")>>
-	<<run repX(500, "event")>>
-	<</replace>>
-<</link>>
-<br><<link "Keep them">>
-	<<replace "#result">>
-	<<for _reShip = 0; _reShip < _newSlaves.length; _reShip++>>
-		<<run newSlave(_newSlaves[_reShip])>> /* skip New Slave Intro */
-	<</for>>
-	You announce that the shipment is in violation of shipping and slave market regulations, and is being confiscated. There's a certain @@.red;disappointment@@ in the crowd that nothing more interesting came of it, but it's minor when compared to the chattel you just seized.
-	<<run repX(-50, "event")>>
-	<</replace>>
-<</link>>
-<<if $arcologies[0].FSDegradationist !== "unset">>
-<br><<link "Indulge the crowd's Degradationism">>
-	<<replace "#result">>
-	<<for _reShip = 0; _reShip < _newSlaves.length; _reShip++>>
-		<<if _newSlaves[_reShip].vagina > -1>><<set _newSlaves[_reShip].vagina = 3>><</if>>
-		<<set _newSlaves[_reShip].anus = 3>>
-		<<set _newSlaves[_reShip].health -= 20>>
-		<<run newSlave(_newSlaves[_reShip])>> /* skip New Slave Intro */
-	<</for>>
-	You use the container handling systems to segregate the obvious menials from those with any potential as sex slaves. The menials go into a different container, which is whisked off, leaving a little shivering knot of frightened bodies, vulnerable and naked. The crowd watched all this with good humor, and there's silence enough that everyone hears your quiet announcement. You announce that the shipment is in violation of shipping and slave market regulations, and is being confiscated; however, you don't expect to see these particular slaves delivered to your penthouse for a couple of hours. Then you turn your back and walk away. The crowd gives a kind of @@.green;appreciative howl@@ which, understandably, produces a wail of terror from the slaves. As you head off, the sobbing turns into screaming. It sounds like your new slaves might be a bit stretched out, here and there.
-	<<run repX(1000, "event")>>
-	<</replace>>
-<</link>>
-<<elseif $arcologies[0].FSPaternalist !== "unset">>
-<br><<link "Indulge the crowd's Paternalism">>
-	<<replace "#result">>
-	<<for _reShip = 0; _reShip < _newSlaves.length; _reShip++>>
-		<<set $slaveCost = slaveCost(_newSlaves[_reShip])>>
-		<<run cashX($slaveCost, "slaveTransfer")>>
-	<</for>>
-	You hurry forward, beckoning the crowd to accompany you. The wretched slaves cringe with fear, but soon they're being comforted, offered water, and examined for injury. Once the most pressing needs are attended to, you call for everyone's attention. You pride yourself on knowing your citizens well, and you can pick good Paternalists out of the crowd at will. Calling them by name, you ask whether they'd be willing to take on one of these poor slaves. One by one, you pair slave and Master or Mistress, rewarding your best people with public approbation, not to mention a free slave. The initial gasps of surprise quickly grow into @@.green;thunderous applause.@@ Your people love you. Several of the slaves begin to cry, mostly from confusion or sheer exhaustion; they don't yet know how lucky they are.
-	<<set $menials -= 25>>
-	<<run repX(12500, "event")>>
-	<</replace>>
-<</link>>
-<</if>>
+	<<link "Conduct an impromptu auction">>
+		<<replace "#result">>
+			<<for _reShip = 0; _reShip < _newSlaves.length; _reShip++>>
+				<<set $slaveCost = slaveCost(_newSlaves[_reShip])>>
+				<<run cashX($slaveCost, "slaveTransfer")>>
+			<</for>>
+			Allowing humor into your voice, you announce an auction, to be held immediately. The crowd appreciates the wit, and @@.green;appreciates it even more@@ when you conduct the auction yourself. It's always good to take an opportunity to show off your understanding of the slave market in public. You @@.yellowgreen;sell them all,@@ sex slaves and menials alike. Welcome to the Free Cities.
+			<<set $menials -= 25>>
+			<<run cashX((25*_bonusCash), "slaveTransfer")>>
+			<<run repX(500, "event")>>
+		<</replace>>
+	<</link>>
+	<br><<link "Keep them">>
+		<<replace "#result">>
+			<<for _reShip = 0; _reShip < _newSlaves.length; _reShip++>>
+				<<run newSlave(_newSlaves[_reShip])>> /* skip New Slave Intro */
+			<</for>>
+			You announce that the shipment is in violation of shipping and slave market regulations, and is being confiscated. There's a certain @@.red;disappointment@@ in the crowd that nothing more interesting came of it, but it's minor when compared to the chattel you just seized.
+			<<run repX(forceNeg(50), "event")>>
+		<</replace>>
+	<</link>>
+	<<if $arcologies[0].FSDegradationist !== "unset">>
+		<br><<link "Indulge the crowd's Degradationism">>
+			<<replace "#result">>
+				<<for _reShip = 0; _reShip < _newSlaves.length; _reShip++>>
+					<<set _aTotal = random(20,25), _oTotal = random(25,30)>>
+					<<set _newSlaves[_reShip].counter.anal += _aTotal>>
+					<<set _newSlaves[_reShip].counter.oral += _oTotal>>
+					<<set _pTotal = _aTotal + _oTotal>>
+					<<if _newSlaves[_reShip].vagina > -1>>
+						<<set _vTotal = random(25,30)>>
+						<<set _newSlaves[_reShip].vagina = 3>>
+						<<set _newSlaves[_reShip].counter.vaginal += _vTotal>>
+						<<set _pTotal += _vTotal>>
+					<</if>>
+					<<if _newSlaves[_reShip].boobs > 300>>
+						<<set _mTotal = random(10,15)>>
+						<<set _newSlaves[_reShip].counter.mammary += _mTotal>>
+						<<set _pTotal += _mTotal>>
+					<</if>>
+					<<set _newSlaves[_reShip].counter.publicUse += _pTotal>>
+					<<set _newSlaves[_reShip].anus = 3>>
+					<<set _newSlaves[_reShip].health -= 20>>
+					<<run newSlave(_newSlaves[_reShip])>> /* skip New Slave Intro */
+				<</for>>
+				You use the container handling systems to segregate the obvious menials from those with any potential as sex slaves. The menials go into a different container, which is whisked off, leaving a little shivering knot of frightened bodies, vulnerable and naked. The crowd watches all this with good humor, and there's silence enough that everyone hears your quiet announcement. You announce that the shipment is in violation of shipping and slave market regulations, and is being confiscated; however, you don't expect to see these particular slaves delivered to your penthouse for a couple of hours. Then you turn your back and walk away. The crowd gives a kind of @@.green;appreciative howl@@ which, understandably, produces a wail of terror from the slaves. As you head off, the sobbing turns into screaming. It sounds like your new slaves might be a bit stretched out, here and there.
+				<<run repX(1000, "event")>>
+			<</replace>>
+		<</link>>
+	<<elseif $arcologies[0].FSPaternalist !== "unset">>
+		<br><<link "Indulge the crowd's Paternalism">>
+			<<replace "#result">>
+				<<for _reShip = 0; _reShip < _newSlaves.length; _reShip++>>
+					<<set $slaveCost = slaveCost(_newSlaves[_reShip])>>
+					<<run cashX($slaveCost, "slaveTransfer")>>
+				<</for>>
+				You hurry forward, beckoning the crowd to accompany you. The wretched slaves cringe with fear, but soon they're being comforted, offered water, and examined for injury. Once the most pressing needs are attended to, you call for everyone's attention. You pride yourself on knowing your citizens well, and you can pick good Paternalists out of the crowd at will. Calling them by name, you ask whether they'd be willing to take on one of these poor slaves. One by one, you pair slave and Master or Mistress, rewarding your best people with public approbation, not to mention a free slave. The initial gasps of surprise quickly grow into @@.green;thunderous applause.@@ Your people love you. Several of the slaves begin to cry, mostly from confusion or sheer exhaustion; they don't yet know how lucky they are.
+				<<set $menials -= 25>>
+				<<run repX(12500, "event")>>
+			<</replace>>
+		<</link>>
+	<</if>>
 </span>
diff --git a/src/uncategorized/saGetMilked.tw b/src/uncategorized/saGetMilked.tw
index 59d252f342e37dfd355e6fbe816cb35b9828b704..6afaeef6f81984bd4a087e8ffe72dbf3ba19af1a 100644
--- a/src/uncategorized/saGetMilked.tw
+++ b/src/uncategorized/saGetMilked.tw
@@ -116,10 +116,10 @@ gets milked this week.
 	<</if>>
 
 	<<if $slaves[$i].lactationAdaptation < 100>>
-	<<if ($slaves[$i].assignment == "get milked") || ($slaves[$i].assignment == "work in the dairy")>>
-		Living as a cow helps $his body and mind adapt to producing milk.
-		<<set $slaves[$i].lactationAdaptation += 1>>
-	<</if>>
+		<<if ($slaves[$i].assignment == "get milked") || ($slaves[$i].assignment == "work in the dairy")>>
+			Living as a cow helps $his body and mind adapt to producing milk.
+			<<set $slaves[$i].lactationAdaptation += 1>>
+		<</if>>
 	<</if>>
 
 	<<if ($slaves[$i].preg > $slaves[$i].pregData.normalBirth/8) && ($slaves[$i].pregKnown == 1)>>
@@ -139,39 +139,39 @@ gets milked this week.
 	<</if>>
 
 	<<if $slaves[$i].lactationAdaptation > 10>>
-	<<if $slaves[$i].lactationAdaptation > 50>>
-		$His body has adapted heavily to milk production, making $him extremely productive.
-	<<else>>
-		$His body has gotten used to producing milk, making $him very productive.
-	<</if>>
+		<<if $slaves[$i].lactationAdaptation > 50>>
+			$His body has adapted heavily to milk production, making $him extremely productive.
+		<<else>>
+			$His body has gotten used to producing milk, making $him very productive.
+		<</if>>
 	<</if>>
 
 	<<if $dairySlimMaintainUpgrade == 1>>
-	<<if $dairySlimMaintain == 1>>
-		<<if ($slaves[$i].boobs <= 700)>>
-			<<if ($arcologies[0].FSSlimnessEnthusiast > 80)>>
-				Your arcology's milkers are optimized to extract maximum output from small breasted slaves, which substantially increases $his otherwise modest productivity.
-				<<set $milk *= 1.5>>
-			<<elseif ($arcologies[0].FSSlimnessEnthusiast > 20)>>
-				Your arcology's milkers have been carefully modified to more readily accommodate slaves with tiny breasts, which slightly mitigates $his less than ideal physiology for milk production.
-				<<set $milk *= 1.1>>
+		<<if $dairySlimMaintain == 1>>
+			<<if ($slaves[$i].boobs <= 700)>>
+				<<if ($arcologies[0].FSSlimnessEnthusiast > 80)>>
+					Your arcology's milkers are optimized to extract maximum output from small breasted slaves, which substantially increases $his otherwise modest productivity.
+					<<set $milk *= 1.5>>
+				<<elseif ($arcologies[0].FSSlimnessEnthusiast > 20)>>
+					Your arcology's milkers have been carefully modified to more readily accommodate slaves with tiny breasts, which slightly mitigates $his less than ideal physiology for milk production.
+					<<set $milk *= 1.1>>
+				<</if>>
 			<</if>>
 		<</if>>
 	<</if>>
-	<</if>>
 
 	/* This is going to be where the dairy overhaul takes place (milk half) */
 	<<if ($slaves[$i].assignment == "work in the dairy")>>
 		<<if ($dairyFeedersUpgrade == 1)>>
-		<<if ($dairyFeedersSetting > 0)>>
-			<<set $milk += $milk*(0.1*($dairyFeedersUpgrade+$dairyRestraintsSetting+((50-$slaves[$i].physicalAge)/20)))>>
-			<<if ($slaves[$i].chem > 360)>>
-				<<set $milk *= 0.6>>
-			<<elseif ($slaves[$i].chem > 100)>>
-				<<set $milk *= ((600-$slaves[$i].chem)/600)>>
+			<<if ($dairyFeedersSetting > 0)>>
+				<<set $milk += $milk*(0.1*($dairyFeedersUpgrade+$dairyRestraintsSetting+((50-$slaves[$i].physicalAge)/20)))>>
+				<<if ($slaves[$i].chem > 360)>>
+					<<set $milk *= 0.6>>
+				<<elseif ($slaves[$i].chem > 100)>>
+					<<set $milk *= ((600-$slaves[$i].chem)/600)>>
+				<</if>>
 			<</if>>
 		<</if>>
-		<</if>>
 	<<elseif ($slaves[$i].assignment == "be confined in the arcade")>>
 		<<set $milk *= 0.5>>
 	<</if>>
@@ -209,11 +209,11 @@ gets milked this week.
 	<<set _incomeStats.income += $milkSale>>
 
 	<<if $slaves[$i].fetishKnown>>
-	<<if ($slaves[$i].fetish == "boobs") || ($slaves[$i].energy > 95)>>
-		Getting constantly milked is as good as sex, as far as $he's concerned. @@.hotpink;$He is happy@@ to have $his breasts receive so much attention.
-		<<set $slaves[$i].devotion += 1>>
-		<<if $slaves[$i].need>><<set $slaves[$i].need = 0>><</if>>
-	<</if>>
+		<<if ($slaves[$i].fetish == "boobs") || ($slaves[$i].energy > 95)>>
+			Getting constantly milked is as good as sex, as far as $he's concerned. @@.hotpink;$He is happy@@ to have $his breasts receive so much attention.
+			<<set $slaves[$i].devotion += 1>>
+			<<if $slaves[$i].need>><<set $slaves[$i].need = 0>><</if>>
+		<</if>>
 	<</if>>
 
 	<<if $slaves[$i].career == "a dairy cow" && $slaves[$i].fetish != "mindbroken" && $slaves[$i].fuckdoll == 0>>
@@ -548,23 +548,23 @@ gets milked this week.
 		<<elseif (_vignette.type == "devotion")>>
 			<<if (_vignette.effect > 0)>>
 				<<if $slaves[$i].devotion > 50>>
-			@@.hotpink;increasing $his devotion to you.@@
+					@@.hotpink;increasing $his devotion to you.@@
 				<<elseif $slaves[$i].devotion >= -20>>
-			@@.hotpink;increasing $his acceptance of you.@@
-			<<elseif $slaves[$i].devotion > -10>>
-			@@.hotpink;reducing $his dislike of you.@@
+					@@.hotpink;increasing $his acceptance of you.@@
+				<<elseif $slaves[$i].devotion > -10>>
+					@@.hotpink;reducing $his dislike of you.@@
 				<<else>>
-			@@.hotpink;reducing $his hatred of you.@@
+					@@.hotpink;reducing $his hatred of you.@@
 				<</if>>
 			<<elseif (_vignette.effect < 0)>>
 				<<if $slaves[$i].devotion > 50>>
-			@@.mediumorchid;reducing $his devotion to you.@@
+					@@.mediumorchid;reducing $his devotion to you.@@
 				<<elseif $slaves[$i].devotion >= -20>>
-			@@.mediumorchid;reducing $his acceptance of you.@@
-			<<elseif $slaves[$i].devotion > -10>>
-			@@.mediumorchid;increasing $his dislike of you.@@
+					@@.mediumorchid;reducing $his acceptance of you.@@
+				<<elseif $slaves[$i].devotion > -10>>
+					@@.mediumorchid;increasing $his dislike of you.@@
 				<<else>>
-			@@.mediumorchid;increasing $his hatred of you.@@
+					@@.mediumorchid;increasing $his hatred of you.@@
 				<</if>>
 			<<else>>
 				an incident without lasting effect.
@@ -573,19 +573,19 @@ gets milked this week.
 		<<elseif (_vignette.type == "trust")>>
 			<<if (_vignette.effect > 0)>>
 				<<if $slaves[$i].trust > 20>>
-			@@.mediumaquamarine;increasing $his trust in you.@@
-			<<elseif $slaves[$i].trust > -10>>
-			@@.mediumaquamarine;reducing $his fear of you.@@
+					@@.mediumaquamarine;increasing $his trust in you.@@
+				<<elseif $slaves[$i].trust > -10>>
+					@@.mediumaquamarine;reducing $his fear of you.@@
 				<<else>>
-			@@.mediumaquamarine;reducing $his terror of you.@@
+					@@.mediumaquamarine;reducing $his terror of you.@@
 				<</if>>
 			<<elseif (_vignette.effect < 0)>>
 				<<if $slaves[$i].trust > 20>>
-			@@.gold;reducing $his trust in you.@@
+					@@.gold;reducing $his trust in you.@@
 				<<elseif $slaves[$i].trust >= -20>>
-			@@.gold;increasing $his fear of you.@@
+					@@.gold;increasing $his fear of you.@@
 				<<else>>
-			@@.gold;increasing $his terror of you.@@
+					@@.gold;increasing $his terror of you.@@
 				<</if>>
 			<<else>>
 				an incident without lasting effect.
@@ -593,9 +593,9 @@ gets milked this week.
 			<<set $slaves[$i].trust += 1*_vignette.effect>>
 		<<elseif (_vignette.type == "health")>>
 			<<if (_vignette.effect > 0)>>
-			@@.green;improving $his health.@@
+				@@.green;improving $his health.@@
 			<<elseif (_vignette.effect < 0)>>
-			@@.red;affecting $his health.@@
+				@@.red;affecting $his health.@@
 			<<else>>
 				an incident without lasting effect.
 			<</if>>
diff --git a/src/uncategorized/saLiveWithHG.tw b/src/uncategorized/saLiveWithHG.tw
index 2122ca1099fbd7e33e565d85398ed58ac83594bd..3ca0fd491f896d4d3e9088a4a4c119eab8f3784d 100644
--- a/src/uncategorized/saLiveWithHG.tw
+++ b/src/uncategorized/saLiveWithHG.tw
@@ -95,9 +95,12 @@
 				father.
 			<<else>>
 				<<switch areSisters($HeadGirl, $slaves[$i])>>
-				<<case 1>>twin.
-				<<case 2>>sister.
-				<<case 3>>half-sister.
+				<<case 1>>
+					twin.
+				<<case 2>>
+					sister.
+				<<case 3>>
+					half-sister.
 				<</switch>>
 			<</if>>
 			$slaves[$i].slaveName
@@ -127,9 +130,12 @@
 				father.
 			<<else>>
 				<<switch areSisters($HeadGirl, $slaves[$i])>>
-				<<case 1>>twin.
-				<<case 2>>sister.
-				<<case 3>>half-sister.
+				<<case 1>>
+					twin.
+				<<case 2>>
+					sister.
+				<<case 3>>
+					half-sister.
 				<</switch>>
 			<</if>>
 		<</if>>
@@ -328,7 +334,7 @@
 		$HeadGirl.slaveName wastes no time in chasing the currents trend and hurries to @@.lime;impregnate@@ $slaves[$i].slaveName.
 		<<= knockMeUp($slaves[$i], 100, 2, $HeadGirl.ID, 1)>>
 	<<elseif $HeadGirl.fetish != "pregnancy" && $arcologies[0].FSRepopulationFocusPregPolicy == 0 && $slaves[$i].pregKnown == 1 && $slaves[$i].preg < 30 && $arcologies[0].FSRepopulationFocus == "unset" && $HGSuiteDrugs == 1>>
-		$HeadGirl.slaveName promptly aborts the child growing in $slaves[$i].slaveName since _he2 prefers _his2 girls not harboring someone else's child or loaded down with _his2 own unwanted spawn.
+		$HeadGirl.slaveName promptly aborts the child growing in $slaves[$i].slaveName since _he2 prefers _his2 <<= $girl>>s not harboring someone else's child or loaded down with _his2 own unwanted spawn.
 		<<set $slaves[$i].preg = 0, WombFlush($slaves[$i]), $slaves[$i].pregType = 0, $slaves[$i].pregSource = 0, $slaves[$i].pregWeek = 0, $slaves[$i].pregKnown = 0>>
 		<<run SetBellySize($slaves[$i])>>
 	<</if>>
@@ -691,7 +697,7 @@
 		$HeadGirl.slaveName keeps $slaves[$i].slaveName wearing nothing but slutty bangles, since _he2 likes dressing $him up but wants that butt bare.
 		<<set $slaves[$i].clothes = "slutty jewelry">>
 	<<elseif ($HeadGirl.fetish == "pregnancy") && ($slaves[$i].belly < 1500) && ($slaves[$i].weight <= 130) && isItemAccessible("a small empathy belly")>>
-		$HeadGirl.slaveName keeps $slaves[$i].slaveName wearing an empathy belly, since _he2 likes _his2 girls with a bun in the oven.
+		$HeadGirl.slaveName keeps $slaves[$i].slaveName wearing an empathy belly, since _he2 likes _his2 <<= $girl>>s with a bun in the oven.
 		<<set $slaves[$i].bellyAccessory = "a large empathy belly">>
 	<<elseif ($HeadGirl.fetish == "pregnancy") && ($slaves[$i].preg > 0) && ($slaves[$i].pregSource == $HeadGirl.ID) >>
 		$HeadGirl.slaveName keeps the pregnant $slaves[$i].slaveName dressed as a slutty maid, since _he2 wants $him to look motherly yet fuckable while _he2 fantasizes about fucking $him pregnant again.
@@ -772,7 +778,7 @@
 <</if>>
 
 <<if ($slaves[$i].weight < 100 && $arcologies[0].FSHedonisticDecadence >= 20) || ($slaves[$i].weight < -10)>>
-	$HeadGirl.slaveName thinks $slaves[$i].slaveName could use a little extra weight <<if $arcologies[0].FSHedonisticDecadence >= 20>>since plump girls are all the rage in your arcology <</if>>
+	$HeadGirl.slaveName thinks $slaves[$i].slaveName could use a little extra weight <<if $arcologies[0].FSHedonisticDecadence >= 20>>since plump <<= $girl>>s are all the rage in your arcology <</if>>
 	<<if $slaves[$i].diet != "fattening">>
 		and assigns $him a diet to fatten $him up.
 		<<set $slaves[$i].diet = "fattening">>
diff --git a/src/uncategorized/saRecruitGirls.tw b/src/uncategorized/saRecruitGirls.tw
index 31f0c5f89a0e36798588619156a064c8c7ffafd9..18ca6fd48ccc8e11edd9252d66bc2a685d7cecbc 100644
--- a/src/uncategorized/saRecruitGirls.tw
+++ b/src/uncategorized/saRecruitGirls.tw
@@ -398,7 +398,7 @@
 				although $he might have done better still if $he were prettier.
 			<</if>>
 		<<else>>
-		$He uses what conversation skill $he has to keep them interested in enslavement,
+			$He uses what conversation skill $he has to keep them interested in enslavement,
 			<<if $slaves[$i].face > 40>>
 				and the reminder that they could share a home with such a beauty doesn't hurt.
 			<<else>>
diff --git a/src/uncategorized/saRelationships.tw b/src/uncategorized/saRelationships.tw
index 4845edbd5f46778f1d298c8db1bb3fe03fab75ee..1b9aaa89f00a1a3f571b42e2637327c581187813 100644
--- a/src/uncategorized/saRelationships.tw
+++ b/src/uncategorized/saRelationships.tw
@@ -1457,7 +1457,7 @@
 				_SlaveI.slaveName's <<if _SlaveI.relationship >= 5>>wife<<else>>lover<</if>> is older, more experienced, and
 				<<if (_SlaveJ.skill.oral > _SlaveI.skill.oral)>>
 					better at blowjobs than $he is. They are such good slaves that the senior _girl2 serves as a mentor to the junior, improving $his oral skills.
-					<<= SkillIncrease.Oral(_SlaveI, 5)>> 
+					<<= SkillIncrease.Oral(_SlaveI, 5)>>
 				<<elseif (_SlaveJ.skill.anal > _SlaveI.skill.anal) && (_SlaveI.anus > 0)>>
 					better at taking a buttfuck than $he is, and they are such good slaves that the senior _girl2 serves as a mentor to the junior, improving $his anal skills.
 					<<= SkillIncrease.Anal(_SlaveI, 5)>>
diff --git a/src/uncategorized/salon.tw b/src/uncategorized/salon.tw
index c036f531ea2b3a73fac9cce99a5b3be3b55ddd2d..1d34d76ee29588c267cce839dffbb3e900c8a5d2 100644
--- a/src/uncategorized/salon.tw
+++ b/src/uncategorized/salon.tw
@@ -253,12 +253,6 @@
 	<<else>>
 		and is wearing $activeSlave.earwear. [[Remove|Salon][$activeSlave.earwear = "none"]]
 	<</if>>
-	//Muffling options are annoying and impede performance on some assignments.//
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him: [[Hearing aids|Salon][$activeSlave.earwear = "hearing aids",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-	| [[Muffling ear plugs|Salon][$activeSlave.earwear = "muffling ear plugs",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-	| [[Deafening ear plugs|Salon][$activeSlave.earwear = "deafening ear plugs",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-	<br>
 <<elseif $activeSlave.hears < -1>>
 	$He is deaf, and
 	<<if $activeSlave.earwear == "none">>
@@ -266,11 +260,6 @@
 	<<else>>
 		is wearing $activeSlave.earwear. [[Remove|Salon][$activeSlave.earwear = "none"]]
 	<</if>>
-	//Muffling options are annoying and impede performance on some assignments.//
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him: [[Hearing aids|Salon][$activeSlave.earwear = "hearing aids",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-	| [[Muffling ear plugs|Salon][$activeSlave.earwear = "muffling ear plugs",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-	| [[Deafening ear plugs|Salon][$activeSlave.earwear = "deafening ear plugs",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
 <<elseif $activeSlave.hears > -1>>
 	$His hearing is normal, and $he
 	<<if $activeSlave.earwear == "none">>
@@ -278,11 +267,6 @@
 	<<else>>
 		is wearing $activeSlave.earwear. [[Remove|Salon][$activeSlave.earwear = "none"]]
 	<</if>>
-	//Muffling options are annoying and impede performance on some assignments.//
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him: [[Hearing aids|Salon][$activeSlave.earwear = "hearing aids",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-	| [[Muffling ear plugs|Salon][$activeSlave.earwear = "muffling ear plugs",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-	| [[Deafening ear plugs|Salon][$activeSlave.earwear = "deafening ear plugs",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
 <<else>>
 	$He is hearing impaired, and
 	<<if $activeSlave.earwear == "none">>
@@ -290,20 +274,19 @@
 	<<else>>
 		is wearing $activeSlave.earwear. [[Remove|Salon][$activeSlave.earwear = "none"]]
 	<</if>>
-	//Hearing impairment will impede performance on some assignments.//
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	Give $him: [[Hearing aids|Salon][$activeSlave.earwear = "hearing aids",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-	| [[Muffling ear plugs|Salon][$activeSlave.earwear = "muffling ear plugs",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-	| [[Deafening ear plugs|Salon][$activeSlave.earwear = "deafening ear plugs",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 <</if>>
+//Muffling options are annoying and impede performance on some assignments.//
+<br>&nbsp;&nbsp;&nbsp;&nbsp;
+Give $him: [[Hearing aids|Salon][$activeSlave.earwear = "hearing aids",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
+| [[Muffling ear plugs|Salon][$activeSlave.earwear = "muffling ear plugs",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
+| [[Deafening ear plugs|Salon][$activeSlave.earwear = "deafening ear plugs",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
 
 /*End ear check */
 
 <<if $activeSlave.horn != "none">><br><br>
-$His $activeSlave.horn are $activeSlave.hornColor
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
-Set horn color:
+	$His $activeSlave.horn are $activeSlave.hornColor
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	Set horn color:
 		[[Black|Salon][$activeSlave.hornColor = "black",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
 		| [[Blazing Red|Salon][$activeSlave.hornColor = "blazing red",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
 		| [[Blue-Violet|Salon][$activeSlave.hornColor = "blue-violet",cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
@@ -606,20 +589,20 @@ Apply makeup:
 <<nailsDescription>>
 
 <<if $activeSlave.amp != 1>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;
-Treat nails:
-[[Clip|Salon][$activeSlave.nails = 0,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-| [[Extend|Salon][$activeSlave.nails = 1,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-| [[Sharp, claw-like|Salon][$activeSlave.nails = 3,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-| [[Bright, glittery|Salon][$activeSlave.nails = 4,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-| [[Streetwalker-style|Salon][$activeSlave.nails = 5,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-| [[Color-coordinate with hair|Salon][$activeSlave.nails = 2,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-[[Neon|Salon][$activeSlave.nails = 6,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-| [[Neon, color-coordinate with hair|Salon][$activeSlave.nails = 7,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-[[Metallic|Salon][$activeSlave.nails = 8,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
-| [[Metallic, color-coordinate with hair|Salon][$activeSlave.nails = 9,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;
+	Treat nails:
+	[[Clip|Salon][$activeSlave.nails = 0,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
+	| [[Extend|Salon][$activeSlave.nails = 1,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
+	| [[Sharp, claw-like|Salon][$activeSlave.nails = 3,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
+	| [[Bright, glittery|Salon][$activeSlave.nails = 4,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
+	| [[Streetwalker-style|Salon][$activeSlave.nails = 5,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
+	| [[Color-coordinate with hair|Salon][$activeSlave.nails = 2,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+	[[Neon|Salon][$activeSlave.nails = 6,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
+	| [[Neon, color-coordinate with hair|Salon][$activeSlave.nails = 7,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+	[[Metallic|Salon][$activeSlave.nails = 8,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
+	| [[Metallic, color-coordinate with hair|Salon][$activeSlave.nails = 9,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]]
 <</if>>
 
 /* SKIN */
diff --git a/src/uncategorized/seExpiration.tw b/src/uncategorized/seExpiration.tw
index 08ac738a1079f37ad0acdd34cc8620b1a40e459d..7c19049177e3cec973cb4a0ddbb14ffc3312206d 100644
--- a/src/uncategorized/seExpiration.tw
+++ b/src/uncategorized/seExpiration.tw
@@ -181,6 +181,6 @@ at the moment of $his scheduled emancipation, $he seems willing to consider a sh
 
 <<else>>
 
-$He makes no effort at all to conceal $his joy at being a free woman again. It seems very unlikely that $he'll stay in the arcology; $he'll probably take what remains of $his indenture payment, held in escrow for this day, and be off to wherever it is that $he came from in the first place.
+$He makes no effort at all to conceal $his joy at being a free $woman again. It seems very unlikely that $he'll stay in the arcology; $he'll probably take what remains of $his indenture payment, held in escrow for this day, and be off to wherever it is that $he came from in the first place.
 
 <</if>>
diff --git a/src/uncategorized/seLethalPit.tw b/src/uncategorized/seLethalPit.tw
index 446b792d70a035f6f243ce25bfdf62fd4dd55dfd..4a24d2265f78304bf6ebfbfd85cd3d65a78e7374 100644
--- a/src/uncategorized/seLethalPit.tw
+++ b/src/uncategorized/seLethalPit.tw
@@ -446,7 +446,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and
 			<<run repX(500, "pit", _winner)>>
 		<</if>>
 	<<elseif (_winnerDeadliness > _loserDeadliness+1) && (_winner.amp == -5)>>
-		Upon your word the two combatants approach each other. _winner.slaveName does not carry a sword, raising only $his hands, but these are terrifying, modern weapons themselves. _loser.slaveName tries a probing sweep, but _winner.slaveName catches _his2 blade in one hand, slides it down to the hilt with a shriek of metal on metal, and snaps the blade cleanly. _loser.slaveName watches this, dumbstruck, before regaining composure and taking a fighting stance again. _winner.slaveName manages to touch $his opponent's bare skin with $his own cybernetics, incapacitating _loser.slaveName with an electric shock. While _loser.slaveName is temporarily stunned, _winner.slaveName strikes _loser.slaveName on the head with deadly force, crushing $his opponent's skull. Though the fight was short,
+		Upon your word the two combatants approach each other. _winner.slaveName does not carry a sword, raising only $his hands, but these are terrifying, modern weapons themselves. _loser.slaveName tries a probing sweep, but _winner.slaveName catches _his2 blade in one hand, slides it down to the hilt with a shriek of metal on metal, and snaps the blade cleanly. _loser.slaveName <<if canSee(_loser)>>watches this<<else>>freezes in place<</if>>, dumbstruck, before regaining composure and taking a fighting stance again. _winner.slaveName manages to touch $his opponent's bare skin with $his own cybernetics, incapacitating _loser.slaveName with an electric shock. While _loser.slaveName is temporarily stunned, _winner.slaveName strikes _loser.slaveName on the head with deadly force, crushing $his opponent's skull. Though the fight was short,
 		<<if $pitAudience == "paid">>
 			the audience is quite impressed by the display, and your @@.yellowgreen;cut of the betting@@ is quite good.
 			<<run cashX(10000, "pit", _winner)>>
diff --git a/src/uncategorized/seNonlethalPit.tw b/src/uncategorized/seNonlethalPit.tw
index f577fec4dd2cb9b84ca20c7af537e7f202463e1f..0c4b6464854e5ab7e5419d6da3dbe9aee8953282 100644
--- a/src/uncategorized/seNonlethalPit.tw
+++ b/src/uncategorized/seNonlethalPit.tw
@@ -214,9 +214,9 @@
 	<</if>>
 
 	<<if _fighterOne.devotion <= 20>>
-	<<if _fighterOne.trust < -20>>
-		$He is unwilling to fight, but $he knows the punishment for refusing to do so will be even worse.
-	<</if>>
+		<<if _fighterOne.trust < -20>>
+			$He is unwilling to fight, but $he knows the punishment for refusing to do so will be even worse.
+		<</if>>
 	<</if>>
 
 	<br><br>
@@ -354,9 +354,9 @@
 	<</if>>
 
 	<<if _fighterTwo.devotion <= 20>>
-	<<if _fighterTwo.trust < -20>>
-		_He2 is unwilling to fight, but _he2 knows the punishment for refusing to do so will be even worse.
-	<</if>>
+		<<if _fighterTwo.trust < -20>>
+			_He2 is unwilling to fight, but _he2 knows the punishment for refusing to do so will be even worse.
+		<</if>>
 	<</if>>
 
 	<br><br>
@@ -1062,7 +1062,7 @@
 	<<if $pitAudience == "none">>You are alone above $pitName, left to watch the animal use your slave in private.<<elseif $pitAudience == "free">>Your guests line the rim of $pitName, joking and laughing.<<else>>The attendees line the rim of $pitName, making bets on how long $he'll last.<</if>>
 
 	<<if $arcologies[0].FSRomanRevivalist != "unset" || $arcologies[0].FSDegradationist != "unset">>
-		They @@.green;strongly approve@@ of you using this method of punishment; this advances ideas from antiquity about what public events should be. /*not sure what the message that usually displays for Degradationism is - that might have to be changed*/
+		They @@.green;strongly approve@@ of you using this method of punishment; this advances ideas from antiquity about what public events should be. /*not sure what the message that usually displays for Degradationism is — that might have to be changed*/
 		<<if $arcologies[0].FSRomanRevivalist != "unset">>
 			<<run repX(10*$FSSingleSlaveRep*($arcologies[0].FSRomanRevivalist/$FSLockinLevel), "pit", $activeSlave)>>
 			<<set $arcologies[0].FSRomanRevivalist += 0.2*$FSSingleSlaveRep>>
@@ -1079,7 +1079,7 @@
 			$activeSlave.slaveName is quick, though, and $he manages to avoid the animal for the full five minutes, and drops to $his knees in relief and exhaustion once the bell sounds and the _animal.species is leashed and pulled back into its cage.
 			<<if $pitAudience == "paid">>
 				The audience is fairly impressed by this impressive display of sportsmanship, and so is your @@.yellowgreen;cut of the betting.@@
-			<<run cashX(2500, "pit", $activeSlave)>>
+				<<run cashX(2500, "pit", $activeSlave)>>
 			<<elseif $pitAudience == "free">>
 				The audience is @@.green;fairly impressed@@ by this impressive display of sportsmanship.
 				<<run repX(100, "pit", $activeSlave)>>
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 3141c161db508e0206eb31bfaa0fd46307fabc24..3cfdcee2addac3c1a49a4c712c33322d5c09c1a9 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -1215,7 +1215,7 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1
 		<<elseif ($activeSlave.preg > $activeSlave.pregData.minLiveBirth)>>
 			| <<link "Give $him a cesarean section" "csec">><</link>>
 		<<elseif ($activeSlave.preg > 0) && $activeSlave.breedingMark == 1 && $propOutcome == 1 && $activeSlave.pregSource == -1>>
-			//You are forbidden from aborting an elite child//
+			//You are forbidden from aborting an Elite child//
 		<<elseif ($activeSlave.preg > 0)>>
 			<<link "Abort $his pregnancy" "Abort">><</link>>
 		<</if>>
diff --git a/src/uncategorized/slaveSold.tw b/src/uncategorized/slaveSold.tw
index 86bbabce56808791c873e2175aaf71cadf5f7dfe..e100c977c54cbbd035e93f6c2c70f162db1d4964 100644
--- a/src/uncategorized/slaveSold.tw
+++ b/src/uncategorized/slaveSold.tw
@@ -482,7 +482,7 @@
 		<</if>>
 	<</for>>
 	<<if (_slaveImpact == 1)>>
-		Most of your slaves could scarcely care less, but your most intelligent girls are @@.mediumorchid;privately skeptical of $his fate;@@ $he's become one more cookie cutter bimbo in a place that uses and discards such sluts.
+		Most of your chattel could scarcely care less, but your most intelligent slaves are @@.mediumorchid;privately skeptical of $his fate;@@ $he's become one more cookie cutter bimbo in a place that uses and discards such sluts.
 	<</if>>
 
 <<case "paternalist arcology">>
@@ -523,7 +523,7 @@
 		<</if>>
 	<</for>>
 	<<if (_slaveImpact == 1)>>
-		Most of your slaves could scarcely care less, but your most intelligent girls are @@.mediumorchid;privately dubious of your tacit support@@ for an arcology owner whose tastes they wonder about.
+		Most of your chattel could scarcely care less, but your most intelligent slaves are @@.mediumorchid;privately dubious of your tacit support@@ for an arcology owner whose tastes they wonder about.
 	<</if>>
 
 <<case "asset expansionist arcology">>
@@ -966,7 +966,7 @@
 	<</for>>
 
 <<case "harvester">>
-	Though $activeSlave.slaveName's fate as a source of organs for transplantation is not announced, rumors of what happens to girls who @@.gold;fail to be valuable to you@@ pass among your slaves.
+	Though $activeSlave.slaveName's fate as a source of organs for transplantation is not announced, rumors of what happens to those who @@.gold;fail to be valuable to you@@ pass among your slaves.
 	<<run clearSummaryCache()>>
 	<<for _ss = 0; _ss < $slaves.length; _ss++>>
 		<<set $slaves[_ss].trust -= 2>>
@@ -991,7 +991,7 @@
 	<</for>>
 
 <<case "D trap lover">>
-	$activeSlave.slaveName becomes a frequent sight around the arcology, accompanying $his new master. $He's clearly happy, and is frequently seen to offer $his butt to him with a smile. Your girls with dicks who've accepted their lot in life find this @@.mediumaquamarine;encouraging.@@
+	$activeSlave.slaveName becomes a frequent sight around the arcology, accompanying $his new master. $He's clearly happy, and is frequently seen to offer $his butt to him with a smile. Your slaves with dicks who've accepted their lot in life find this @@.mediumaquamarine;encouraging.@@
 	<<for _ss = 0; _ss < $slaves.length; _ss++>>
 		<<if ($slaves[_ss].dick > 0)>>
 			<<if ($slaves[_ss].devotion > 20)>>
@@ -1013,7 +1013,7 @@
 	<</for>>
 
 <<case "D milky herm">>
-	$activeSlave.slaveName's buyer arrives and seems pleased with $his lovely feminine appearance; he verifies $his lactation and $his ability to achieve erection despite $his lack of visible balls. Your other feminine girls with dicks @@.mediumaquamarine;trust@@ they'll go to owners that will value them, should they be sold.
+	$activeSlave.slaveName's buyer arrives and seems pleased with $his lovely feminine appearance; he verifies $his lactation and $his ability to achieve erection despite $his lack of visible balls. Your other feminine slaves with dicks @@.mediumaquamarine;trust@@ they'll go to owners that will value them, should they be sold.
 	<<for _ss = 0; _ss < $slaves.length; _ss++>>
 		<<if ($slaves[_ss].dick > 0)>>
 			<<if ($slaves[_ss].boobs > 400)>>
@@ -1038,7 +1038,7 @@
 	$activeSlave.slaveName is rarely seen after $his buyer takes charge of $him, since he prefers to keep his beloved at home. Though $he seems to be well treated, arcology society finds him repellent enough that your other slaves do not envy $him.
 
 <<case "fuckdoll">>
-	Though $activeSlave.slaveName's fate as a living fucktoy is not obvious, since most of $his body will forever after be encased in thick latex, rumors of what happens to girls who @@.gold;fail to be valuable to you@@ pass among your slaves.
+	Though $activeSlave.slaveName's fate as a living fucktoy is not obvious, since most of $his body will forever after be encased in thick latex, rumors of what happens to those who @@.gold;fail to be valuable to you@@ pass among your slaves.
 	<<run clearSummaryCache()>>
 	<<for _ss = 0; _ss < $slaves.length; _ss++>>
 		<<set $slaves[_ss].trust -= 2>>
diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw
index 60bb37a600c85ef3a103a178988e03d7d0289510..77d2a601bdf9c67c0bfc9db509ee29b65f705dd7 100644
--- a/src/uncategorized/surgeryDegradation.tw
+++ b/src/uncategorized/surgeryDegradation.tw
@@ -1834,7 +1834,7 @@ As the remote surgery's long recovery cycle completes,
 
 <<case "amp">>
 	<<if $activeSlave.fetish == "mindbroken">>
-		Of course, $he could not walk out of the surgery; you carried $him. $He squirms the entire time trying to move the arms and legs $he now lacks. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
+		Of course, $he could not walk out of the surgery; you carried $him. $He squirms the entire time, trying to move the arms and legs $he now lacks. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 	<<elseif ($activeSlave.devotion > 50)>>
 		Of course, $he could not walk out of the surgery; you carried $him. $He knows what a slave's life is, but $he did not really expect that it would ever come to this for $him. After a long, silent <<if canSee($activeSlave)>>stare at<<else>>consideration of<</if>> $his limbless torso, $he squares $his shoulders and visibly resolves to carry on being a good slave as best $he can. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@
 	<<elseif ($activeSlave.devotion > 20)>>
diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw
index 451f5fd8497f30fbdf3011277e49f2763c37a9c2..a16d6eac94fae18a8984b61523138b7c1f182b97 100644
--- a/src/utility/miscWidgets.tw
+++ b/src/utility/miscWidgets.tw
@@ -306,8 +306,8 @@
 			<<run SetBellySize($activeSlave)>>
 		<</if>>
 	<<elseif $activeSlave.broodmotherOnHold == 1>>
-	//$His pregnancy implant is turned off<<if $activeSlave.broodmotherCountDown > 0>>; $he is expected to be completely emptied of $his remaining brood in $activeSlave.broodmotherCountDown week<<if $activeSlave.broodmotherCountDown > 1>>s<</if>><<else>>.<</if>>//
-	[[Turn on implant|Slave Interact][$activeSlave.broodmotherOnHold = 0, $activeSlave.broodmotherCountDown = 0]]
+		//$His pregnancy implant is turned off<<if $activeSlave.broodmotherCountDown > 0>>; $he is expected to be completely emptied of $his remaining brood in $activeSlave.broodmotherCountDown week<<if $activeSlave.broodmotherCountDown > 1>>s<</if>><<else>>.<</if>>//
+		[[Turn on implant|Slave Interact][$activeSlave.broodmotherOnHold = 0, $activeSlave.broodmotherCountDown = 0]]
 	<<elseif ($activeSlave.preg >= -1)>>
 		Contraception: <span id="fertility"><strong><<if $activeSlave.preg == -1>><<print "using contraceptives">><<elseif $activeSlave.pregWeek < 0>><<print "postpartum">><<elseif $activeSlave.preg == 0>><<print "fertile">><<elseif $activeSlave.preg < 4>><<print "may be pregnant">><<else>><<print $activeSlave.preg>><<print " weeks pregnant">><</if>></strong></span>.
 		<<if ($activeSlave.preg == 0)>>
@@ -329,7 +329,7 @@
 		<<elseif ($activeSlave.preg > $activeSlave.pregData.minLiveBirth)>>
 			[["Give " + $him + " a cesarean section"|csec]]
 		<<elseif ($activeSlave.preg > 0) && $activeSlave.breedingMark == 1 && $propOutcome == 1 && $activeSlave.pregSource == -1>>
-			//You are forbidden from aborting an elite child//
+			//You are forbidden from aborting an Elite child//
 		<<elseif ($activeSlave.preg > 0)>>
 			[["Abort " + $his + " pregnancy"|Abort]]
 		<</if>>
@@ -468,16 +468,16 @@
 			<<set $agentBonus += 1>>
 		<</if>>
 		<<if $leaders[_j].fetishStrength > 95>>
-		<<if ($leaders[_j].fetish == "dom") || ($leaders[_j].fetish == "sadist")>>
-			<<set $agentBonus += 1>>
-		<<elseif ($leaders[_j].fetish == "submissive") || ($leaders[_j].fetish == "masochist")>>
-			<<set $agentBonus -= 1>>
-		<</if>>
+			<<if ($leaders[_j].fetish == "dom") || ($leaders[_j].fetish == "sadist")>>
+				<<set $agentBonus += 1>>
+			<<elseif ($leaders[_j].fetish == "submissive") || ($leaders[_j].fetish == "masochist")>>
+				<<set $agentBonus -= 1>>
+			<</if>>
 		<</if>>
 		<<if $leaders[_j].energy > 95>>
 			<<set $agentBonus += 1>>
 		<</if>>
-	<<break>>
+		<<break>>
 	<</if>>
 <</for>>
 <<if $agentBonus > random(0,5)>>
@@ -790,7 +790,7 @@ This experience
 */
 <<widget "EventNameLink">><span id="name"><<print "[[SlaveFullName($activeSlave)|Long Slave Description][$nextLink = passage(), $eventDescription = 1]]">></span><</widget>>
 
--/*
-- Call as <<EventNameDelink>>
--*/
--<<widget "EventNameDelink">><<replace "#name">><<= SlaveFullName($activeSlave)>><</replace>><</widget>>
+/*
+ Call as <<EventNameDelink>>
+*/
+<<widget "EventNameDelink">><<replace "#name">><<= SlaveFullName($activeSlave)>><</replace>><</widget>>