diff --git a/src/interaction/budgets/recordTemplates.js b/src/interaction/budgets/recordTemplates.js
index 09c8b1a397201aa89fc8baa4b0ca6d157a714643..63b2d3762cb68c4a5b3a6807711ff634da71da88 100644
--- a/src/interaction/budgets/recordTemplates.js
+++ b/src/interaction/budgets/recordTemplates.js
@@ -117,6 +117,7 @@ App.Data.Records.LastWeeksCash = function() {
 	this.futureSocieties = 0,
 	this.schoolBacking = 0,
 	this.policies = 0,
+	this.subsidiesAndBarriers = 0,
 	this.edicts = 0,
 
 	// Personal Finance
@@ -176,6 +177,7 @@ App.Data.Records.LastWeeksRep = function() {
 	this.capEx = 0,
 	this.futureSocieties = 0,
 	this.policies = 0,
+	this.subsidiesAndBarriers = 0,
 	this.edicts = 0,
 	this.war = 0,
 	this.food = 0,
diff --git a/src/js/economyJS.js b/src/js/economyJS.js
index 5fd936e7e05cbf0a868e9595cbbafc291beba405..1c91462aebd096ce8e73b4ea6f6ac10b1afaabbd 100644
--- a/src/js/economyJS.js
+++ b/src/js/economyJS.js
@@ -205,7 +205,8 @@ globalThis.CategoryAssociatedGroup = Object.freeze({
 		'cheating'
 		],
 	POLICIES: [
-		'policies'
+		'policies',
+		'subsidiesAndBarriers'
 		],
 	EDICTS: [
 		'edicts'
@@ -2591,14 +2592,14 @@ globalThis.supplyPoliciesReport = function(NPCclass) {
 
 	// charge supply barriers (unreported, since it's a flat amount that you were told when you enacted the policy)
 	const supplyCosts = [0, 1000, 5000, 20000, 60000];
-	cashX(forceNeg(supplyCosts[V.sexSupplyBarriers[varName]]), "policies");
+	cashX(forceNeg(supplyCosts[V.sexSupplyBarriers[varName]]), "subsidiesAndBarriers");
 
 	// report subsidy cost since it is variable
 	if (V.sexSubsidies[varName] > 0) {
 		const severity = ["none", "minor", "moderate", "substantial", "gratuitous"];
 		const subsidyCost = forceNeg(Math.trunc(V.NPCSexSupply[varName] * Math.pow(V.sexSubsidies[varName], 2) * 0.25));
 		r += `<i>&nbsp;Your ${severity[V.sexSubsidies[varName]]} subsidy costs ${cashFormatColor(subsidyCost)} this week</i>`;
-		cashX(subsidyCost, "policies");
+		cashX(subsidyCost, "subsidiesAndBarriers");
 
 		// warn about conflicting policies
 		if (V.sexSupplyBarriers[varName] > 0) {
diff --git a/src/uncategorized/costsBudget.js b/src/uncategorized/costsBudget.js
index 9680b5d488217284b55d2a68983e9a612ff9e003..a9b2a0dec1cfd12e476f5d76acb3863de46476ef 100644
--- a/src/uncategorized/costsBudget.js
+++ b/src/uncategorized/costsBudget.js
@@ -4,10 +4,8 @@ App.UI.Budget.Cost = function() {
 	table.classList.add("budget");
 	let node;
 	let subNode;
-	let subSubNode;
 	let cell;
 	let array;
-	let text;
 	let coloredRow = true;
 
 	/* Old way
@@ -738,13 +736,14 @@ App.UI.Budget.Cost = function() {
 	generateRowCategory("Events", "event");
 	generateRowCategory("Capital Expenses", "capEx");
 	generateRowCategory("Future Society Shaping", "futureSocieties");
-	generateRowCategory("School Subsidy", "schoolBacking")
+	generateRowCategory("School Subsidy", "schoolBacking");
 	generateRowCategory("Arcology conflict", "war");
 	generateRowCategory("Cheating", "cheating");
 
 	// POLICIES
 	generateRowGroup("Policies", "POLICIES");
 	generateRowCategory("Policies", "policies");
+	generateRowCategory("Subsidies and Barriers", "subsidiesAndBarriers");
 
 	// EDICTS
 	generateRowGroup("Edicts", "EDICTS");
diff --git a/src/uncategorized/manageArcology.tw b/src/uncategorized/manageArcology.tw
index 0728e40674fb62aebf5316f37da4160ae0dfc720..c0704013767dd9b901c2a30a0b3b1b06a18986f4 100644
--- a/src/uncategorized/manageArcology.tw
+++ b/src/uncategorized/manageArcology.tw
@@ -272,15 +272,15 @@
 	</div>
 	<div>
 	<<if $sexSupplyBarriers.lowerClass == 0>>
-		You can make things more difficult for those supplying sexual services in the lower class segment if you are willing to spend 1000 reputation and pay a flat upkeep of <span class="cash"><<print cashFormat(1000)>>.</span> <<if $rep > 1000>>[[Create Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 1, repX(-1000, "policies")]] <<else>><span class="note">You are not reputable enough.</span><</if>>
+		You can make things more difficult for those supplying sexual services in the lower class segment if you are willing to spend 1000 reputation and pay a flat upkeep of <span class="cash"><<print cashFormat(1000)>>.</span> <<if $rep > 1000>>[[Create Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 1, repX(-1000, "subsidiesAndBarriers")]] <<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<elseif $sexSupplyBarriers.lowerClass == 1>>
-		You have forced some unneeded bureaucracy on those selling sexual services to the lower class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(5000)>>.</span> <<if $rep > 1000>>[[Abolish Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 0, repX(-1000, "policies")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 2, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
+		You have forced some unneeded bureaucracy on those selling sexual services to the lower class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(5000)>>.</span> <<if $rep > 1000>>[[Abolish Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 0, repX(-1000, "subsidiesAndBarriers")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 2, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<elseif $sexSupplyBarriers.lowerClass == 2>>
-		You have forced considerable bureaucracy on those selling sexual services to the lower class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(20000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 1, repX(-1000, "policies")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 3, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
+		You have forced considerable bureaucracy on those selling sexual services to the lower class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(20000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 1, repX(-1000, "subsidiesAndBarriers")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 3, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<elseif $sexSupplyBarriers.lowerClass == 3>>
-		You have forced stifling bureaucracy on those selling sexual services to the lower class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(60000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 2, repX(-1000, "policies")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 4, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
+		You have forced stifling bureaucracy on those selling sexual services to the lower class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(60000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 2, repX(-1000, "subsidiesAndBarriers")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 4, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<else>>
-		You have forced suffocating bureaucracy on those selling sexual services to the lower class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 3, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
+		You have forced suffocating bureaucracy on those selling sexual services to the lower class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.lowerClass = 3, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
 	<</if>>
 	</div>
 </p>
@@ -301,15 +301,15 @@
 	</div>
 	<div>
 	<<if $sexSupplyBarriers.middleClass == 0>>
-		You can make things more difficult for those supplying sexual services in the middle class segment if you are willing to spend 1000 reputation and pay a flat upkeep of <span class="cash"><<print cashFormat(1000)>>.</span> <<if $rep > 1000>>[[Create Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 1, repX(-1000, "policies")]] <<else>><span class="note">You are not reputable enough.</span><</if>>
+		You can make things more difficult for those supplying sexual services in the middle class segment if you are willing to spend 1000 reputation and pay a flat upkeep of <span class="cash"><<print cashFormat(1000)>>.</span> <<if $rep > 1000>>[[Create Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 1, repX(-1000, "subsidiesAndBarriers")]] <<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<elseif $sexSupplyBarriers.middleClass == 1>>
-		You have forced some unneeded bureaucracy on those selling sexual services to the middle class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(5000)>>.</span> <<if $rep > 1000>>[[Abolish Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 0, repX(-1000, "policies")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 2, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
+		You have forced some unneeded bureaucracy on those selling sexual services to the middle class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(5000)>>.</span> <<if $rep > 1000>>[[Abolish Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 0, repX(-1000, "subsidiesAndBarriers")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 2, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<elseif $sexSupplyBarriers.middleClass == 2>>
-		You have forced considerable bureaucracy on those selling sexual services to the middle class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(20000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 1, repX(-1000, "policies")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 3, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
+		You have forced considerable bureaucracy on those selling sexual services to the middle class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(20000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 1, repX(-1000, "subsidiesAndBarriers")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 3, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<elseif $sexSupplyBarriers.middleClass == 3>>
-		You have forced stifling bureaucracy on those selling sexual services to the middle class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(60000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 2, repX(-1000, "policies")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 4, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
+		You have forced stifling bureaucracy on those selling sexual services to the middle class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(60000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 2, repX(-1000, "subsidiesAndBarriers")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 4, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<else>>
-		You have forced suffocating bureaucracy on those selling sexual services to the middle class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 3, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
+		You have forced suffocating bureaucracy on those selling sexual services to the middle class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.middleClass = 3, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
 	<</if>>
 	</div>
 </p>
@@ -330,15 +330,15 @@
 	</div>
 	<div>
 	<<if $sexSupplyBarriers.upperClass == 0>>
-		You can make things more difficult for those supplying sexual services in the upper class segment if you are willing to spend 1000 reputation and pay a flat upkeep of <span class="cash"><<print cashFormat(1000)>>.</span> <<if $rep > 1000>>[[Create Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 1, repX(-1000, "policies")]] <<else>><span class="note">You are not reputable enough.</span><</if>>
+		You can make things more difficult for those supplying sexual services in the upper class segment if you are willing to spend 1000 reputation and pay a flat upkeep of <span class="cash"><<print cashFormat(1000)>>.</span> <<if $rep > 1000>>[[Create Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 1, repX(-1000, "subsidiesAndBarriers")]] <<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<elseif $sexSupplyBarriers.upperClass == 1>>
-		You have forced some unneeded bureaucracy on those selling sexual services to the upper class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(5000)>>.</span> <<if $rep > 1000>>[[Abolish Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 0, repX(-1000, "policies")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 2, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough</span><</if>>
+		You have forced some unneeded bureaucracy on those selling sexual services to the upper class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(5000)>>.</span> <<if $rep > 1000>>[[Abolish Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 0, repX(-1000, "subsidiesAndBarriers")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 2, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough</span><</if>>
 	<<elseif $sexSupplyBarriers.upperClass == 2>>
-		You have forced considerable bureaucracy on those selling sexual services to the upper class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(20000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 1, repX(-1000, "policies")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 3, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
+		You have forced considerable bureaucracy on those selling sexual services to the upper class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(20000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 1, repX(-1000, "subsidiesAndBarriers")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 3, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<elseif $sexSupplyBarriers.upperClass == 3>>
-		You have forced stifling bureaucracy on those selling sexual services to the upper class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(60000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 2, repX(-1000, "policies")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 4, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
+		You have forced stifling bureaucracy on those selling sexual services to the upper class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(60000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 2, repX(-1000, "subsidiesAndBarriers")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 4, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<else>>
-		You have forced suffocating bureaucracy on those selling sexual services to the upper class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 3, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
+		You have forced suffocating bureaucracy on those selling sexual services to the upper class making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.upperClass = 3, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
 	<</if>>
 	</div>
 </p>
@@ -359,15 +359,15 @@
 	</div>
 	<div>
 	<<if $sexSupplyBarriers.topClass == 0>>
-		You can make things more difficult for those supplying sexual services in the millionaires segment if you are willing to spend 1000 reputation and pay a flat upkeep of <span class="cash"><<print cashFormat(1000)>>.</span> <<if $rep > 1000>>[[Create Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 1, repX(-1000, "policies")]] <<else>><span class="note">You are not reputable enough.</span><</if>>
+		You can make things more difficult for those supplying sexual services in the millionaires segment if you are willing to spend 1000 reputation and pay a flat upkeep of <span class="cash"><<print cashFormat(1000)>>.</span> <<if $rep > 1000>>[[Create Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 1, repX(-1000, "subsidiesAndBarriers")]] <<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<elseif $sexSupplyBarriers.topClass == 1>>
-		You have forced some unneeded bureaucracy on those selling sexual services to the millionaires making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(5000)>>.</span> <<if $rep > 1000>>[[Abolish Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 0, repX(-1000, "policies")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 2, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
+		You have forced some unneeded bureaucracy on those selling sexual services to the millionaires making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(5000)>>.</span> <<if $rep > 1000>>[[Abolish Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 0, repX(-1000, "subsidiesAndBarriers")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 2, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<elseif $sexSupplyBarriers.topClass == 2>>
-		You have forced considerable bureaucracy on those selling sexual services to the millionaires making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(20000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 1, repX(-1000, "policies")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 3, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough</span><</if>>
+		You have forced considerable bureaucracy on those selling sexual services to the millionaires making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(20000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 1, repX(-1000, "subsidiesAndBarriers")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 3, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough</span><</if>>
 	<<elseif $sexSupplyBarriers.topClass == 3>>
-		You have forced stifling bureaucracy on those selling sexual services to the millionaires making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(60000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 2, repX(-1000, "policies")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 4, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
+		You have forced stifling bureaucracy on those selling sexual services to the millionaires making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. Increasing the bureaucracy further will cost a flat upkeep of <span class="cash"><<print cashFormat(60000)>>.</span> <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 2, repX(-1000, "subsidiesAndBarriers")]] | [[Increase Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 4, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough.</span><</if>>
 	<<else>>
-		You have forced suffocating bureaucracy on those selling sexual services to the millionaires making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 3, repX(-1000, "policies")]]<<else>><span class="note">You are not reputable enough</span><</if>>
+		You have forced suffocating bureaucracy on those selling sexual services to the millionaires making things a little more difficult. If you are willing to spend 1000 reputation you can change this policy. <<if $rep > 1000>>[[Reduce Bureaucracy|Manage Arcology][$sexSupplyBarriers.topClass = 3, repX(-1000, "subsidiesAndBarriers")]]<<else>><span class="note">You are not reputable enough</span><</if>>
 	<</if>>
 	</div>
 </p>
diff --git a/src/uncategorized/repBudget.tw b/src/uncategorized/repBudget.tw
index 9e538b4092311fdef9f14dcf00f59cdfe3ccac83..0d72306fb1ca1891c356da6aa20af85426a885cd 100644
--- a/src/uncategorized/repBudget.tw
+++ b/src/uncategorized/repBudget.tw
@@ -131,6 +131,8 @@ for (var i = 0; i < State.variables.lastWeeksRepIncome.length; i++){
 
 	<<print budgetLine("policies", "[[Policies|Policies][$nextButton = \"Back to Budget\", $nextLink = \"Rep Budget\"]]")>>
 
+	<<print budgetLine("subsidiesAndBarriers", "Subsidies and Barriers")>>
+
 	<<print budgetLine("futureSocieties", "[[Society shaping|Future Society][$nextButton = \"Back to Budget\", $nextLink = \"Rep Budget\"]]")>>
 
 	<<print budgetLine("food", "Food")>>